@botpress/api 0.19.4 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -1
- package/dist/src/gen/state.d.ts +5 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +6 -1
package/dist/index.js
CHANGED
|
@@ -280081,6 +280081,11 @@ var state = {
|
|
|
280081
280081
|
"description": "Query expressed in natural language to retrieve matching text passages within all files using semantical search.",
|
|
280082
280082
|
"required": true
|
|
280083
280083
|
},
|
|
280084
|
+
"contextDepth": {
|
|
280085
|
+
"in": "query",
|
|
280086
|
+
"type": "string",
|
|
280087
|
+
"description": "The number of neighbor passages to prepend and append as surrounding context to the content of each returned passage. Default: 0, Maximum: 10"
|
|
280088
|
+
},
|
|
280084
280089
|
"limit": {
|
|
280085
280090
|
"in": "query",
|
|
280086
280091
|
"type": "string",
|
|
@@ -280840,7 +280845,7 @@ var state = {
|
|
|
280840
280845
|
"title": "Botpress API",
|
|
280841
280846
|
"description": "API for Botpress Cloud",
|
|
280842
280847
|
"server": "https://api.botpress.cloud",
|
|
280843
|
-
"version": "0.
|
|
280848
|
+
"version": "0.20.0",
|
|
280844
280849
|
"prefix": "v1"
|
|
280845
280850
|
},
|
|
280846
280851
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED