@crewdle/web-sdk-types 1.0.53 → 1.0.55

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.
@@ -10,5 +10,9 @@ export declare enum NodeType {
10
10
  /**
11
11
  * The agent node type.
12
12
  */
13
- Agent = "agent"
13
+ Agent = "agent",
14
+ /**
15
+ * The local node type (offline/standalone mode).
16
+ */
17
+ Local = "local"
14
18
  }
@@ -12,4 +12,8 @@ export var NodeType;
12
12
  * The agent node type.
13
13
  */
14
14
  NodeType["Agent"] = "agent";
15
+ /**
16
+ * The local node type (offline/standalone mode).
17
+ */
18
+ NodeType["Local"] = "local";
15
19
  })(NodeType || (NodeType = {}));
@@ -40,3 +40,20 @@ export interface ISDK {
40
40
  */
41
41
  joinCluster(clusterId: string, standalone?: boolean): Promise<ICluster>;
42
42
  }
43
+ /**
44
+ * The local SDK interface for standalone, offline use.
45
+ * @category Core
46
+ */
47
+ export interface ILocalSDK {
48
+ /**
49
+ * Close the SDK.
50
+ * @param options The options to close the SDK with.
51
+ */
52
+ close(options?: ISDKCloseOptions): Promise<void>;
53
+ /**
54
+ * Join a cluster.
55
+ * @param clusterId The ID of the cluster to join.
56
+ * @returns A promise that resolves with the cluster.
57
+ */
58
+ joinCluster(clusterId: string): Promise<ICluster>;
59
+ }
@@ -1,6 +1,6 @@
1
1
  export { ILoggingConnector } from './LoggingConnector';
2
2
  export { LoggingConnectorEvent } from './LoggingConnectorEvent';
3
- export { ISDK } from './SDK';
3
+ export { ISDK, ILocalSDK } from './SDK';
4
4
  export { ISDKCloseOptions } from './SDKCloseOptions';
5
5
  export { ISDKOptions } from './SDKOptions';
6
6
  export { Unsubscribe } from './Unsubscribe';
@@ -40,9 +40,13 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
40
40
  */
41
41
  grammar?: any;
42
42
  /**
43
- * Enable reasoning for the AI job.
43
+ * Reasoning effort for the AI job.
44
44
  */
45
- reasoning?: boolean;
45
+ reasoning?: string;
46
+ /**
47
+ * Verbosity for the AI job.
48
+ */
49
+ verbosity?: string;
46
50
  /**
47
51
  * The privacy flag for the AI job.
48
52
  */
@@ -35,9 +35,13 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
35
35
  */
36
36
  grammar?: any;
37
37
  /**
38
- * Enable reasoning for the AI job.
38
+ * Reasoning effort for the AI job.
39
39
  */
40
- reasoning?: boolean;
40
+ reasoning?: string;
41
+ /**
42
+ * Verbosity for the AI job.
43
+ */
44
+ verbosity?: string;
41
45
  /**
42
46
  * The privacy flag for the AI job.
43
47
  */
@@ -39,9 +39,13 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
39
39
  */
40
40
  grammar?: any;
41
41
  /**
42
- * Enable reasoning for the AI job.
42
+ * Reasoning effort for the AI job.
43
43
  */
44
- reasoning?: boolean;
44
+ reasoning?: string;
45
+ /**
46
+ * Verbosity for the AI job.
47
+ */
48
+ verbosity?: string;
45
49
  /**
46
50
  * The privacy flag for the AI job.
47
51
  */
@@ -189,6 +193,18 @@ export interface IGenerativeAIInferenceTool {
189
193
  * The grammar for the tool.
190
194
  */
191
195
  grammar?: any;
196
+ /**
197
+ * The reasoning effort for the tool.
198
+ */
199
+ reasoning?: string;
200
+ /**
201
+ * The verbosity for the tool.
202
+ */
203
+ verbosity?: string;
204
+ /**
205
+ * The files for the tool.
206
+ */
207
+ files?: string[];
192
208
  /**
193
209
  * The collection ID for the tool.
194
210
  */
@@ -221,9 +237,6 @@ export interface IGenerativeAIInferenceTool {
221
237
  * The allowed tools for the tool.
222
238
  */
223
239
  allowed_tools?: string[];
224
- /**
225
- * The headers for the tool.
226
- */
227
240
  /**
228
241
  * The tools for the tool.
229
242
  */
@@ -33,9 +33,13 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
33
33
  */
34
34
  grammar?: any;
35
35
  /**
36
- * Enable reasoning for the AI job.
36
+ * Reasoning effort for the AI job.
37
37
  */
38
- reasoning?: boolean;
38
+ reasoning?: string;
39
+ /**
40
+ * Verbosity for the AI job.
41
+ */
42
+ verbosity?: string;
39
43
  /**
40
44
  * The privacy flag for the AI job.
41
45
  */
@@ -48,6 +48,8 @@ export interface ICodeInterpreterFunction {
48
48
  type: 'code_interpreter';
49
49
  container: {
50
50
  type: 'auto';
51
+ memory_limit?: string;
52
+ file_ids?: string[];
51
53
  };
52
54
  }
53
55
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewdle/web-sdk-types",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "description": "The Crewdle Mist Web SDK public types and interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",