Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Azure AI Chat Completion Client #4723

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions python/packages/autogen-core/docs/src/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ python/autogen_ext.teams.magentic_one
python/autogen_ext.models.cache
python/autogen_ext.models.openai
python/autogen_ext.models.replay
python/autogen_ext.models.azure
python/autogen_ext.models.semantic_kernel
python/autogen_ext.tools.langchain
python/autogen_ext.tools.graphrag
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
autogen\_ext.models.azure
==========================


.. automodule:: autogen_ext.models.azure
:members:
:undoc-members:
:show-inheritance:
5 changes: 5 additions & 0 deletions python/packages/autogen-ext/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ redis = [
grpc = [
"grpcio~=1.62.0", # TODO: update this once we have a stable version.
]

azure-ai-inference = [
"azure-ai-inference>=1.0.0b6",
ekzhu marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be merged with the azure extra, because if you want to use this you need azure-identity anyway.

]

jupyter-executor = [
"ipykernel>=6.29.5",
"nbclient>=0.10.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from ._azure_ai_client import AzureAIChatCompletionClient
from .config import AzureAIChatCompletionClientConfig

__all__ = ["AzureAIChatCompletionClient", "AzureAIChatCompletionClientConfig"]
Loading
Loading