@digipair/skill-dsp 0.72.6 → 0.72.8
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/index.cjs.js +112308 -2529
- package/index.esm.js +113236 -3478
- package/libs/skill-dsp/src/lib/skill-dsp.d.ts +2 -2
- package/package.json +1 -1
- package/schema.fr.json +27 -0
- package/schema.json +27 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PinsSettings } from '@digipair/engine';
|
|
2
|
-
import { AxAI,
|
|
2
|
+
import { AxAI, AxAIAzureOpenAI, AxAIOllama, AxAgent, AxAIOpenAIBase } from '@ax-llm/ax';
|
|
3
3
|
export declare const model: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAI>;
|
|
4
|
-
export declare const modelOpenAI: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<
|
|
4
|
+
export declare const modelOpenAI: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIOpenAIBase<unknown, unknown>>;
|
|
5
5
|
export declare const modelAzureOpenAi: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIAzureOpenAI>;
|
|
6
6
|
export declare const modelOllama: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIOllama>;
|
|
7
7
|
export declare const generate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenerateResult<import("@ax-llm/ax").AxGenOut>>;
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -243,6 +243,15 @@
|
|
|
243
243
|
"$ref": "#/components/schemas/Function"
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "options",
|
|
249
|
+
"summary": "Options",
|
|
250
|
+
"required": false,
|
|
251
|
+
"description": "Options de génération",
|
|
252
|
+
"schema": {
|
|
253
|
+
"type": "object"
|
|
254
|
+
}
|
|
246
255
|
}
|
|
247
256
|
],
|
|
248
257
|
"x-events": []
|
|
@@ -294,6 +303,15 @@
|
|
|
294
303
|
"$ref": "#/components/schemas/Function"
|
|
295
304
|
}
|
|
296
305
|
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "options",
|
|
309
|
+
"summary": "Options",
|
|
310
|
+
"required": false,
|
|
311
|
+
"description": "Options de génération",
|
|
312
|
+
"schema": {
|
|
313
|
+
"type": "object"
|
|
314
|
+
}
|
|
297
315
|
}
|
|
298
316
|
],
|
|
299
317
|
"x-events": []
|
|
@@ -375,6 +393,15 @@
|
|
|
375
393
|
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
376
394
|
}
|
|
377
395
|
}
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "options",
|
|
399
|
+
"summary": "Options",
|
|
400
|
+
"required": false,
|
|
401
|
+
"description": "Options de génération",
|
|
402
|
+
"schema": {
|
|
403
|
+
"type": "object"
|
|
404
|
+
}
|
|
378
405
|
}
|
|
379
406
|
],
|
|
380
407
|
"x-events": []
|
package/schema.json
CHANGED
|
@@ -243,6 +243,15 @@
|
|
|
243
243
|
"$ref": "#/components/schemas/Function"
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "options",
|
|
249
|
+
"summary": "Options",
|
|
250
|
+
"required": false,
|
|
251
|
+
"description": "Generation options",
|
|
252
|
+
"schema": {
|
|
253
|
+
"type": "object"
|
|
254
|
+
}
|
|
246
255
|
}
|
|
247
256
|
],
|
|
248
257
|
"x-events": []
|
|
@@ -294,6 +303,15 @@
|
|
|
294
303
|
"$ref": "#/components/schemas/Function"
|
|
295
304
|
}
|
|
296
305
|
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "options",
|
|
309
|
+
"summary": "Options",
|
|
310
|
+
"required": false,
|
|
311
|
+
"description": "Generation options",
|
|
312
|
+
"schema": {
|
|
313
|
+
"type": "object"
|
|
314
|
+
}
|
|
297
315
|
}
|
|
298
316
|
],
|
|
299
317
|
"x-events": []
|
|
@@ -375,6 +393,15 @@
|
|
|
375
393
|
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
376
394
|
}
|
|
377
395
|
}
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "options",
|
|
399
|
+
"summary": "Options",
|
|
400
|
+
"required": false,
|
|
401
|
+
"description": "Generation options",
|
|
402
|
+
"schema": {
|
|
403
|
+
"type": "object"
|
|
404
|
+
}
|
|
378
405
|
}
|
|
379
406
|
],
|
|
380
407
|
"x-events": []
|