2023-03-07 10:52:22 -07:00
|
|
|
# Copyright 2023 The HuggingFace Team. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2024-06-05 06:51:07 -06:00
|
|
|
__version__ = "0.7.0"
|
2023-03-07 10:52:22 -07:00
|
|
|
|
2024-05-15 07:40:07 -06:00
|
|
|
DEPRECATION_WARNING = (
|
|
|
|
"`text_generation` clients are deprecated and will be removed in the near future. "
|
|
|
|
"Please use the `InferenceClient` from the `huggingface_hub` package instead."
|
|
|
|
)
|
|
|
|
|
2024-07-26 08:29:09 -06:00
|
|
|
from text_generation.client import Client, AsyncClient # noqa E402
|
|
|
|
from text_generation.inference_api import ( # noqa E402
|
|
|
|
InferenceAPIClient,
|
|
|
|
InferenceAPIAsyncClient,
|
|
|
|
)
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
"Client",
|
|
|
|
"AsyncClient",
|
|
|
|
"InferenceAPIClient",
|
|
|
|
"InferenceAPIAsyncClient",
|
|
|
|
]
|