Skip to content
Draft
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
5 changes: 5 additions & 0 deletions specification/ai-foundry/data-plane/Foundry/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Foundry data-plane TypeSpec

> see https://aka.ms/autorest

This folder contains the TypeSpec for Foundry data-plane APIs.
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,12 @@ namespace Azure.AI.Projects {
}
);

// ItemMessage spreads OpenAI.Message, whose content is an array. The Responses
// input contract also accepts string shorthand, and this client uses ItemMessage
// in the merged input/output item union.
@@withoutOmittedProperties(OpenAI.ItemMessage, "content");
@@copyProperties(OpenAI.ItemMessage, { content: string | OpenAI.MessageContent[] });

// To avoid conflicts with Azure.Response
@@clientName(OpenAI.Response, "ResponseObject");

Expand Down Expand Up @@ -262,7 +268,4 @@ namespace Azure.AI.Projects {
@@access(UpdateAgentRequest, Access.public);
@@usage(UpdateAgentRequest, Usage.input);

@@access(OpenAI.ItemCustomToolCallOutput, Access.public);
@@usage(OpenAI.ItemCustomToolCallOutput, Usage.input | Usage.output);
@@clientName(OpenAI.ItemCustomToolCallOutput, "OutputItemCustomToolCallOutput");
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Agent service contracts SDK TypeSpec

> see https://aka.ms/autorest

This folder contains SDK-only TypeSpec projections for Azure AI Agent Service response model contracts. The REST API OpenAPI is emitted from the parent Foundry TypeSpec project.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
- "."
- "**"

- tool: TypeSpecValidation
reason: Design underway for folder structure and tool integration for this area
paths:
- "."
- "**"

# Prior suppression currently superseded by the above:

# - tool: TypeSpecValidation
Expand Down
Loading