|
11171 | 11171 | "clientSecret": { |
11172 | 11172 | "type": "string", |
11173 | 11173 | "description": "This is the OAuth2 client secret." |
| 11174 | + }, |
| 11175 | + "scope": { |
| 11176 | + "type": "string", |
| 11177 | + "description": "This is the scope of the OAuth2 token.", |
| 11178 | + "maxLength": 1000 |
11174 | 11179 | } |
11175 | 11180 | }, |
11176 | 11181 | "required": [ |
|
12703 | 12708 | "do" |
12704 | 12709 | ] |
12705 | 12710 | }, |
| 12711 | + "KeypadInputPlan": { |
| 12712 | + "type": "object", |
| 12713 | + "properties": { |
| 12714 | + "enabled": { |
| 12715 | + "type": "boolean", |
| 12716 | + "description": "This keeps track of whether the user has enabled keypad input.\nBy default, it is off.\n\n@default false" |
| 12717 | + }, |
| 12718 | + "timeoutSeconds": { |
| 12719 | + "type": "number", |
| 12720 | + "description": "This is the time in seconds to wait before processing the input.\nIf the input is not received within this time, the input will be ignored.\nIf set to \"off\", the input will be processed when the user enters a delimiter or immediately if no delimiter is used.\n\n@default 2", |
| 12721 | + "minimum": 0.5, |
| 12722 | + "maximum": 10 |
| 12723 | + }, |
| 12724 | + "delimiters": { |
| 12725 | + "type": "string", |
| 12726 | + "description": "This is the delimiter(s) that will be used to process the input.\nCan be '#', '*', or an empty array.", |
| 12727 | + "enum": [ |
| 12728 | + "#", |
| 12729 | + "*", |
| 12730 | + "" |
| 12731 | + ] |
| 12732 | + } |
| 12733 | + } |
| 12734 | + }, |
12706 | 12735 | "CreateAssistantDTO": { |
12707 | 12736 | "type": "object", |
12708 | 12737 | "properties": { |
|
13275 | 13304 | "items": { |
13276 | 13305 | "$ref": "#/components/schemas/AssistantHooks" |
13277 | 13306 | } |
| 13307 | + }, |
| 13308 | + "keypadInputPlan": { |
| 13309 | + "$ref": "#/components/schemas/KeypadInputPlan" |
13278 | 13310 | } |
13279 | 13311 | } |
13280 | 13312 | }, |
|
13854 | 13886 | "items": { |
13855 | 13887 | "$ref": "#/components/schemas/AssistantHooks" |
13856 | 13888 | } |
| 13889 | + }, |
| 13890 | + "keypadInputPlan": { |
| 13891 | + "$ref": "#/components/schemas/KeypadInputPlan" |
13857 | 13892 | } |
13858 | 13893 | } |
13859 | 13894 | }, |
|
15485 | 15520 | "$ref": "#/components/schemas/AssistantHooks" |
15486 | 15521 | } |
15487 | 15522 | }, |
| 15523 | + "keypadInputPlan": { |
| 15524 | + "$ref": "#/components/schemas/KeypadInputPlan" |
| 15525 | + }, |
15488 | 15526 | "id": { |
15489 | 15527 | "type": "string", |
15490 | 15528 | "description": "This is the unique identifier for the assistant." |
|
16083 | 16121 | "items": { |
16084 | 16122 | "$ref": "#/components/schemas/AssistantHooks" |
16085 | 16123 | } |
| 16124 | + }, |
| 16125 | + "keypadInputPlan": { |
| 16126 | + "$ref": "#/components/schemas/KeypadInputPlan" |
16086 | 16127 | } |
16087 | 16128 | } |
16088 | 16129 | }, |
|
17172 | 17213 | "createPlan": { |
17173 | 17214 | "description": "This is the plan if you want us to create/import a new vector store using Trieve.", |
17174 | 17215 | "oneOf": [ |
17175 | | - { |
17176 | | - "$ref": "#/components/schemas/TrieveKnowledgeBaseCreate", |
17177 | | - "title": "Create" |
17178 | | - }, |
17179 | 17216 | { |
17180 | 17217 | "$ref": "#/components/schemas/TrieveKnowledgeBaseImport", |
17181 | 17218 | "title": "Import" |
|
17256 | 17293 | "createPlan": { |
17257 | 17294 | "description": "This is the plan if you want us to create/import a new vector store using Trieve.", |
17258 | 17295 | "oneOf": [ |
17259 | | - { |
17260 | | - "$ref": "#/components/schemas/TrieveKnowledgeBaseCreate", |
17261 | | - "title": "Create" |
17262 | | - }, |
17263 | 17296 | { |
17264 | 17297 | "$ref": "#/components/schemas/TrieveKnowledgeBaseImport", |
17265 | 17298 | "title": "Import" |
|
17289 | 17322 | "createPlan": { |
17290 | 17323 | "description": "This is the plan if you want us to create/import a new vector store using Trieve.", |
17291 | 17324 | "oneOf": [ |
17292 | | - { |
17293 | | - "$ref": "#/components/schemas/TrieveKnowledgeBaseCreate", |
17294 | | - "title": "Create" |
17295 | | - }, |
17296 | 17325 | { |
17297 | 17326 | "$ref": "#/components/schemas/TrieveKnowledgeBaseImport", |
17298 | 17327 | "title": "Import" |
|
20253 | 20282 | "costBreakdown.llmPromptTokens", |
20254 | 20283 | "costBreakdown.llmCompletionTokens", |
20255 | 20284 | "duration", |
20256 | | - "concurrency" |
| 20285 | + "concurrency", |
| 20286 | + "minutesUsed" |
20257 | 20287 | ] |
20258 | 20288 | }, |
20259 | 20289 | "alias": { |
|
0 commit comments