-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added: object-level usage data * Added: doc string * Added: check existing response_format value * Added: _validate_config and _create_client
- Loading branch information
1 parent
06d3f95
commit daf43de
Showing
5 changed files
with
131 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...on/packages/autogen-core/docs/src/reference/python/autogen_ext.models.azure.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
3 changes: 2 additions & 1 deletion
3
python/packages/autogen-ext/src/autogen_ext/models/azure/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from ._azure_ai_client import AzureAIChatCompletionClient | ||
from .config import AzureAIChatCompletionClientConfig | ||
|
||
__all__ = ["AzureAIChatCompletionClient"] | ||
__all__ = ["AzureAIChatCompletionClient", "AzureAIChatCompletionClientConfig"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters