Models#
In many cases, agents need access to model services such as OpenAI, Azure OpenAI, and local models.
AgentChat utilizes model clients provided by the
autogen-ext
package.
OpenAI#
To access OpenAI models, you need to install the openai
extension to use the OpenAIChatCompletionClient
.
pip install 'autogen-ext[openai]==0.4.0.dev6'
You will also need to obtain an API key from OpenAI.
from autogen_ext.models import OpenAIChatCompletionClient
opneai_model_client = OpenAIChatCompletionClient(
model="gpt-4o-2024-08-06",
# api_key="sk-...", # Optional if you have an OPENAI_API_KEY environment variable set.
)
To test the model client, you can use the following code:
from autogen_core.components.models import UserMessage
result = await opneai_model_client.create([UserMessage(content="What is the capital of France?", source="user")])
print(result)
CreateResult(finish_reason='stop', content='The capital of France is Paris.', usage=RequestUsage(prompt_tokens=15, completion_tokens=7), cached=False, logprobs=None)
Azure OpenAI#
Install the azure
and openai
extensions to use the AzureOpenAIChatCompletionClient
.
pip install 'autogen-ext[openai,azure]==0.4.0.dev6'
To use the client, you need to provide your deployment id, Azure Cognitive Services endpoint, api version, and model capabilities. For authentication, you can either provide an API key or an Azure Active Directory (AAD) token credential.
The following code snippet shows how to use AAD authentication. The identity used must be assigned the Cognitive Services OpenAI User role.
from autogen_ext.models import AzureOpenAIChatCompletionClient
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
# Create the token provider
token_provider = get_bearer_token_provider(DefaultAzureCredential(), "https://cognitiveservices.azure.com/.default")
az_model_client = AzureOpenAIChatCompletionClient(
model="{your-azure-deployment}",
api_version="2024-06-01",
azure_endpoint="https://{your-custom-endpoint}.openai.azure.com/",
azure_ad_token_provider=token_provider, # Optional if you choose key-based authentication.
# api_key="sk-...", # For key-based authentication.
model_capabilities={
"vision": True,
"function_calling": True,
"json_output": True,
},
)
See here for how to use the Azure client directly or for more info.
Local Models#
We are working on it. Stay tuned!