Skip to content

Howie/mixin 2 #41915

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

Open
wants to merge 3 commits into
base: feature/azure-ai-agents/1.0.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
170 changes: 85 additions & 85 deletions eng/emitter-package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-python": "0.44.2"
"@azure-tools/typespec-python": "0.46.0"
},
"devDependencies": {
"@typespec/compiler": "^1.0.0",
"@typespec/http": "^1.0.0",
"@typespec/rest": "~0.70.0",
"@typespec/versioning": "~0.70.0",
"@typespec/openapi": "^1.0.0",
"@typespec/events": "~0.70.0",
"@typespec/sse": "~0.70.0",
"@typespec/streams": "~0.70.0",
"@typespec/xml": "~0.70.0",
"@azure-tools/typespec-azure-core": "~0.56.0",
"@azure-tools/typespec-azure-resource-manager": "~0.56.0",
"@azure-tools/typespec-autorest": "~0.56.0",
"@azure-tools/typespec-azure-rulesets": "~0.56.0",
"@azure-tools/typespec-client-generator-core": "~0.56.1",
"@typespec/compiler": "^1.1.0",
"@typespec/http": "^1.1.0",
"@typespec/rest": "~0.71.0",
"@typespec/versioning": "~0.71.0",
"@typespec/openapi": "^1.1.0",
"@typespec/events": "~0.71.0",
"@typespec/sse": "~0.71.0",
"@typespec/streams": "~0.71.0",
"@typespec/xml": "~0.71.0",
"@azure-tools/typespec-azure-core": "~0.57.0",
"@azure-tools/typespec-azure-resource-manager": "~0.57.2",
"@azure-tools/typespec-autorest": "~0.57.1",
"@azure-tools/typespec-azure-rulesets": "~0.57.1",
"@azure-tools/typespec-client-generator-core": "~0.57.3",
"@azure-tools/typespec-liftr-base": "0.8.0"
}
}
4 changes: 4 additions & 0 deletions sdk/ai/azure-ai-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Added samples, [`sample_agents_auto_function_call.py`](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_tools/sample_agents_auto_function_call.py) and [`sample_agents_auto_function_call_async.py`](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/ai/azure-ai-agents/samples/agents_async/sample_agents_auto_function_call_async.py).

### Bugs Fixed

- `_AgentsClientOperationsMixin` now it is private.

## 1.0.2 (2025-07-01)

### Bugs Fixed
Expand Down
4 changes: 2 additions & 2 deletions sdk/ai/azure-ai-agents/azure/ai/agents/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
from ._configuration import AgentsClientConfiguration
from ._utils.serialization import Deserializer, Serializer
from .operations import (
AgentsClientOperationsMixin,
FilesOperations,
MessagesOperations,
RunStepsOperations,
Expand All @@ -27,12 +26,13 @@
VectorStoreFilesOperations,
VectorStoresOperations,
)
from .operations._operations import _AgentsClientOperationsMixin

if TYPE_CHECKING:
from azure.core.credentials import TokenCredential


class AgentsClient(AgentsClientOperationsMixin): # pylint: disable=too-many-instance-attributes
class AgentsClient(_AgentsClientOperationsMixin): # pylint: disable=too-many-instance-attributes
"""AgentsClient.

:ivar threads: ThreadsOperations operations
Expand Down
Loading
Loading