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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ui/src/api/generated/** -whitespace
54 changes: 52 additions & 2 deletions api-docs/openapi/v3_0/aiFoundationApis.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"openapi" : "3.0.1",
"info" : {
"title" : "Halo",
"version" : "2.25.2"
"version" : "2.25.4"
},
"servers" : [ {
"url" : "http://localhost:41657",
"url" : "http://localhost:33894",
"description" : "Generated server url"
} ],
"security" : [ {
Expand Down Expand Up @@ -735,6 +735,13 @@
"schema" : {
"type" : "boolean"
}
}, {
"description" : "Whether to inject the console-only lifecycle-aware tool for streamed tool-input diagnostics.",
"in" : "query",
"name" : "enableToolInputStreamTest",
"schema" : {
"type" : "boolean"
}
} ],
"requestBody" : {
"content" : {
Expand Down Expand Up @@ -2690,6 +2697,46 @@
}
}
},
"TestAgentOptions" : {
"type" : "object",
"properties" : {
"approvalRequired" : {
"type" : "boolean"
},
"browserToolEnabled" : {
"type" : "boolean"
},
"enabled" : {
"type" : "boolean"
},
"externalToolEnabled" : {
"type" : "boolean"
},
"maxSteps" : {
"type" : "integer",
"format" : "int32"
},
"profile" : {
"type" : "string",
"enum" : [ "BALANCED", "CONCISE", "EXPLICIT" ]
},
"recoveryScenario" : {
"type" : "string",
"enum" : [ "NONE", "INVALID_INPUT", "RENAMED_TOOL", "FAILED_RECOVERY" ]
},
"serverToolEnabled" : {
"type" : "boolean"
},
"stepPolicy" : {
"type" : "string",
"enum" : [ "ALL_TOOLS", "SERVER_THEN_ALL", "SERVER_THEN_BROWSER" ]
},
"toolInputStreamEnabled" : {
"type" : "boolean"
}
},
"description" : "Agent workbench execution and diagnostic options."
},
"TestCompletionStreamRequest" : {
"type" : "object",
"properties" : {
Expand Down Expand Up @@ -3368,6 +3415,9 @@
"TestUiMessageChatRequest" : {
"type" : "object",
"properties" : {
"agent" : {
"$ref" : "#/components/schemas/TestAgentOptions"
},
"context" : {
"type" : "object",
"additionalProperties" : {
Expand Down
Loading
Loading