Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ namespace Azure.AI.Projects {
memory_search_preview: "memory_search_preview",
work_iq_preview: "work_iq_preview",
fabric_iq_preview: "fabric_iq_preview",
toolbox_search_preview: "toolbox_search_preview",
}

// General availability tools:
Expand Down Expand Up @@ -890,6 +891,20 @@ namespace Azure.AI.Projects {
update_delay?: int32 = 300;
}

/**
* A tool for searching over the agent's toolbox.
* When present, deferred tools are hidden from `tools/list` and only
* discoverable via `search_tools` queries at runtime.
*/
model ToolboxSearchPreviewTool extends OpenAI.Tool {
/**
* The type of the tool. Always `toolbox_search_preview`.
*/
type: "toolbox_search_preview";

...ToolNameAndDescriptionExtension;
}

alias MemorySearchToolCallItemBase = {
@doc("The results returned from the memory search.")
results?: MemorySearchItem[] | null;
Expand Down
Loading