|
24791 | 24791 | "type": "string", |
24792 | 24792 | "format": "date-time" |
24793 | 24793 | }, |
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 | | - }, |
24803 | 24794 | "monthly_api_credits_remaining": { |
24804 | 24795 | "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.", |
24805 | 24796 | "type": "integer", |
|
28554 | 28545 | "$ref": "#/components/schemas/MlCopilotTool" |
28555 | 28546 | } |
28556 | 28547 | }, |
| 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 | + }, |
28557 | 28557 | "model": { |
28558 | 28558 | "nullable": true, |
28559 | | - "description": "Override the default model with another.", |
| 28559 | + "description": "Override the default or mode model with another.", |
28560 | 28560 | "allOf": [ |
28561 | 28561 | { |
28562 | 28562 | "$ref": "#/components/schemas/MlCopilotSupportedModels" |
|
28570 | 28570 | }, |
28571 | 28571 | "reasoning_effort": { |
28572 | 28572 | "nullable": true, |
28573 | | - "description": "Change the default reasoning effort.", |
| 28573 | + "description": "Change the default or mode reasoning effort.", |
28574 | 28574 | "allOf": [ |
28575 | 28575 | { |
28576 | 28576 | "$ref": "#/components/schemas/MlReasoningEffort" |
|
28622 | 28622 | } |
28623 | 28623 | ] |
28624 | 28624 | }, |
| 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 | + }, |
28625 | 28644 | "MlCopilotServerMessage": { |
28626 | 28645 | "description": "The types of messages that can be sent by the server to the client.", |
28627 | 28646 | "oneOf": [ |
|
0 commit comments