Ë
    Q^(hƒ   ã                   ó¨   — d dl Z d dlmZmZmZmZmZ ddlmZ ddl	m
Z
 ddlmZmZmZmZmZ ddlmZ  ej&                  e«      Zg d¢Z G d	„ d
«      Zy)é    N)ÚAnyÚDictÚListÚOptionalÚUnioné   )Ú	constants)ÚHfApi)Úbuild_hf_headersÚget_sessionÚis_pillow_availableÚloggingÚvalidate_hf_hub_args)Ú_deprecate_method)ztext-classificationztoken-classificationztable-question-answeringzquestion-answeringzzero-shot-classificationÚtranslationÚsummarizationÚconversationalzfeature-extractionztext-generationztext2text-generationz	fill-maskzsentence-similarityztext-to-speechzautomatic-speech-recognitionzaudio-to-audiozaudio-classificationzvoice-activity-detectionzimage-classificationzobject-detectionzimage-segmentationztext-to-imagezimage-to-imageztabular-classificationztabular-regressionc                   ó¾   — e Zd ZdZe edd¬«      	 	 	 ddedee   dee   d	efd
„«       «       Z	d„ Z
	 	 	 	 ddeeeeee   eee      f      dee   dee   dedef
d„Zy)ÚInferenceApia­  Client to configure requests and make calls to the HuggingFace Inference API.

    Example:

    ```python
    >>> from huggingface_hub.inference_api import InferenceApi

    >>> # Mask-fill example
    >>> inference = InferenceApi("bert-base-uncased")
    >>> inference(inputs="The goal of life is [MASK].")
    [{'sequence': 'the goal of life is life.', 'score': 0.10933292657136917, 'token': 2166, 'token_str': 'life'}]

    >>> # Question Answering example
    >>> inference = InferenceApi("deepset/roberta-base-squad2")
    >>> inputs = {
    ...     "question": "What's my name?",
    ...     "context": "My name is Clara and I live in Berkeley.",
    ... }
    >>> inference(inputs)
    {'score': 0.9326569437980652, 'start': 11, 'end': 16, 'answer': 'Clara'}

    >>> # Zero-shot example
    >>> inference = InferenceApi("typeform/distilbert-base-uncased-mnli")
    >>> inputs = "Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!"
    >>> params = {"candidate_labels": ["refund", "legal", "faq"]}
    >>> inference(inputs, params)
    {'sequence': 'Hi, I recently bought a device from your company but it is not working as advertised and I would like to get reimbursed!', 'labels': ['refund', 'faq', 'legal'], 'scores': [0.9378499388694763, 0.04914155602455139, 0.013008488342165947]}

    >>> # Overriding configured task
    >>> inference = InferenceApi("bert-base-uncased", task="feature-extraction")

    >>> # Text-to-image
    >>> inference = InferenceApi("stabilityai/stable-diffusion-2-1")
    >>> inference("cat")
    <PIL.PngImagePlugin.PngImageFile image (...)>

    >>> # Return as raw response to parse the output yourself
    >>> inference = InferenceApi("mio/amadeus")
    >>> response = inference("hello world", raw_response=True)
    >>> response.headers
    {"Content-Type": "audio/flac", ...}
    >>> response.content # raw bytes from server
    b'(...)'
    ```
    z1.0zù`InferenceApi` client is deprecated in favor of the more feature-complete `InferenceClient`. Check out this guide to learn how to convert your script to use it: https://huggingface.co/docs/huggingface_hub/guides/inference#legacy-inferenceapi-client.)ÚversionÚmessageNÚrepo_idÚtaskÚtokenÚgpuc                 óÄ  — d|dœ| _         t        |¬«      | _        t        |¬«      j	                  |¬«      }|j
                  s|st        d«      ‚|rC||j
                  k7  r4|t        vrt        d|› d�«      ‚t        j                  d«       || _
        n$|j
                  €J d
«       ‚|j
                  | _
        t        j                  › d| j                  › d|› �| _        y	)ak  Inits headers and API call information.

        Args:
            repo_id (``str``):
                Id of repository (e.g. `user/bert-base-uncased`).
            task (``str``, `optional`, defaults ``None``):
                Whether to force a task instead of using task specified in the
                repository.
            token (`str`, `optional`):
                The API token to use as HTTP bearer authorization. This is not
                the authentication token. You can find the token in
                https://huggingface.co/settings/token. Alternatively, you can
                find both your organizations and personal API tokens using
                `HfApi().whoami(token)`.
            gpu (`bool`, `optional`, defaults `False`):
                Whether to use GPU instead of CPU for inference(requires Startup
                plan at least).
        T)Úwait_for_modelÚuse_gpu)r   )r   z²Task not specified in the repository. Please add it to the model card using pipeline_tag (https://huggingface.co/docs#how-is-a-models-type-of-inference-api-and-widget-determined)zInvalid task z. Make sure it's valid.zlYou're using a different task than the one specified in the repository. Be sure to know what you're doing :)NzPipeline tag cannot be Nonez
/pipeline/ú/)Úoptionsr   Úheadersr
   Ú
model_infoÚpipeline_tagÚ
ValueErrorÚ	ALL_TASKSÚloggerÚwarningr   r	   ÚINFERENCE_ENDPOINTÚapi_url)Úselfr   r   r   r   r"   s         ú[/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/huggingface_hub/inference_api.pyÚ__init__zInferenceApi.__init__]   sç   € ðD +/¸3Ñ?ˆŒÜ'¨eÔ4ˆŒô  Ô'×2Ñ2¸7Ð2ÓCˆ
Ø×&Ò&©tÜðmóð ñ �D˜J×3Ñ3Ò3Øœ9Ñ$Ü  =°°Ð6MÐ!NÓOÐOä�N‰NðDôð ˆD�Ià×*Ñ*Ð6ÐUÐ8UÓUÐ6Ø"×/Ñ/ˆDŒIä#×6Ñ6Ð7°zÀ$Ç)Á)ÀÈAÈgÈYÐWˆ�ó    c                 óV   — d| j                   › d| j                  › d| j                  › d�S )NzInferenceAPI(api_url='z	', task='z', options=ú))r)   r   r    )r*   s    r+   Ú__repr__zInferenceApi.__repr__š   s.   € à'¨¯© ~°Y¸t¿y¹y¸kÈÐUY×UaÑUaÐTbÐbcÐdÐdr-   ÚinputsÚparamsÚdataÚraw_responseÚreturnc                 óø  — d| j                   i}|r||d<   |r||d<   t        «       j                  | j                  | j                  ||¬«      }|r|S |j                  j                  d«      xs d}|j                  d«      rWt        «       st        d| j                  › d	�«      ‚d
dl
m} |j                  t        j                  |j                  «      «      S |dk(  r|j!                  «       S t#        |› d�«      ‚)a
  Make a call to the Inference API.

        Args:
            inputs (`str` or `Dict` or `List[str]` or `List[List[str]]`, *optional*):
                Inputs for the prediction.
            params (`Dict`, *optional*):
                Additional parameters for the models. Will be sent as `parameters` in the
                payload.
            data (`bytes`, *optional*):
                Bytes content of the request. In this case, leave `inputs` and `params` empty.
            raw_response (`bool`, defaults to `False`):
                If `True`, the raw `Response` object is returned. You can parse its content
                as preferred. By default, the content is parsed into a more practical format
                (json dictionary or PIL Image for example).
        r    r1   Ú
parameters)r!   Újsonr3   zContent-TypeÚ ÚimagezTask 'z·' returned as image but Pillow is not installed. Please install it (`pip install Pillow`) or pass `raw_response=True` to get the raw `Response` object and parse the image by yourself.r   )ÚImagezapplication/jsonzˆ output type is not implemented yet. You can pass `raw_response=True` to get the raw `Response` object and parse the output by yourself.)r    r   Úpostr)   r!   ÚgetÚ
startswithr   ÚImportErrorr   ÚPILr;   ÚopenÚioÚBytesIOÚcontentr8   ÚNotImplementedError)	r*   r1   r2   r3   r4   ÚpayloadÚresponseÚcontent_typer;   s	            r+   Ú__call__zInferenceApi.__call__ž   s  € ð0 �t—|‘|ð#
ˆñ Ø &ˆG�HÑÙØ$*ˆG�LÑ!ô “=×%Ñ% d§l¡l¸D¿L¹LÈwÐ]aÐ%Óbˆñ ØˆOð  ×'Ñ'×+Ñ+¨NÓ;ÒA¸rˆØ×"Ñ" 7Ô+Ü&Ô(Ü!Ø˜TŸY™Y˜Kð (.ð .óð õ "à—:‘:œbŸj™j¨×)9Ñ)9Ó:Ó;Ð;ØÐ/Ò/Ø—=‘=“?Ð"ä%Ø�.ð !'ð 'óð r-   )NNF)NNNF)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   Ústrr   Úboolr,   r0   r   r   r   Úbytesr   rI   © r-   r+   r   r   .   sä   „ ñ,ð\ ÙØðhôð #Ø#Øñ2Xàð2Xð �s‰mð2Xð ˜‰}ð	2Xð
 ò2Xóó ð2Xòheð JNØ!%Ø $Ø"ñ;à˜˜s D¨$¨s©)°T¸$¸s¹)±_ÐDÑEÑFð;ð ˜‘ð;ð �u‰oð	;ð
 ð;ð 
ô;r-   r   )rB   Útypingr   r   r   r   r   r9   r	   Úhf_apir
   Úutilsr   r   r   r   r   Úutils._deprecationr   Ú
get_loggerrJ   r&   r%   r   rQ   r-   r+   ú<module>rW      sE   ðÛ 	ß 3Õ 3å Ý ß dÕ dÝ 1ð 
ˆ×	Ñ	˜HÓ	%€ò€	÷Bkò kr-   