Skip to content

Commit a81d67c

Browse files
Update api spec (#254)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: zoo-github-actions-auth[bot] <zoo-github-actions-auth[bot]@users.noreply.github.com>
1 parent 6fcb1cf commit a81d67c

File tree

2 files changed

+44
-15
lines changed

2 files changed

+44
-15
lines changed

spec.json

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24791,15 +24791,6 @@
2479124791
"type": "string",
2479224792
"format": "date-time"
2479324793
},
24794-
"modeling_app_enterprise_price": {
24795-
"nullable": true,
24796-
"description": "The enterprise price for the Modeling App subscription, if they are on the enterprise plan.",
24797-
"allOf": [
24798-
{
24799-
"$ref": "#/components/schemas/SubscriptionTierPrice"
24800-
}
24801-
]
24802-
},
2480324794
"monthly_api_credits_remaining": {
2480424795
"description": "The number of monthly API credits remaining in the balance. This is the number of credits remaining in the balance.\n\nBoth the monetary value and the number of credits are returned, but they reflect the same value in the database.",
2480524796
"type": "integer",
@@ -28554,9 +28545,18 @@
2855428545
"$ref": "#/components/schemas/MlCopilotTool"
2855528546
}
2855628547
},
28548+
"mode": {
28549+
"nullable": true,
28550+
"description": "Pick a mode for the agent to operate in. Defaults to a fast mode.",
28551+
"allOf": [
28552+
{
28553+
"$ref": "#/components/schemas/MlCopilotMode"
28554+
}
28555+
]
28556+
},
2855728557
"model": {
2855828558
"nullable": true,
28559-
"description": "Override the default model with another.",
28559+
"description": "Override the default or mode model with another.",
2856028560
"allOf": [
2856128561
{
2856228562
"$ref": "#/components/schemas/MlCopilotSupportedModels"
@@ -28570,7 +28570,7 @@
2857028570
},
2857128571
"reasoning_effort": {
2857228572
"nullable": true,
28573-
"description": "Change the default reasoning effort.",
28573+
"description": "Change the default or mode reasoning effort.",
2857428574
"allOf": [
2857528575
{
2857628576
"$ref": "#/components/schemas/MlReasoningEffort"
@@ -28622,6 +28622,25 @@
2862228622
}
2862328623
]
2862428624
},
28625+
"MlCopilotMode": {
28626+
"description": "The mode to have the agent work in.",
28627+
"oneOf": [
28628+
{
28629+
"description": "Use a combination of models and reasoning effort for fast results.",
28630+
"type": "string",
28631+
"enum": [
28632+
"fast"
28633+
]
28634+
},
28635+
{
28636+
"description": "Use a model and effort that results in thoughtful responses.",
28637+
"type": "string",
28638+
"enum": [
28639+
"thoughtful"
28640+
]
28641+
}
28642+
]
28643+
},
2862528644
"MlCopilotServerMessage": {
2862628645
"description": "The types of messages that can be sent by the server to the client.",
2862728646
"oneOf": [

types.go

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)