Skip to content
Closed
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
3 changes: 3 additions & 0 deletions sdk/ai/azure-ai-projects/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
* New `.beta.datasets` sub-client with data generation job operations: `create_generation_job`, `get_generation_job`, `list_generation_jobs`, `cancel_generation_job`, `delete_generation_job`.
* New read-only property `content_hash` on `CodeConfiguration`, returning the SHA-256 hex digest of the uploaded code zip.
* New evaluator generation job operations on `.beta.evaluators`: `create_generation_job`, `get_generation_job`, `list_generation_jobs`, `cancel_generation_job`, `delete_generation_job`.
* New code-based agent operations on `.agents` sub-client: `create_agent_from_code`, `update_agent_from_code`, `create_agent_version_from_code`, `download_agent_version_code`, `download_agent_code`.
* New enum `CodeDependencyResolution` for specifying how package dependencies are resolved at deployment time for code-based hosted agents.

### Breaking Changes

Expand All @@ -18,6 +20,7 @@ Breaking changes in beta operations:
* Required property `isolation_key_source` removed from class `EntraAuthorizationScheme`.
* Required keyword argument `isolation_key` removed from `.beta.agents.create_session()` and `.beta.agents.delete_session()` methods.
* Argument `body` in methods `.beta.evaluation_taxonomies.create()` and `.beta.evaluation_taxonomies.update()` renamed to `taxonomy`.
* Removed model `TaskDataGenerationJobOptions` and enum value `DataGenerationJobType.TASK`.

### Bugs Fixed

Expand Down
15 changes: 14 additions & 1 deletion sdk/ai/azure-ai-projects/apiview-properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@
"azure.ai.projects.models.EvaluationRuleAction": "Azure.AI.Projects.EvaluationRuleAction",
"azure.ai.projects.models.ContinuousEvaluationRuleAction": "Azure.AI.Projects.ContinuousEvaluationRuleAction",
"azure.ai.projects.models.CosmosDBIndex": "Azure.AI.Projects.CosmosDBIndex",
"azure.ai.projects.models.CreateAgentFromCodeContent": "Azure.AI.Projects.CreateAgentFromCodeContent",
"azure.ai.projects.models.CreateAgentVersionFromCodeContent": "Azure.AI.Projects.CreateAgentVersionFromCodeContent",
"azure.ai.projects.models.CreateAgentVersionFromCodeRequest": "Azure.AI.Projects.CreateAgentVersionFromCodeRequest",
"azure.ai.projects.models.Trigger": "Azure.AI.Projects.Trigger",
"azure.ai.projects.models.CronTrigger": "Azure.AI.Projects.CronTrigger",
"azure.ai.projects.models.CustomCredential": "Azure.AI.Projects.CustomCredential",
Expand Down Expand Up @@ -239,7 +242,6 @@
"azure.ai.projects.models.SpecificFunctionShellParam": "OpenAI.SpecificFunctionShellParam",
"azure.ai.projects.models.StructuredInputDefinition": "Azure.AI.Projects.StructuredInputDefinition",
"azure.ai.projects.models.StructuredOutputDefinition": "Azure.AI.Projects.StructuredOutputDefinition",
"azure.ai.projects.models.TaskDataGenerationJobOptions": "Azure.AI.Projects.TaskDataGenerationJobOptions",
"azure.ai.projects.models.TaxonomyCategory": "Azure.AI.Projects.TaxonomyCategory",
"azure.ai.projects.models.TaxonomySubCategory": "Azure.AI.Projects.TaxonomySubCategory",
"azure.ai.projects.models.TelemetryConfig": "Azure.AI.Projects.TelemetryConfig",
Expand Down Expand Up @@ -298,6 +300,7 @@
"azure.ai.projects.models.ContainerSkillType": "OpenAI.ContainerSkillType",
"azure.ai.projects.models.SearchContextSize": "OpenAI.SearchContextSize",
"azure.ai.projects.models.AgentProtocol": "Azure.AI.Projects.AgentProtocol",
"azure.ai.projects.models.CodeDependencyResolution": "Azure.AI.Projects.CodeDependencyResolution",
"azure.ai.projects.models.TelemetryEndpointKind": "Azure.AI.Projects.TelemetryEndpointKind",
"azure.ai.projects.models.TelemetryDataKind": "Azure.AI.Projects.TelemetryDataKind",
"azure.ai.projects.models.TelemetryEndpointAuthType": "Azure.AI.Projects.TelemetryEndpointAuthType",
Expand Down Expand Up @@ -352,6 +355,10 @@
"azure.ai.projects.models.MemoryStoreUpdateStatus": "Azure.AI.Projects.MemoryStoreUpdateStatus",
"azure.ai.projects.operations.AgentsOperations.get": "Azure.AI.Projects.Agents.getAgent",
"azure.ai.projects.aio.operations.AgentsOperations.get": "Azure.AI.Projects.Agents.getAgent",
"azure.ai.projects.operations.AgentsOperations.create_agent_from_code": "Azure.AI.Projects.Agents.createAgentFromCode",
"azure.ai.projects.aio.operations.AgentsOperations.create_agent_from_code": "Azure.AI.Projects.Agents.createAgentFromCode",
"azure.ai.projects.operations.AgentsOperations.update_agent_from_code": "Azure.AI.Projects.Agents.updateAgentFromCode",
"azure.ai.projects.aio.operations.AgentsOperations.update_agent_from_code": "Azure.AI.Projects.Agents.updateAgentFromCode",
"azure.ai.projects.operations.AgentsOperations.delete": "Azure.AI.Projects.Agents.deleteAgent",
"azure.ai.projects.aio.operations.AgentsOperations.delete": "Azure.AI.Projects.Agents.deleteAgent",
"azure.ai.projects.operations.AgentsOperations.list": "Azure.AI.Projects.Agents.listAgents",
Expand All @@ -366,6 +373,12 @@
"azure.ai.projects.aio.operations.AgentsOperations.delete_version": "Azure.AI.Projects.Agents.deleteAgentVersion",
"azure.ai.projects.operations.AgentsOperations.list_versions": "Azure.AI.Projects.Agents.listAgentVersions",
"azure.ai.projects.aio.operations.AgentsOperations.list_versions": "Azure.AI.Projects.Agents.listAgentVersions",
"azure.ai.projects.operations.AgentsOperations.create_agent_version_from_code": "Azure.AI.Projects.Agents.createAgentVersionFromCode",
"azure.ai.projects.aio.operations.AgentsOperations.create_agent_version_from_code": "Azure.AI.Projects.Agents.createAgentVersionFromCode",
"azure.ai.projects.operations.AgentsOperations.download_agent_version_code": "Azure.AI.Projects.Agents.downloadAgentVersionCode",
"azure.ai.projects.aio.operations.AgentsOperations.download_agent_version_code": "Azure.AI.Projects.Agents.downloadAgentVersionCode",
"azure.ai.projects.operations.AgentsOperations.download_agent_code": "Azure.AI.Projects.Agents.downloadAgentCode",
"azure.ai.projects.aio.operations.AgentsOperations.download_agent_code": "Azure.AI.Projects.Agents.downloadAgentCode",
"azure.ai.projects.operations.EvaluationRulesOperations.get": "Azure.AI.Projects.EvaluationRules.get",
"azure.ai.projects.aio.operations.EvaluationRulesOperations.get": "Azure.AI.Projects.EvaluationRules.get",
"azure.ai.projects.operations.EvaluationRulesOperations.delete": "Azure.AI.Projects.EvaluationRules.delete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

from .._utils.model_base import Model, SdkJSONEncoder


# file-like tuple could be `(filename, IO (or bytes))` or `(filename, IO (or bytes), content_type)`
FileContent = Union[str, bytes, IO[str], IO[bytes]]

Expand Down
Loading