You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/ts-sdk/openapi.json
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -11670,11 +11670,6 @@
11670
11670
"description": "No result message for when there are no chunks found above the score threshold.",
11671
11671
"nullable": true
11672
11672
},
11673
-
"only_include_docs_used": {
11674
-
"type": "boolean",
11675
-
"description": "Only include docs used in the completion. If not specified, this defaults to false.",
11676
-
"nullable": true
11677
-
},
11678
11673
"page_size": {
11679
11674
"type": "integer",
11680
11675
"format": "int64",
@@ -11732,6 +11727,11 @@
11732
11727
],
11733
11728
"nullable": true
11734
11729
},
11730
+
"use_agentic_search": {
11731
+
"type": "boolean",
11732
+
"description": "If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.",
11733
+
"nullable": true
11734
+
},
11735
11735
"use_group_search": {
11736
11736
"type": "boolean",
11737
11737
"description": "If use_group_search is set to true, the search will be conducted using the `search_over_groups` api. If not specified, this defaults to false.",
@@ -12766,11 +12766,6 @@
12766
12766
"description": "No result message for when there are no chunks found above the score threshold.",
12767
12767
"nullable": true
12768
12768
},
12769
-
"only_include_docs_used": {
12770
-
"type": "boolean",
12771
-
"description": "Only include docs used in the completion. If not specified, this defaults to false.",
12772
-
"nullable": true
12773
-
},
12774
12769
"page_size": {
12775
12770
"type": "integer",
12776
12771
"format": "int64",
@@ -12828,6 +12823,11 @@
12828
12823
],
12829
12824
"nullable": true
12830
12825
},
12826
+
"use_agentic_search": {
12827
+
"type": "boolean",
12828
+
"description": "If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.",
12829
+
"nullable": true
12830
+
},
12831
12831
"use_group_search": {
12832
12832
"type": "boolean",
12833
12833
"nullable": true
@@ -19323,11 +19323,6 @@
19323
19323
"description": "No result message for when there are no chunks found above the score threshold.",
19324
19324
"nullable": true
19325
19325
},
19326
-
"only_include_docs_used": {
19327
-
"type": "boolean",
19328
-
"description": "Only include docs used in the completion. If not specified, this defaults to false.",
19329
-
"nullable": true
19330
-
},
19331
19326
"page_size": {
19332
19327
"type": "integer",
19333
19328
"format": "int64",
@@ -19385,6 +19380,11 @@
19385
19380
],
19386
19381
"nullable": true
19387
19382
},
19383
+
"use_agentic_search": {
19384
+
"type": "boolean",
19385
+
"description": "If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.",
19386
+
"nullable": true
19387
+
},
19388
19388
"use_group_search": {
19389
19389
"type": "boolean",
19390
19390
"description": "If use_group_search is set to true, the search will be conducted using the `search_over_groups` api. If not specified, this defaults to false.",
Copy file name to clipboardExpand all lines: clients/ts-sdk/src/types.gen.ts
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1086,10 +1086,6 @@ export type CreateMessageReqPayload = {
1086
1086
* No result message for when there are no chunks found above the score threshold.
1087
1087
*/
1088
1088
no_result_message?: (string)|null;
1089
-
/**
1090
-
* Only include docs used in the completion. If not specified, this defaults to false.
1091
-
*/
1092
-
only_include_docs_used?: (boolean)|null;
1093
1089
/**
1094
1090
* Page size is the number of chunks to fetch during RAG. If 0, then no search will be performed. If specified, this will override the N retrievals to include in the dataset configuration. Default is None.
1095
1091
*/
@@ -1117,6 +1113,10 @@ export type CreateMessageReqPayload = {
1117
1113
*/
1118
1114
topic_id: string;
1119
1115
typo_options?: ((TypoOptions)|null);
1116
+
/**
1117
+
* If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.
1118
+
*/
1119
+
use_agentic_search?: (boolean)|null;
1120
1120
/**
1121
1121
* If use_group_search is set to true, the search will be conducted using the `search_over_groups` api. If not specified, this defaults to false.
1122
1122
*/
@@ -1594,10 +1594,6 @@ export type EditMessageReqPayload = {
1594
1594
* No result message for when there are no chunks found above the score threshold.
1595
1595
*/
1596
1596
no_result_message?: (string)|null;
1597
-
/**
1598
-
* Only include docs used in the completion. If not specified, this defaults to false.
1599
-
*/
1600
-
only_include_docs_used?: (boolean)|null;
1601
1597
/**
1602
1598
* Page size is the number of chunks to fetch during RAG. If 0, then no search will be performed. If specified, this will override the N retrievals to include in the dataset configuration. Default is None.
1603
1599
*/
@@ -1625,6 +1621,10 @@ export type EditMessageReqPayload = {
1625
1621
*/
1626
1622
topic_id: string;
1627
1623
typo_options?: ((TypoOptions)|null);
1624
+
/**
1625
+
* If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.
1626
+
*/
1627
+
use_agentic_search?: (boolean)|null;
1628
1628
use_group_search?: (boolean)|null;
1629
1629
/**
1630
1630
* If true, quoted and - prefixed words will be parsed from the queries and used as required and negated words respectively. Default is false.
@@ -3695,10 +3695,6 @@ export type RegenerateMessageReqPayload = {
3695
3695
* No result message for when there are no chunks found above the score threshold.
3696
3696
*/
3697
3697
no_result_message?: (string)|null;
3698
-
/**
3699
-
* Only include docs used in the completion. If not specified, this defaults to false.
3700
-
*/
3701
-
only_include_docs_used?: (boolean)|null;
3702
3698
/**
3703
3699
* Page size is the number of chunks to fetch during RAG. If 0, then no search will be performed. If specified, this will override the N retrievals to include in the dataset configuration. Default is None.
3704
3700
*/
@@ -3726,6 +3722,10 @@ export type RegenerateMessageReqPayload = {
3726
3722
*/
3727
3723
topic_id: string;
3728
3724
typo_options?: ((TypoOptions)|null);
3725
+
/**
3726
+
* If true, the search will be conducted using llm tool calling. If not specified, this defaults to false.
3727
+
*/
3728
+
use_agentic_search?: (boolean)|null;
3729
3729
/**
3730
3730
* If use_group_search is set to true, the search will be conducted using the `search_over_groups` api. If not specified, this defaults to false.
0 commit comments