@reminix/sdk 0.12.0 → 0.13.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.
Files changed (114) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/client.d.mts +8 -2
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +8 -2
  5. package/client.d.ts.map +1 -1
  6. package/client.js +6 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +6 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/agents.d.mts +92 -4
  12. package/resources/agents.d.mts.map +1 -1
  13. package/resources/agents.d.ts +92 -4
  14. package/resources/agents.d.ts.map +1 -1
  15. package/resources/execution-logs.d.mts +3 -3
  16. package/resources/execution-logs.d.mts.map +1 -1
  17. package/resources/execution-logs.d.ts +3 -3
  18. package/resources/execution-logs.d.ts.map +1 -1
  19. package/resources/execution-logs.js +1 -1
  20. package/resources/execution-logs.mjs +1 -1
  21. package/resources/index.d.mts +3 -1
  22. package/resources/index.d.mts.map +1 -1
  23. package/resources/index.d.ts +3 -1
  24. package/resources/index.d.ts.map +1 -1
  25. package/resources/index.js +5 -1
  26. package/resources/index.js.map +1 -1
  27. package/resources/index.mjs +2 -0
  28. package/resources/index.mjs.map +1 -1
  29. package/resources/knowledge/collections/collections.d.mts +89 -0
  30. package/resources/knowledge/collections/collections.d.mts.map +1 -0
  31. package/resources/knowledge/collections/collections.d.ts +89 -0
  32. package/resources/knowledge/collections/collections.d.ts.map +1 -0
  33. package/resources/knowledge/collections/collections.js +56 -0
  34. package/resources/knowledge/collections/collections.js.map +1 -0
  35. package/resources/knowledge/collections/collections.mjs +51 -0
  36. package/resources/knowledge/collections/collections.mjs.map +1 -0
  37. package/resources/knowledge/collections/documents.d.mts +121 -0
  38. package/resources/knowledge/collections/documents.d.mts.map +1 -0
  39. package/resources/knowledge/collections/documents.d.ts +121 -0
  40. package/resources/knowledge/collections/documents.d.ts.map +1 -0
  41. package/resources/knowledge/collections/documents.js +62 -0
  42. package/resources/knowledge/collections/documents.js.map +1 -0
  43. package/resources/knowledge/collections/documents.mjs +58 -0
  44. package/resources/knowledge/collections/documents.mjs.map +1 -0
  45. package/resources/knowledge/collections/index.d.mts +3 -0
  46. package/resources/knowledge/collections/index.d.mts.map +1 -0
  47. package/resources/knowledge/collections/index.d.ts +3 -0
  48. package/resources/knowledge/collections/index.d.ts.map +1 -0
  49. package/resources/knowledge/collections/index.js +9 -0
  50. package/resources/knowledge/collections/index.js.map +1 -0
  51. package/resources/knowledge/collections/index.mjs +4 -0
  52. package/resources/knowledge/collections/index.mjs.map +1 -0
  53. package/resources/knowledge/collections.d.mts +2 -0
  54. package/resources/knowledge/collections.d.mts.map +1 -0
  55. package/resources/knowledge/collections.d.ts +2 -0
  56. package/resources/knowledge/collections.d.ts.map +1 -0
  57. package/resources/knowledge/collections.js +6 -0
  58. package/resources/knowledge/collections.js.map +1 -0
  59. package/resources/knowledge/collections.mjs +3 -0
  60. package/resources/knowledge/collections.mjs.map +1 -0
  61. package/resources/knowledge/index.d.mts +3 -0
  62. package/resources/knowledge/index.d.mts.map +1 -0
  63. package/resources/knowledge/index.d.ts +3 -0
  64. package/resources/knowledge/index.d.ts.map +1 -0
  65. package/resources/knowledge/index.js +9 -0
  66. package/resources/knowledge/index.js.map +1 -0
  67. package/resources/knowledge/index.mjs +4 -0
  68. package/resources/knowledge/index.mjs.map +1 -0
  69. package/resources/knowledge/knowledge.d.mts +65 -0
  70. package/resources/knowledge/knowledge.d.mts.map +1 -0
  71. package/resources/knowledge/knowledge.d.ts +65 -0
  72. package/resources/knowledge/knowledge.d.ts.map +1 -0
  73. package/resources/knowledge/knowledge.js +26 -0
  74. package/resources/knowledge/knowledge.js.map +1 -0
  75. package/resources/knowledge/knowledge.mjs +21 -0
  76. package/resources/knowledge/knowledge.mjs.map +1 -0
  77. package/resources/knowledge.d.mts +2 -0
  78. package/resources/knowledge.d.mts.map +1 -0
  79. package/resources/knowledge.d.ts +2 -0
  80. package/resources/knowledge.d.ts.map +1 -0
  81. package/resources/knowledge.js +6 -0
  82. package/resources/knowledge.js.map +1 -0
  83. package/resources/knowledge.mjs +3 -0
  84. package/resources/knowledge.mjs.map +1 -0
  85. package/resources/memory.d.mts +148 -0
  86. package/resources/memory.d.mts.map +1 -0
  87. package/resources/memory.d.ts +148 -0
  88. package/resources/memory.d.ts.map +1 -0
  89. package/resources/memory.js +82 -0
  90. package/resources/memory.js.map +1 -0
  91. package/resources/memory.mjs +78 -0
  92. package/resources/memory.mjs.map +1 -0
  93. package/resources/tools.d.mts +60 -2
  94. package/resources/tools.d.mts.map +1 -1
  95. package/resources/tools.d.ts +60 -2
  96. package/resources/tools.d.ts.map +1 -1
  97. package/src/client.ts +30 -0
  98. package/src/resources/agents.ts +108 -3
  99. package/src/resources/execution-logs.ts +3 -3
  100. package/src/resources/index.ts +10 -0
  101. package/src/resources/knowledge/collections/collections.ts +167 -0
  102. package/src/resources/knowledge/collections/documents.ts +200 -0
  103. package/src/resources/knowledge/collections/index.ts +22 -0
  104. package/src/resources/knowledge/collections.ts +3 -0
  105. package/src/resources/knowledge/index.ts +11 -0
  106. package/src/resources/knowledge/knowledge.ts +101 -0
  107. package/src/resources/knowledge.ts +3 -0
  108. package/src/resources/memory.ts +188 -0
  109. package/src/resources/tools.ts +70 -2
  110. package/src/version.ts +1 -1
  111. package/version.d.mts +1 -1
  112. package/version.d.ts +1 -1
  113. package/version.js +1 -1
  114. package/version.mjs +1 -1
@@ -103,22 +103,80 @@ export declare namespace Tool {
103
103
  * JSON Schema for agent input parameters
104
104
  */
105
105
  interface Output {
106
- type: string;
106
+ /**
107
+ * Default value for the property
108
+ */
109
+ default?: unknown;
110
+ /**
111
+ * Description of the schema
112
+ */
113
+ description?: string;
114
+ /**
115
+ * Enumeration of allowed values
116
+ */
117
+ enum?: Array<unknown>;
118
+ /**
119
+ * Schema for array items
120
+ */
121
+ items?: unknown;
122
+ /**
123
+ * Property definitions for object types
124
+ */
107
125
  properties?: {
108
126
  [key: string]: unknown;
109
127
  };
128
+ /**
129
+ * List of required property names
130
+ */
110
131
  required?: Array<string>;
132
+ /**
133
+ * Human-readable title
134
+ */
135
+ title?: string;
136
+ /**
137
+ * JSON Schema type (e.g., "object", "string", "array")
138
+ */
139
+ type?: string;
111
140
  [k: string]: unknown;
112
141
  }
113
142
  /**
114
143
  * JSON Schema for agent input parameters
115
144
  */
116
145
  interface Parameters {
117
- type: string;
146
+ /**
147
+ * Default value for the property
148
+ */
149
+ default?: unknown;
150
+ /**
151
+ * Description of the schema
152
+ */
153
+ description?: string;
154
+ /**
155
+ * Enumeration of allowed values
156
+ */
157
+ enum?: Array<unknown>;
158
+ /**
159
+ * Schema for array items
160
+ */
161
+ items?: unknown;
162
+ /**
163
+ * Property definitions for object types
164
+ */
118
165
  properties?: {
119
166
  [key: string]: unknown;
120
167
  };
168
+ /**
169
+ * List of required property names
170
+ */
121
171
  required?: Array<string>;
172
+ /**
173
+ * Human-readable title
174
+ */
175
+ title?: string;
176
+ /**
177
+ * JSON Schema type (e.g., "object", "string", "array")
178
+ */
179
+ type?: string;
122
180
  [k: string]: unknown;
123
181
  }
124
182
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.mts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tools.d.mts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"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"}
@@ -103,22 +103,80 @@ export declare namespace Tool {
103
103
  * JSON Schema for agent input parameters
104
104
  */
105
105
  interface Output {
106
- type: string;
106
+ /**
107
+ * Default value for the property
108
+ */
109
+ default?: unknown;
110
+ /**
111
+ * Description of the schema
112
+ */
113
+ description?: string;
114
+ /**
115
+ * Enumeration of allowed values
116
+ */
117
+ enum?: Array<unknown>;
118
+ /**
119
+ * Schema for array items
120
+ */
121
+ items?: unknown;
122
+ /**
123
+ * Property definitions for object types
124
+ */
107
125
  properties?: {
108
126
  [key: string]: unknown;
109
127
  };
128
+ /**
129
+ * List of required property names
130
+ */
110
131
  required?: Array<string>;
132
+ /**
133
+ * Human-readable title
134
+ */
135
+ title?: string;
136
+ /**
137
+ * JSON Schema type (e.g., "object", "string", "array")
138
+ */
139
+ type?: string;
111
140
  [k: string]: unknown;
112
141
  }
113
142
  /**
114
143
  * JSON Schema for agent input parameters
115
144
  */
116
145
  interface Parameters {
117
- type: string;
146
+ /**
147
+ * Default value for the property
148
+ */
149
+ default?: unknown;
150
+ /**
151
+ * Description of the schema
152
+ */
153
+ description?: string;
154
+ /**
155
+ * Enumeration of allowed values
156
+ */
157
+ enum?: Array<unknown>;
158
+ /**
159
+ * Schema for array items
160
+ */
161
+ items?: unknown;
162
+ /**
163
+ * Property definitions for object types
164
+ */
118
165
  properties?: {
119
166
  [key: string]: unknown;
120
167
  };
168
+ /**
169
+ * List of required property names
170
+ */
121
171
  required?: Array<string>;
172
+ /**
173
+ * Human-readable title
174
+ */
175
+ title?: string;
176
+ /**
177
+ * JSON Schema type (e.g., "object", "string", "array")
178
+ */
179
+ type?: string;
122
180
  [k: string]: unknown;
123
181
  }
124
182
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"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"}
package/src/client.ts CHANGED
@@ -29,7 +29,9 @@ import {
29
29
  AgentInvokeParamsNonStreaming,
30
30
  AgentInvokeParamsStreaming,
31
31
  AgentInvokeResponse,
32
+ AgentKnowledgeBaseConfig,
32
33
  AgentListParams,
34
+ AgentMemoryConfig,
33
35
  Agents,
34
36
  AgentsCursor,
35
37
  ChatMessage,
@@ -49,6 +51,13 @@ import {
49
51
  ExecutionLogs,
50
52
  ExecutionLogsCursor,
51
53
  } from './resources/execution-logs';
54
+ import {
55
+ Memory,
56
+ MemoryDeleteAllResponse,
57
+ MemoryListResponse,
58
+ MemoryResource,
59
+ MemoryStoreParams,
60
+ } from './resources/memory';
52
61
  import { Project, Projects } from './resources/projects';
53
62
  import {
54
63
  Tool,
@@ -58,6 +67,7 @@ import {
58
67
  Tools,
59
68
  ToolsCursor,
60
69
  } from './resources/tools';
70
+ import { Knowledge, KnowledgeSearchParams, KnowledgeSearchResponse } from './resources/knowledge/knowledge';
61
71
  import { type Fetch } from './internal/builtin-types';
62
72
  import { HeadersLike, NullableHeaders, buildHeaders } from './internal/headers';
63
73
  import { FinalRequestOptions, RequestOptions } from './internal/request-options';
@@ -781,6 +791,8 @@ export class Reminix {
781
791
  clientTokens: API.ClientTokens = new API.ClientTokens(this);
782
792
  executionLogs: API.ExecutionLogs = new API.ExecutionLogs(this);
783
793
  conversations: API.Conversations = new API.Conversations(this);
794
+ memory: API.MemoryResource = new API.MemoryResource(this);
795
+ knowledge: API.Knowledge = new API.Knowledge(this);
784
796
  }
785
797
 
786
798
  Reminix.Projects = Projects;
@@ -789,6 +801,8 @@ Reminix.Tools = Tools;
789
801
  Reminix.ClientTokens = ClientTokens;
790
802
  Reminix.ExecutionLogs = ExecutionLogs;
791
803
  Reminix.Conversations = Conversations;
804
+ Reminix.MemoryResource = MemoryResource;
805
+ Reminix.Knowledge = Knowledge;
792
806
 
793
807
  export declare namespace Reminix {
794
808
  export type RequestOptions = Opts.RequestOptions;
@@ -802,6 +816,8 @@ export declare namespace Reminix {
802
816
  Agents as Agents,
803
817
  type Agent as Agent,
804
818
  type AgentConfig as AgentConfig,
819
+ type AgentKnowledgeBaseConfig as AgentKnowledgeBaseConfig,
820
+ type AgentMemoryConfig as AgentMemoryConfig,
805
821
  type ChatMessage as ChatMessage,
806
822
  type StreamChunk as StreamChunk,
807
823
  type AgentChatResponse as AgentChatResponse,
@@ -845,4 +861,18 @@ export declare namespace Reminix {
845
861
  type ConversationsCursor as ConversationsCursor,
846
862
  type ConversationListParams as ConversationListParams,
847
863
  };
864
+
865
+ export {
866
+ MemoryResource as MemoryResource,
867
+ type Memory as Memory,
868
+ type MemoryListResponse as MemoryListResponse,
869
+ type MemoryDeleteAllResponse as MemoryDeleteAllResponse,
870
+ type MemoryStoreParams as MemoryStoreParams,
871
+ };
872
+
873
+ export {
874
+ Knowledge as Knowledge,
875
+ type KnowledgeSearchResponse as KnowledgeSearchResponse,
876
+ type KnowledgeSearchParams as KnowledgeSearchParams,
877
+ };
848
878
  }
@@ -42,7 +42,7 @@ export class Agents extends APIResource {
42
42
  /**
43
43
  * Send a chat message to an agent and receive a response.
44
44
  *
45
- * **Supported Agents:** Managed agents only. Custom agents should use the /execute
45
+ * **Supported Agents:** Managed agents only. Custom agents should use the /invoke
46
46
  * endpoint.
47
47
  *
48
48
  * **Tool Calls:** Messages support the OpenAI tool calling format:
@@ -238,12 +238,46 @@ export namespace Agent {
238
238
  * JSON Schema for agent input parameters
239
239
  */
240
240
  export interface Output {
241
- type: string;
241
+ /**
242
+ * Default value for the property
243
+ */
244
+ default?: unknown;
245
+
246
+ /**
247
+ * Description of the schema
248
+ */
249
+ description?: string;
250
+
251
+ /**
252
+ * Enumeration of allowed values
253
+ */
254
+ enum?: Array<unknown>;
242
255
 
256
+ /**
257
+ * Schema for array items
258
+ */
259
+ items?: unknown;
260
+
261
+ /**
262
+ * Property definitions for object types
263
+ */
243
264
  properties?: { [key: string]: unknown };
244
265
 
266
+ /**
267
+ * List of required property names
268
+ */
245
269
  required?: Array<string>;
246
270
 
271
+ /**
272
+ * Human-readable title
273
+ */
274
+ title?: string;
275
+
276
+ /**
277
+ * JSON Schema type (e.g., "object", "string", "array")
278
+ */
279
+ type?: string;
280
+
247
281
  [k: string]: unknown;
248
282
  }
249
283
 
@@ -251,12 +285,46 @@ export namespace Agent {
251
285
  * JSON Schema for agent input parameters
252
286
  */
253
287
  export interface Parameters {
254
- type: string;
288
+ /**
289
+ * Default value for the property
290
+ */
291
+ default?: unknown;
292
+
293
+ /**
294
+ * Description of the schema
295
+ */
296
+ description?: string;
297
+
298
+ /**
299
+ * Enumeration of allowed values
300
+ */
301
+ enum?: Array<unknown>;
302
+
303
+ /**
304
+ * Schema for array items
305
+ */
306
+ items?: unknown;
255
307
 
308
+ /**
309
+ * Property definitions for object types
310
+ */
256
311
  properties?: { [key: string]: unknown };
257
312
 
313
+ /**
314
+ * List of required property names
315
+ */
258
316
  required?: Array<string>;
259
317
 
318
+ /**
319
+ * Human-readable title
320
+ */
321
+ title?: string;
322
+
323
+ /**
324
+ * JSON Schema type (e.g., "object", "string", "array")
325
+ */
326
+ type?: string;
327
+
260
328
  [k: string]: unknown;
261
329
  }
262
330
  }
@@ -285,17 +353,52 @@ export interface AgentConfig {
285
353
  */
286
354
  tools: Array<string>;
287
355
 
356
+ /**
357
+ * Knowledge base feature configuration
358
+ */
359
+ knowledgeBase?: AgentKnowledgeBaseConfig;
360
+
288
361
  /**
289
362
  * Maximum tool call iterations
290
363
  */
291
364
  maxIterations?: number;
292
365
 
366
+ /**
367
+ * Memory feature configuration
368
+ */
369
+ memory?: AgentMemoryConfig;
370
+
293
371
  /**
294
372
  * Whether to require approval for tool calls
295
373
  */
296
374
  requireApproval?: boolean;
297
375
  }
298
376
 
377
+ /**
378
+ * Knowledge base feature configuration
379
+ */
380
+ export interface AgentKnowledgeBaseConfig {
381
+ /**
382
+ * Collection IDs to search
383
+ */
384
+ collectionIds: Array<string>;
385
+
386
+ /**
387
+ * Whether knowledge base is enabled for this agent
388
+ */
389
+ enabled: boolean;
390
+ }
391
+
392
+ /**
393
+ * Memory feature configuration
394
+ */
395
+ export interface AgentMemoryConfig {
396
+ /**
397
+ * Whether memory is enabled for this agent
398
+ */
399
+ enabled: boolean;
400
+ }
401
+
299
402
  export interface ChatMessage {
300
403
  /**
301
404
  * Message content. Can be string, array (multimodal), object (tool), or null (when
@@ -505,6 +608,8 @@ export declare namespace Agents {
505
608
  export {
506
609
  type Agent as Agent,
507
610
  type AgentConfig as AgentConfig,
611
+ type AgentKnowledgeBaseConfig as AgentKnowledgeBaseConfig,
612
+ type AgentMemoryConfig as AgentMemoryConfig,
508
613
  type ChatMessage as ChatMessage,
509
614
  type StreamChunk as StreamChunk,
510
615
  type AgentChatResponse as AgentChatResponse,
@@ -22,7 +22,7 @@ export class ExecutionLogs extends APIResource {
22
22
  *
23
23
  * **Filters:**
24
24
  *
25
- * - `type`: Filter by execution type (agent_execute, tool_execute)
25
+ * - `type`: Filter by execution type (agent_invoke, agent_chat, tool_call)
26
26
  * - `source`: Filter by request source (api, cli, dashboard, widget, sdk)
27
27
  * - `name`: Filter by agent or tool name
28
28
  * - `status`: Filter by result status (success, error, timeout)
@@ -81,7 +81,7 @@ export interface ExecutionLog {
81
81
  /**
82
82
  * Type of execution
83
83
  */
84
- type: 'agent_execute' | 'agent_chat' | 'tool_execute';
84
+ type: 'agent_invoke' | 'agent_chat' | 'tool_call';
85
85
 
86
86
  /**
87
87
  * Input parameters
@@ -113,7 +113,7 @@ export interface ExecutionLogListParams extends CursorParams {
113
113
  /**
114
114
  * Filter by execution type
115
115
  */
116
- type?: 'agent_execute' | 'agent_chat' | 'tool_execute';
116
+ type?: 'agent_invoke' | 'agent_chat' | 'tool_call';
117
117
  }
118
118
 
119
119
  export declare namespace ExecutionLogs {
@@ -4,6 +4,8 @@ export {
4
4
  Agents,
5
5
  type Agent,
6
6
  type AgentConfig,
7
+ type AgentKnowledgeBaseConfig,
8
+ type AgentMemoryConfig,
7
9
  type ChatMessage,
8
10
  type StreamChunk,
9
11
  type AgentChatResponse,
@@ -31,6 +33,14 @@ export {
31
33
  type ExecutionLogListParams,
32
34
  type ExecutionLogsCursor,
33
35
  } from './execution-logs';
36
+ export { Knowledge, type KnowledgeSearchResponse, type KnowledgeSearchParams } from './knowledge/knowledge';
37
+ export {
38
+ MemoryResource,
39
+ type Memory,
40
+ type MemoryListResponse,
41
+ type MemoryDeleteAllResponse,
42
+ type MemoryStoreParams,
43
+ } from './memory';
34
44
  export { Projects, type Project } from './projects';
35
45
  export {
36
46
  Tools,
@@ -0,0 +1,167 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../../../core/resource';
4
+ import * as DocumentsAPI from './documents';
5
+ import {
6
+ DocumentDeleteParams,
7
+ DocumentListParams,
8
+ DocumentProcessParams,
9
+ DocumentProcessResponse,
10
+ DocumentRetrieveParams,
11
+ DocumentUploadParams,
12
+ DocumentUploadResponse,
13
+ Documents,
14
+ KnowledgeDocument,
15
+ KnowledgeDocumentsCursor,
16
+ } from './documents';
17
+ import { APIPromise } from '../../../core/api-promise';
18
+ import { Cursor, type CursorParams, PagePromise } from '../../../core/pagination';
19
+ import { buildHeaders } from '../../../internal/headers';
20
+ import { RequestOptions } from '../../../internal/request-options';
21
+ import { path } from '../../../internal/utils/path';
22
+
23
+ export class Collections extends APIResource {
24
+ documents: DocumentsAPI.Documents = new DocumentsAPI.Documents(this._client);
25
+
26
+ /**
27
+ * Create a new knowledge collection for storing documents.
28
+ */
29
+ create(body: CollectionCreateParams, options?: RequestOptions): APIPromise<KnowledgeCollection> {
30
+ return this._client.post('/knowledge/collections', { body, ...options });
31
+ }
32
+
33
+ /**
34
+ * Get details of a knowledge collection including document stats.
35
+ */
36
+ retrieve(id: string, options?: RequestOptions): APIPromise<KnowledgeCollection> {
37
+ return this._client.get(path`/knowledge/collections/${id}`, options);
38
+ }
39
+
40
+ /**
41
+ * Update a knowledge collection name or description.
42
+ */
43
+ update(
44
+ id: string,
45
+ body: CollectionUpdateParams | null | undefined = {},
46
+ options?: RequestOptions,
47
+ ): APIPromise<KnowledgeCollection> {
48
+ return this._client.patch(path`/knowledge/collections/${id}`, { body, ...options });
49
+ }
50
+
51
+ /**
52
+ * List all knowledge collections for the project.
53
+ */
54
+ list(
55
+ query: CollectionListParams | null | undefined = {},
56
+ options?: RequestOptions,
57
+ ): PagePromise<KnowledgeCollectionsCursor, KnowledgeCollection> {
58
+ return this._client.getAPIList('/knowledge/collections', Cursor<KnowledgeCollection>, {
59
+ query,
60
+ ...options,
61
+ });
62
+ }
63
+
64
+ /**
65
+ * Delete a knowledge collection and all its documents.
66
+ */
67
+ delete(id: string, options?: RequestOptions): APIPromise<void> {
68
+ return this._client.delete(path`/knowledge/collections/${id}`, {
69
+ ...options,
70
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
71
+ });
72
+ }
73
+ }
74
+
75
+ export type KnowledgeCollectionsCursor = Cursor<KnowledgeCollection>;
76
+
77
+ export interface KnowledgeCollection {
78
+ /**
79
+ * Unique collection ID
80
+ */
81
+ id: string;
82
+
83
+ /**
84
+ * When the collection was created
85
+ */
86
+ createdAt: string;
87
+
88
+ /**
89
+ * Collection description
90
+ */
91
+ description: string | null;
92
+
93
+ /**
94
+ * Embedding model used
95
+ */
96
+ embeddingModel: string;
97
+
98
+ /**
99
+ * Collection name
100
+ */
101
+ name: string;
102
+
103
+ /**
104
+ * Project ID
105
+ */
106
+ projectId: string;
107
+
108
+ /**
109
+ * When the collection was last updated
110
+ */
111
+ updatedAt: string;
112
+
113
+ /**
114
+ * Total number of documents
115
+ */
116
+ documentCount?: number;
117
+
118
+ /**
119
+ * Number of processed documents
120
+ */
121
+ readyDocumentCount?: number;
122
+ }
123
+
124
+ export interface CollectionCreateParams {
125
+ /**
126
+ * Collection name
127
+ */
128
+ name: string;
129
+
130
+ /**
131
+ * Collection description
132
+ */
133
+ description?: string;
134
+ }
135
+
136
+ export interface CollectionUpdateParams {
137
+ description?: string;
138
+
139
+ name?: string;
140
+ }
141
+
142
+ export interface CollectionListParams extends CursorParams {}
143
+
144
+ Collections.Documents = Documents;
145
+
146
+ export declare namespace Collections {
147
+ export {
148
+ type KnowledgeCollection as KnowledgeCollection,
149
+ type KnowledgeCollectionsCursor as KnowledgeCollectionsCursor,
150
+ type CollectionCreateParams as CollectionCreateParams,
151
+ type CollectionUpdateParams as CollectionUpdateParams,
152
+ type CollectionListParams as CollectionListParams,
153
+ };
154
+
155
+ export {
156
+ Documents as Documents,
157
+ type KnowledgeDocument as KnowledgeDocument,
158
+ type DocumentProcessResponse as DocumentProcessResponse,
159
+ type DocumentUploadResponse as DocumentUploadResponse,
160
+ type KnowledgeDocumentsCursor as KnowledgeDocumentsCursor,
161
+ type DocumentRetrieveParams as DocumentRetrieveParams,
162
+ type DocumentListParams as DocumentListParams,
163
+ type DocumentDeleteParams as DocumentDeleteParams,
164
+ type DocumentProcessParams as DocumentProcessParams,
165
+ type DocumentUploadParams as DocumentUploadParams,
166
+ };
167
+ }