Skip to content

Commit 2bb10e7

Browse files
committed
fix(openapi): add keypad input plan and remove TrieveKnowledgeBaseCreate references
1 parent b041f32 commit 2bb10e7

File tree

1 file changed

+43
-13
lines changed

1 file changed

+43
-13
lines changed

fern/apis/api/openapi.json

Lines changed: 43 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11171,6 +11171,11 @@
1117111171
"clientSecret": {
1117211172
"type": "string",
1117311173
"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
1117411179
}
1117511180
},
1117611181
"required": [
@@ -12703,6 +12708,30 @@
1270312708
"do"
1270412709
]
1270512710
},
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+
},
1270612735
"CreateAssistantDTO": {
1270712736
"type": "object",
1270812737
"properties": {
@@ -13275,6 +13304,9 @@
1327513304
"items": {
1327613305
"$ref": "#/components/schemas/AssistantHooks"
1327713306
}
13307+
},
13308+
"keypadInputPlan": {
13309+
"$ref": "#/components/schemas/KeypadInputPlan"
1327813310
}
1327913311
}
1328013312
},
@@ -13854,6 +13886,9 @@
1385413886
"items": {
1385513887
"$ref": "#/components/schemas/AssistantHooks"
1385613888
}
13889+
},
13890+
"keypadInputPlan": {
13891+
"$ref": "#/components/schemas/KeypadInputPlan"
1385713892
}
1385813893
}
1385913894
},
@@ -15485,6 +15520,9 @@
1548515520
"$ref": "#/components/schemas/AssistantHooks"
1548615521
}
1548715522
},
15523+
"keypadInputPlan": {
15524+
"$ref": "#/components/schemas/KeypadInputPlan"
15525+
},
1548815526
"id": {
1548915527
"type": "string",
1549015528
"description": "This is the unique identifier for the assistant."
@@ -16083,6 +16121,9 @@
1608316121
"items": {
1608416122
"$ref": "#/components/schemas/AssistantHooks"
1608516123
}
16124+
},
16125+
"keypadInputPlan": {
16126+
"$ref": "#/components/schemas/KeypadInputPlan"
1608616127
}
1608716128
}
1608816129
},
@@ -17172,10 +17213,6 @@
1717217213
"createPlan": {
1717317214
"description": "This is the plan if you want us to create/import a new vector store using Trieve.",
1717417215
"oneOf": [
17175-
{
17176-
"$ref": "#/components/schemas/TrieveKnowledgeBaseCreate",
17177-
"title": "Create"
17178-
},
1717917216
{
1718017217
"$ref": "#/components/schemas/TrieveKnowledgeBaseImport",
1718117218
"title": "Import"
@@ -17256,10 +17293,6 @@
1725617293
"createPlan": {
1725717294
"description": "This is the plan if you want us to create/import a new vector store using Trieve.",
1725817295
"oneOf": [
17259-
{
17260-
"$ref": "#/components/schemas/TrieveKnowledgeBaseCreate",
17261-
"title": "Create"
17262-
},
1726317296
{
1726417297
"$ref": "#/components/schemas/TrieveKnowledgeBaseImport",
1726517298
"title": "Import"
@@ -17289,10 +17322,6 @@
1728917322
"createPlan": {
1729017323
"description": "This is the plan if you want us to create/import a new vector store using Trieve.",
1729117324
"oneOf": [
17292-
{
17293-
"$ref": "#/components/schemas/TrieveKnowledgeBaseCreate",
17294-
"title": "Create"
17295-
},
1729617325
{
1729717326
"$ref": "#/components/schemas/TrieveKnowledgeBaseImport",
1729817327
"title": "Import"
@@ -20253,7 +20282,8 @@
2025320282
"costBreakdown.llmPromptTokens",
2025420283
"costBreakdown.llmCompletionTokens",
2025520284
"duration",
20256-
"concurrency"
20285+
"concurrency",
20286+
"minutesUsed"
2025720287
]
2025820288
},
2025920289
"alias": {

0 commit comments

Comments
 (0)