
    .h                     N    U d dl mZmZ ddlmZ dZeed<    G d de          ZdS )	   )ModelModelProvider   )LitellmModelzgpt-4.1DEFAULT_MODELc                   (    e Zd ZdZdedz  defdZdS )LitellmProvidera|  A ModelProvider that uses LiteLLM to route to any model provider. You can use it via:
    ```python
    Runner.run(agent, input, run_config=RunConfig(model_provider=LitellmProvider()))
    ```
    See supported models here: [litellm models](https://docs.litellm.ai/docs/providers).

    NOTE: API keys must be set via environment variables. If you're using models that require
    additional configuration (e.g. Azure API base or version), those must also be set via the
    environment variables that LiteLLM expects. If you have more advanced needs, we recommend
    copy-pasting this class and making any modifications you need.
    
model_nameNreturnc                 .    t          |pt                    S )N)r   r   )selfr
   s     f/var/www/FlaskApp/flask-venv/lib/python3.11/site-packages/agents/extensions/models/litellm_provider.py	get_modelzLitellmProvider.get_model   s    J7-888    )__name__
__module____qualname____doc__strr   r    r   r   r	   r	      sD        
 
9C$J 95 9 9 9 9 9 9r   r	   N)	models.interfacer   r   litellm_modelr   r   r   __annotations__r	   r   r   r   <module>r      sv    4 4 4 4 4 4 4 4 4 ' ' ' ' ' 's   9 9 9 9 9m 9 9 9 9 9r   