@orq-ai/node 3.9.4 → 3.9.6

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.
Files changed (161) hide show
  1. package/README.md +2 -5
  2. package/bin/mcp-server.js +560 -866
  3. package/bin/mcp-server.js.map +36 -36
  4. package/docs/sdks/knowledge/README.md +77 -0
  5. package/examples/README.md +26 -0
  6. package/examples/contactsCreate.example.ts +40 -0
  7. package/examples/package-lock.json +626 -0
  8. package/examples/package.json +18 -0
  9. package/funcs/deploymentsStream.js +7 -7
  10. package/funcs/deploymentsStream.js.map +1 -1
  11. package/funcs/{knowledgeBasesChunkText.d.ts → knowledgeCreate.d.ts} +3 -6
  12. package/funcs/knowledgeCreate.d.ts.map +1 -0
  13. package/funcs/{knowledgeBasesChunkText.js → knowledgeCreate.js} +7 -10
  14. package/funcs/knowledgeCreate.js.map +1 -0
  15. package/jsr.json +1 -1
  16. package/lib/config.d.ts +3 -3
  17. package/lib/config.js +3 -3
  18. package/lib/event-streams.d.ts +4 -10
  19. package/lib/event-streams.d.ts.map +1 -1
  20. package/lib/event-streams.js +110 -194
  21. package/lib/event-streams.js.map +1 -1
  22. package/lib/matchers.d.ts.map +1 -1
  23. package/lib/matchers.js +1 -4
  24. package/lib/matchers.js.map +1 -1
  25. package/mcp-server/mcp-server.js +1 -1
  26. package/mcp-server/server.js +3 -3
  27. package/mcp-server/server.js.map +1 -1
  28. package/mcp-server/tools/knowledgeCreate.d.ts +8 -0
  29. package/mcp-server/tools/knowledgeCreate.d.ts.map +1 -0
  30. package/mcp-server/tools/{knowledgeBasesChunkText.js → knowledgeCreate.js} +8 -10
  31. package/mcp-server/tools/knowledgeCreate.js.map +1 -0
  32. package/models/operations/createcontact.js +2 -2
  33. package/models/operations/createdataset.js +2 -2
  34. package/models/operations/createdatasetitem.js +2 -2
  35. package/models/operations/createdatasource.js +2 -2
  36. package/models/operations/createeval.js +16 -16
  37. package/models/operations/createknowledge.d.ts +426 -0
  38. package/models/operations/createknowledge.d.ts.map +1 -0
  39. package/models/operations/createknowledge.js +431 -0
  40. package/models/operations/createknowledge.js.map +1 -0
  41. package/models/operations/fileget.js +2 -2
  42. package/models/operations/filelist.js +2 -2
  43. package/models/operations/fileupload.js +2 -2
  44. package/models/operations/getevals.js +28 -28
  45. package/models/operations/index.d.ts +1 -1
  46. package/models/operations/index.d.ts.map +1 -1
  47. package/models/operations/index.js +1 -1
  48. package/models/operations/index.js.map +1 -1
  49. package/models/operations/listcontacts.js +2 -2
  50. package/models/operations/listdatasetdatapoints.js +2 -2
  51. package/models/operations/listdatasets.js +2 -2
  52. package/models/operations/listdatasources.js +2 -2
  53. package/models/operations/retrievecontact.js +2 -2
  54. package/models/operations/retrievedatapoint.js +2 -2
  55. package/models/operations/retrievedataset.js +2 -2
  56. package/models/operations/retrievedatasource.js +2 -2
  57. package/models/operations/updatecontact.js +2 -2
  58. package/models/operations/updatedatapoint.js +2 -2
  59. package/models/operations/updatedataset.js +2 -2
  60. package/models/operations/updatedatasource.js +2 -2
  61. package/models/operations/updateeval.js +16 -16
  62. package/models/operations/updateknowledge.d.ts +106 -106
  63. package/models/operations/updateknowledge.d.ts.map +1 -1
  64. package/models/operations/updateknowledge.js +125 -129
  65. package/models/operations/updateknowledge.js.map +1 -1
  66. package/package.json +1 -1
  67. package/packages/orq-rc/examples/README.md +26 -0
  68. package/packages/orq-rc/examples/contactsCreate.example.ts +40 -0
  69. package/packages/orq-rc/examples/package-lock.json +626 -0
  70. package/packages/orq-rc/examples/package.json +18 -0
  71. package/packages/orq-rc/jsr.json +1 -1
  72. package/packages/orq-rc/package-lock.json +2 -2
  73. package/packages/orq-rc/package.json +1 -1
  74. package/packages/orq-rc/src/funcs/deploymentsStream.ts +7 -8
  75. package/packages/orq-rc/src/lib/config.ts +3 -3
  76. package/packages/orq-rc/src/lib/event-streams.ts +114 -231
  77. package/packages/orq-rc/src/lib/matchers.ts +1 -4
  78. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  79. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  80. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  81. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  85. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  87. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  88. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  89. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  90. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  91. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  94. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  95. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  96. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  97. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  100. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  101. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  102. package/sdk/knowledge.d.ts +4 -0
  103. package/sdk/knowledge.d.ts.map +1 -1
  104. package/sdk/knowledge.js +7 -0
  105. package/sdk/knowledge.js.map +1 -1
  106. package/sdk/sdk.d.ts +0 -3
  107. package/sdk/sdk.d.ts.map +1 -1
  108. package/sdk/sdk.js +0 -4
  109. package/sdk/sdk.js.map +1 -1
  110. package/src/funcs/deploymentsStream.ts +7 -8
  111. package/src/funcs/{knowledgeBasesChunkText.ts → knowledgeCreate.ts} +11 -13
  112. package/src/lib/config.ts +3 -3
  113. package/src/lib/event-streams.ts +114 -231
  114. package/src/lib/matchers.ts +1 -4
  115. package/src/mcp-server/mcp-server.ts +1 -1
  116. package/src/mcp-server/server.ts +3 -3
  117. package/src/mcp-server/tools/knowledgeCreate.ts +35 -0
  118. package/src/models/operations/createcontact.ts +2 -2
  119. package/src/models/operations/createdataset.ts +2 -2
  120. package/src/models/operations/createdatasetitem.ts +2 -2
  121. package/src/models/operations/createdatasource.ts +2 -2
  122. package/src/models/operations/createeval.ts +16 -16
  123. package/src/models/operations/createknowledge.ts +846 -0
  124. package/src/models/operations/fileget.ts +2 -2
  125. package/src/models/operations/filelist.ts +2 -2
  126. package/src/models/operations/fileupload.ts +2 -2
  127. package/src/models/operations/getevals.ts +28 -28
  128. package/src/models/operations/index.ts +1 -1
  129. package/src/models/operations/listcontacts.ts +2 -2
  130. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  131. package/src/models/operations/listdatasets.ts +2 -2
  132. package/src/models/operations/listdatasources.ts +2 -2
  133. package/src/models/operations/retrievecontact.ts +2 -2
  134. package/src/models/operations/retrievedatapoint.ts +2 -2
  135. package/src/models/operations/retrievedataset.ts +2 -2
  136. package/src/models/operations/retrievedatasource.ts +2 -2
  137. package/src/models/operations/updatecontact.ts +2 -2
  138. package/src/models/operations/updatedatapoint.ts +2 -2
  139. package/src/models/operations/updatedataset.ts +2 -2
  140. package/src/models/operations/updatedatasource.ts +2 -2
  141. package/src/models/operations/updateeval.ts +16 -16
  142. package/src/models/operations/updateknowledge.ts +266 -206
  143. package/src/sdk/knowledge.ts +15 -0
  144. package/src/sdk/sdk.ts +0 -6
  145. package/docs/sdks/knowledgebases/README.md +0 -94
  146. package/funcs/knowledgeBasesChunkText.d.ts.map +0 -1
  147. package/funcs/knowledgeBasesChunkText.js.map +0 -1
  148. package/mcp-server/tools/knowledgeBasesChunkText.d.ts +0 -8
  149. package/mcp-server/tools/knowledgeBasesChunkText.d.ts.map +0 -1
  150. package/mcp-server/tools/knowledgeBasesChunkText.js.map +0 -1
  151. package/models/operations/chunktext.d.ts +0 -961
  152. package/models/operations/chunktext.d.ts.map +0 -1
  153. package/models/operations/chunktext.js +0 -883
  154. package/models/operations/chunktext.js.map +0 -1
  155. package/sdk/knowledgebases.d.ts +0 -12
  156. package/sdk/knowledgebases.d.ts.map +0 -1
  157. package/sdk/knowledgebases.js +0 -22
  158. package/sdk/knowledgebases.js.map +0 -1
  159. package/src/mcp-server/tools/knowledgeBasesChunkText.ts +0 -37
  160. package/src/models/operations/chunktext.ts +0 -1629
  161. package/src/sdk/knowledgebases.ts +0 -27
@@ -0,0 +1,426 @@
1
+ import * as z from "zod";
2
+ import { ClosedEnum } from "../../types/enums.js";
3
+ import { Result as SafeParseResult } from "../../types/fp.js";
4
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
5
+ /**
6
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
7
+ */
8
+ export declare const RetrievalType: {
9
+ readonly VectorSearch: "vector_search";
10
+ readonly KeywordSearch: "keyword_search";
11
+ readonly HybridSearch: "hybrid_search";
12
+ };
13
+ /**
14
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
15
+ */
16
+ export type RetrievalType = ClosedEnum<typeof RetrievalType>;
17
+ /**
18
+ * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
19
+ */
20
+ export type RerankConfig = {
21
+ /**
22
+ * The threshold value used to filter the rerank results, only documents with a relevance score greater than the threshold will be returned
23
+ */
24
+ rerankThreshold?: number | undefined;
25
+ /**
26
+ * The rerank model to use for the knowledge base.
27
+ */
28
+ rerankModel: string;
29
+ };
30
+ /**
31
+ * The Agentic RAG configuration for the knowledge base. If `null` is provided, Agentic RAG will be disabled.
32
+ */
33
+ export type AgenticRagConfig = {
34
+ /**
35
+ * The model to use for the Agentic RAG
36
+ */
37
+ model: string;
38
+ };
39
+ /**
40
+ * The retrieval settings for the knowledge base. If not provider, Hybrid Search will be used as a default query strategy.
41
+ */
42
+ export type RetrievalSettings = {
43
+ /**
44
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
45
+ */
46
+ retrievalType?: RetrievalType | undefined;
47
+ /**
48
+ * The number of results to return from the search.
49
+ */
50
+ topK?: number | undefined;
51
+ /**
52
+ * The threshold value used to filter the search results, only documents with a relevance score greater than the threshold will be returned
53
+ */
54
+ threshold?: number | undefined;
55
+ /**
56
+ * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
57
+ */
58
+ rerankConfig?: RerankConfig | null | undefined;
59
+ /**
60
+ * The Agentic RAG configuration for the knowledge base. If `null` is provided, Agentic RAG will be disabled.
61
+ */
62
+ agenticRagConfig?: AgenticRagConfig | null | undefined;
63
+ };
64
+ export type CreateKnowledgeRequestBody = {
65
+ key: string;
66
+ description?: string | undefined;
67
+ /**
68
+ * The embeddings model to use for the knowledge base. This model will be used to embed the chunks when they are added to the knowledge base.
69
+ */
70
+ embeddingModel: string;
71
+ /**
72
+ * The retrieval settings for the knowledge base. If not provider, Hybrid Search will be used as a default query strategy.
73
+ */
74
+ retrievalSettings?: RetrievalSettings | undefined;
75
+ /**
76
+ * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
77
+ */
78
+ path: string;
79
+ };
80
+ /**
81
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
82
+ */
83
+ export declare const CreateKnowledgeRetrievalType: {
84
+ readonly VectorSearch: "vector_search";
85
+ readonly KeywordSearch: "keyword_search";
86
+ readonly HybridSearch: "hybrid_search";
87
+ };
88
+ /**
89
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
90
+ */
91
+ export type CreateKnowledgeRetrievalType = ClosedEnum<typeof CreateKnowledgeRetrievalType>;
92
+ /**
93
+ * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
94
+ */
95
+ export type CreateKnowledgeRerankConfig = {
96
+ /**
97
+ * The threshold value used to filter the rerank results, only documents with a relevance score greater than the threshold will be returned
98
+ */
99
+ rerankThreshold?: number | undefined;
100
+ /**
101
+ * The rerank model to use for the knowledge base.
102
+ */
103
+ rerankModel: string;
104
+ };
105
+ /**
106
+ * The Agentic RAG configuration for the knowledge base. If `null` is provided, Agentic RAG will be disabled.
107
+ */
108
+ export type CreateKnowledgeAgenticRagConfig = {
109
+ /**
110
+ * The model to use for the Agentic RAG
111
+ */
112
+ model: string;
113
+ };
114
+ /**
115
+ * The retrieval settings for the knowledge base. If not provider, Hybrid Search will be used as a default query strategy.
116
+ */
117
+ export type CreateKnowledgeRetrievalSettings = {
118
+ /**
119
+ * The retrieval type to use for the knowledge base. If not provided, Hybrid Search will be used as a default query strategy.
120
+ */
121
+ retrievalType?: CreateKnowledgeRetrievalType | undefined;
122
+ /**
123
+ * The number of results to return from the search.
124
+ */
125
+ topK?: number | undefined;
126
+ /**
127
+ * The threshold value used to filter the search results, only documents with a relevance score greater than the threshold will be returned
128
+ */
129
+ threshold?: number | undefined;
130
+ /**
131
+ * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
132
+ */
133
+ rerankConfig?: CreateKnowledgeRerankConfig | null | undefined;
134
+ /**
135
+ * The Agentic RAG configuration for the knowledge base. If `null` is provided, Agentic RAG will be disabled.
136
+ */
137
+ agenticRagConfig?: CreateKnowledgeAgenticRagConfig | null | undefined;
138
+ };
139
+ /**
140
+ * Knowledge Base object
141
+ */
142
+ export type CreateKnowledgeResponseBody = {
143
+ /**
144
+ * The unique identifier of the knowledge base.
145
+ */
146
+ id: string;
147
+ /**
148
+ * The creation date of the knowledge base.
149
+ */
150
+ created: string;
151
+ /**
152
+ * The description of the knowledge base.
153
+ */
154
+ description?: string | undefined;
155
+ /**
156
+ * The unique key of the knowledge base.
157
+ */
158
+ key: string;
159
+ /**
160
+ * The embeddings model used for the knowledge base.
161
+ */
162
+ model: string;
163
+ /**
164
+ * The project/domain ID of the knowledge base.
165
+ */
166
+ domainId: string;
167
+ /**
168
+ * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
169
+ */
170
+ path?: string | undefined;
171
+ /**
172
+ * The retrieval settings for the knowledge base. If not provider, Hybrid Search will be used as a default query strategy.
173
+ */
174
+ retrievalSettings?: CreateKnowledgeRetrievalSettings | undefined;
175
+ createdById?: string | null | undefined;
176
+ updatedById?: string | null | undefined;
177
+ /**
178
+ * The last update date of the knowledge base.
179
+ */
180
+ updated: string;
181
+ };
182
+ /** @internal */
183
+ export declare const RetrievalType$inboundSchema: z.ZodNativeEnum<typeof RetrievalType>;
184
+ /** @internal */
185
+ export declare const RetrievalType$outboundSchema: z.ZodNativeEnum<typeof RetrievalType>;
186
+ /**
187
+ * @internal
188
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
189
+ */
190
+ export declare namespace RetrievalType$ {
191
+ /** @deprecated use `RetrievalType$inboundSchema` instead. */
192
+ const inboundSchema: z.ZodNativeEnum<{
193
+ readonly VectorSearch: "vector_search";
194
+ readonly KeywordSearch: "keyword_search";
195
+ readonly HybridSearch: "hybrid_search";
196
+ }>;
197
+ /** @deprecated use `RetrievalType$outboundSchema` instead. */
198
+ const outboundSchema: z.ZodNativeEnum<{
199
+ readonly VectorSearch: "vector_search";
200
+ readonly KeywordSearch: "keyword_search";
201
+ readonly HybridSearch: "hybrid_search";
202
+ }>;
203
+ }
204
+ /** @internal */
205
+ export declare const RerankConfig$inboundSchema: z.ZodType<RerankConfig, z.ZodTypeDef, unknown>;
206
+ /** @internal */
207
+ export type RerankConfig$Outbound = {
208
+ rerank_threshold: number;
209
+ rerank_model: string;
210
+ };
211
+ /** @internal */
212
+ export declare const RerankConfig$outboundSchema: z.ZodType<RerankConfig$Outbound, z.ZodTypeDef, RerankConfig>;
213
+ /**
214
+ * @internal
215
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
216
+ */
217
+ export declare namespace RerankConfig$ {
218
+ /** @deprecated use `RerankConfig$inboundSchema` instead. */
219
+ const inboundSchema: z.ZodType<RerankConfig, z.ZodTypeDef, unknown>;
220
+ /** @deprecated use `RerankConfig$outboundSchema` instead. */
221
+ const outboundSchema: z.ZodType<RerankConfig$Outbound, z.ZodTypeDef, RerankConfig>;
222
+ /** @deprecated use `RerankConfig$Outbound` instead. */
223
+ type Outbound = RerankConfig$Outbound;
224
+ }
225
+ export declare function rerankConfigToJSON(rerankConfig: RerankConfig): string;
226
+ export declare function rerankConfigFromJSON(jsonString: string): SafeParseResult<RerankConfig, SDKValidationError>;
227
+ /** @internal */
228
+ export declare const AgenticRagConfig$inboundSchema: z.ZodType<AgenticRagConfig, z.ZodTypeDef, unknown>;
229
+ /** @internal */
230
+ export type AgenticRagConfig$Outbound = {
231
+ model: string;
232
+ };
233
+ /** @internal */
234
+ export declare const AgenticRagConfig$outboundSchema: z.ZodType<AgenticRagConfig$Outbound, z.ZodTypeDef, AgenticRagConfig>;
235
+ /**
236
+ * @internal
237
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
238
+ */
239
+ export declare namespace AgenticRagConfig$ {
240
+ /** @deprecated use `AgenticRagConfig$inboundSchema` instead. */
241
+ const inboundSchema: z.ZodType<AgenticRagConfig, z.ZodTypeDef, unknown>;
242
+ /** @deprecated use `AgenticRagConfig$outboundSchema` instead. */
243
+ const outboundSchema: z.ZodType<AgenticRagConfig$Outbound, z.ZodTypeDef, AgenticRagConfig>;
244
+ /** @deprecated use `AgenticRagConfig$Outbound` instead. */
245
+ type Outbound = AgenticRagConfig$Outbound;
246
+ }
247
+ export declare function agenticRagConfigToJSON(agenticRagConfig: AgenticRagConfig): string;
248
+ export declare function agenticRagConfigFromJSON(jsonString: string): SafeParseResult<AgenticRagConfig, SDKValidationError>;
249
+ /** @internal */
250
+ export declare const RetrievalSettings$inboundSchema: z.ZodType<RetrievalSettings, z.ZodTypeDef, unknown>;
251
+ /** @internal */
252
+ export type RetrievalSettings$Outbound = {
253
+ retrieval_type: string;
254
+ top_k: number;
255
+ threshold: number;
256
+ rerank_config?: RerankConfig$Outbound | null | undefined;
257
+ agentic_rag_config?: AgenticRagConfig$Outbound | null | undefined;
258
+ };
259
+ /** @internal */
260
+ export declare const RetrievalSettings$outboundSchema: z.ZodType<RetrievalSettings$Outbound, z.ZodTypeDef, RetrievalSettings>;
261
+ /**
262
+ * @internal
263
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
264
+ */
265
+ export declare namespace RetrievalSettings$ {
266
+ /** @deprecated use `RetrievalSettings$inboundSchema` instead. */
267
+ const inboundSchema: z.ZodType<RetrievalSettings, z.ZodTypeDef, unknown>;
268
+ /** @deprecated use `RetrievalSettings$outboundSchema` instead. */
269
+ const outboundSchema: z.ZodType<RetrievalSettings$Outbound, z.ZodTypeDef, RetrievalSettings>;
270
+ /** @deprecated use `RetrievalSettings$Outbound` instead. */
271
+ type Outbound = RetrievalSettings$Outbound;
272
+ }
273
+ export declare function retrievalSettingsToJSON(retrievalSettings: RetrievalSettings): string;
274
+ export declare function retrievalSettingsFromJSON(jsonString: string): SafeParseResult<RetrievalSettings, SDKValidationError>;
275
+ /** @internal */
276
+ export declare const CreateKnowledgeRequestBody$inboundSchema: z.ZodType<CreateKnowledgeRequestBody, z.ZodTypeDef, unknown>;
277
+ /** @internal */
278
+ export type CreateKnowledgeRequestBody$Outbound = {
279
+ key: string;
280
+ description?: string | undefined;
281
+ embedding_model: string;
282
+ retrieval_settings?: RetrievalSettings$Outbound | undefined;
283
+ path: string;
284
+ };
285
+ /** @internal */
286
+ export declare const CreateKnowledgeRequestBody$outboundSchema: z.ZodType<CreateKnowledgeRequestBody$Outbound, z.ZodTypeDef, CreateKnowledgeRequestBody>;
287
+ /**
288
+ * @internal
289
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
290
+ */
291
+ export declare namespace CreateKnowledgeRequestBody$ {
292
+ /** @deprecated use `CreateKnowledgeRequestBody$inboundSchema` instead. */
293
+ const inboundSchema: z.ZodType<CreateKnowledgeRequestBody, z.ZodTypeDef, unknown>;
294
+ /** @deprecated use `CreateKnowledgeRequestBody$outboundSchema` instead. */
295
+ const outboundSchema: z.ZodType<CreateKnowledgeRequestBody$Outbound, z.ZodTypeDef, CreateKnowledgeRequestBody>;
296
+ /** @deprecated use `CreateKnowledgeRequestBody$Outbound` instead. */
297
+ type Outbound = CreateKnowledgeRequestBody$Outbound;
298
+ }
299
+ export declare function createKnowledgeRequestBodyToJSON(createKnowledgeRequestBody: CreateKnowledgeRequestBody): string;
300
+ export declare function createKnowledgeRequestBodyFromJSON(jsonString: string): SafeParseResult<CreateKnowledgeRequestBody, SDKValidationError>;
301
+ /** @internal */
302
+ export declare const CreateKnowledgeRetrievalType$inboundSchema: z.ZodNativeEnum<typeof CreateKnowledgeRetrievalType>;
303
+ /** @internal */
304
+ export declare const CreateKnowledgeRetrievalType$outboundSchema: z.ZodNativeEnum<typeof CreateKnowledgeRetrievalType>;
305
+ /**
306
+ * @internal
307
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
308
+ */
309
+ export declare namespace CreateKnowledgeRetrievalType$ {
310
+ /** @deprecated use `CreateKnowledgeRetrievalType$inboundSchema` instead. */
311
+ const inboundSchema: z.ZodNativeEnum<{
312
+ readonly VectorSearch: "vector_search";
313
+ readonly KeywordSearch: "keyword_search";
314
+ readonly HybridSearch: "hybrid_search";
315
+ }>;
316
+ /** @deprecated use `CreateKnowledgeRetrievalType$outboundSchema` instead. */
317
+ const outboundSchema: z.ZodNativeEnum<{
318
+ readonly VectorSearch: "vector_search";
319
+ readonly KeywordSearch: "keyword_search";
320
+ readonly HybridSearch: "hybrid_search";
321
+ }>;
322
+ }
323
+ /** @internal */
324
+ export declare const CreateKnowledgeRerankConfig$inboundSchema: z.ZodType<CreateKnowledgeRerankConfig, z.ZodTypeDef, unknown>;
325
+ /** @internal */
326
+ export type CreateKnowledgeRerankConfig$Outbound = {
327
+ rerank_threshold: number;
328
+ rerank_model: string;
329
+ };
330
+ /** @internal */
331
+ export declare const CreateKnowledgeRerankConfig$outboundSchema: z.ZodType<CreateKnowledgeRerankConfig$Outbound, z.ZodTypeDef, CreateKnowledgeRerankConfig>;
332
+ /**
333
+ * @internal
334
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
335
+ */
336
+ export declare namespace CreateKnowledgeRerankConfig$ {
337
+ /** @deprecated use `CreateKnowledgeRerankConfig$inboundSchema` instead. */
338
+ const inboundSchema: z.ZodType<CreateKnowledgeRerankConfig, z.ZodTypeDef, unknown>;
339
+ /** @deprecated use `CreateKnowledgeRerankConfig$outboundSchema` instead. */
340
+ const outboundSchema: z.ZodType<CreateKnowledgeRerankConfig$Outbound, z.ZodTypeDef, CreateKnowledgeRerankConfig>;
341
+ /** @deprecated use `CreateKnowledgeRerankConfig$Outbound` instead. */
342
+ type Outbound = CreateKnowledgeRerankConfig$Outbound;
343
+ }
344
+ export declare function createKnowledgeRerankConfigToJSON(createKnowledgeRerankConfig: CreateKnowledgeRerankConfig): string;
345
+ export declare function createKnowledgeRerankConfigFromJSON(jsonString: string): SafeParseResult<CreateKnowledgeRerankConfig, SDKValidationError>;
346
+ /** @internal */
347
+ export declare const CreateKnowledgeAgenticRagConfig$inboundSchema: z.ZodType<CreateKnowledgeAgenticRagConfig, z.ZodTypeDef, unknown>;
348
+ /** @internal */
349
+ export type CreateKnowledgeAgenticRagConfig$Outbound = {
350
+ model: string;
351
+ };
352
+ /** @internal */
353
+ export declare const CreateKnowledgeAgenticRagConfig$outboundSchema: z.ZodType<CreateKnowledgeAgenticRagConfig$Outbound, z.ZodTypeDef, CreateKnowledgeAgenticRagConfig>;
354
+ /**
355
+ * @internal
356
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
357
+ */
358
+ export declare namespace CreateKnowledgeAgenticRagConfig$ {
359
+ /** @deprecated use `CreateKnowledgeAgenticRagConfig$inboundSchema` instead. */
360
+ const inboundSchema: z.ZodType<CreateKnowledgeAgenticRagConfig, z.ZodTypeDef, unknown>;
361
+ /** @deprecated use `CreateKnowledgeAgenticRagConfig$outboundSchema` instead. */
362
+ const outboundSchema: z.ZodType<CreateKnowledgeAgenticRagConfig$Outbound, z.ZodTypeDef, CreateKnowledgeAgenticRagConfig>;
363
+ /** @deprecated use `CreateKnowledgeAgenticRagConfig$Outbound` instead. */
364
+ type Outbound = CreateKnowledgeAgenticRagConfig$Outbound;
365
+ }
366
+ export declare function createKnowledgeAgenticRagConfigToJSON(createKnowledgeAgenticRagConfig: CreateKnowledgeAgenticRagConfig): string;
367
+ export declare function createKnowledgeAgenticRagConfigFromJSON(jsonString: string): SafeParseResult<CreateKnowledgeAgenticRagConfig, SDKValidationError>;
368
+ /** @internal */
369
+ export declare const CreateKnowledgeRetrievalSettings$inboundSchema: z.ZodType<CreateKnowledgeRetrievalSettings, z.ZodTypeDef, unknown>;
370
+ /** @internal */
371
+ export type CreateKnowledgeRetrievalSettings$Outbound = {
372
+ retrieval_type: string;
373
+ top_k: number;
374
+ threshold: number;
375
+ rerank_config?: CreateKnowledgeRerankConfig$Outbound | null | undefined;
376
+ agentic_rag_config?: CreateKnowledgeAgenticRagConfig$Outbound | null | undefined;
377
+ };
378
+ /** @internal */
379
+ export declare const CreateKnowledgeRetrievalSettings$outboundSchema: z.ZodType<CreateKnowledgeRetrievalSettings$Outbound, z.ZodTypeDef, CreateKnowledgeRetrievalSettings>;
380
+ /**
381
+ * @internal
382
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
383
+ */
384
+ export declare namespace CreateKnowledgeRetrievalSettings$ {
385
+ /** @deprecated use `CreateKnowledgeRetrievalSettings$inboundSchema` instead. */
386
+ const inboundSchema: z.ZodType<CreateKnowledgeRetrievalSettings, z.ZodTypeDef, unknown>;
387
+ /** @deprecated use `CreateKnowledgeRetrievalSettings$outboundSchema` instead. */
388
+ const outboundSchema: z.ZodType<CreateKnowledgeRetrievalSettings$Outbound, z.ZodTypeDef, CreateKnowledgeRetrievalSettings>;
389
+ /** @deprecated use `CreateKnowledgeRetrievalSettings$Outbound` instead. */
390
+ type Outbound = CreateKnowledgeRetrievalSettings$Outbound;
391
+ }
392
+ export declare function createKnowledgeRetrievalSettingsToJSON(createKnowledgeRetrievalSettings: CreateKnowledgeRetrievalSettings): string;
393
+ export declare function createKnowledgeRetrievalSettingsFromJSON(jsonString: string): SafeParseResult<CreateKnowledgeRetrievalSettings, SDKValidationError>;
394
+ /** @internal */
395
+ export declare const CreateKnowledgeResponseBody$inboundSchema: z.ZodType<CreateKnowledgeResponseBody, z.ZodTypeDef, unknown>;
396
+ /** @internal */
397
+ export type CreateKnowledgeResponseBody$Outbound = {
398
+ _id: string;
399
+ created: string;
400
+ description?: string | undefined;
401
+ key: string;
402
+ model: string;
403
+ domain_id: string;
404
+ path?: string | undefined;
405
+ retrieval_settings?: CreateKnowledgeRetrievalSettings$Outbound | undefined;
406
+ created_by_id?: string | null | undefined;
407
+ updated_by_id?: string | null | undefined;
408
+ updated: string;
409
+ };
410
+ /** @internal */
411
+ export declare const CreateKnowledgeResponseBody$outboundSchema: z.ZodType<CreateKnowledgeResponseBody$Outbound, z.ZodTypeDef, CreateKnowledgeResponseBody>;
412
+ /**
413
+ * @internal
414
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
415
+ */
416
+ export declare namespace CreateKnowledgeResponseBody$ {
417
+ /** @deprecated use `CreateKnowledgeResponseBody$inboundSchema` instead. */
418
+ const inboundSchema: z.ZodType<CreateKnowledgeResponseBody, z.ZodTypeDef, unknown>;
419
+ /** @deprecated use `CreateKnowledgeResponseBody$outboundSchema` instead. */
420
+ const outboundSchema: z.ZodType<CreateKnowledgeResponseBody$Outbound, z.ZodTypeDef, CreateKnowledgeResponseBody>;
421
+ /** @deprecated use `CreateKnowledgeResponseBody$Outbound` instead. */
422
+ type Outbound = CreateKnowledgeResponseBody$Outbound;
423
+ }
424
+ export declare function createKnowledgeResponseBodyToJSON(createKnowledgeResponseBody: CreateKnowledgeResponseBody): string;
425
+ export declare function createKnowledgeResponseBodyFromJSON(jsonString: string): SafeParseResult<CreateKnowledgeResponseBody, SDKValidationError>;
426
+ //# sourceMappingURL=createknowledge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createknowledge.d.ts","sourceRoot":"","sources":["../../src/models/operations/createknowledge.ts"],"names":[],"mappings":"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"}