@digipair/skill-dsp 0.15.3 → 0.16.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.
- package/index.cjs.js +593 -705
- package/index.esm.js +594 -699
- package/libs/skill-dsp/src/lib/skill-dsp.d.ts +2 -4
- package/package.json +1 -1
- package/schema.json +9 -38
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PinsSettings } from '@digipair/engine';
|
|
2
|
-
import { AxAI, AxAIOpenAI, AxAIAzureOpenAI, AxAIOllama, AxAgent
|
|
2
|
+
import { AxAI, AxAIOpenAI, AxAIAzureOpenAI, AxAIOllama, AxAgent } from '@ax-llm/ax';
|
|
3
3
|
export declare const model: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAI>;
|
|
4
4
|
export declare const modelOpenAI: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIOpenAI<string, string>>;
|
|
5
5
|
export declare const modelAzureOpenAi: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIAzureOpenAI>;
|
|
@@ -11,6 +11,4 @@ export declare const chainOfThought: (params: any, pinsSettingsList: PinsSetting
|
|
|
11
11
|
export declare const react: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenOut & {
|
|
12
12
|
reason: string;
|
|
13
13
|
}>;
|
|
14
|
-
export declare const agent: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAgent<import("@ax-llm/ax").AxGenIn, import("@ax-llm/ax").AxGenOut>>;
|
|
15
|
-
export declare const forward: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
16
|
-
export declare const jsInterpreter: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxJSInterpreter>;
|
|
14
|
+
export declare const agent: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenOut | AxAgent<import("@ax-llm/ax").AxGenIn, import("@ax-llm/ax").AxGenOut>>;
|
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -394,6 +394,15 @@
|
|
|
394
394
|
"type": "string"
|
|
395
395
|
}
|
|
396
396
|
},
|
|
397
|
+
{
|
|
398
|
+
"name": "input",
|
|
399
|
+
"summary": "Données à traiter",
|
|
400
|
+
"required": true,
|
|
401
|
+
"description": "Données d'entrées à traiter",
|
|
402
|
+
"schema": {
|
|
403
|
+
"type": "object"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
397
406
|
{
|
|
398
407
|
"name": "functions",
|
|
399
408
|
"summary": "Fonctions DSP",
|
|
@@ -421,44 +430,6 @@
|
|
|
421
430
|
],
|
|
422
431
|
"x-events": []
|
|
423
432
|
}
|
|
424
|
-
},
|
|
425
|
-
"/forward": {
|
|
426
|
-
"post": {
|
|
427
|
-
"tags": ["service"],
|
|
428
|
-
"summary": "Execute un agent DSP",
|
|
429
|
-
"parameters": [
|
|
430
|
-
{
|
|
431
|
-
"name": "agents",
|
|
432
|
-
"summary": "Agents DSP",
|
|
433
|
-
"required": false,
|
|
434
|
-
"description": "Autres agents utilisables par l'agent",
|
|
435
|
-
"schema": {
|
|
436
|
-
"type": "array",
|
|
437
|
-
"items": {
|
|
438
|
-
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"name": "input",
|
|
444
|
-
"summary": "Données à traiter",
|
|
445
|
-
"required": true,
|
|
446
|
-
"description": "Données d'entrées à traiter",
|
|
447
|
-
"schema": {
|
|
448
|
-
"type": "object"
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
],
|
|
452
|
-
"x-events": []
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
"/jsInterpreter": {
|
|
456
|
-
"post": {
|
|
457
|
-
"tags": ["service"],
|
|
458
|
-
"summary": "Fonction DSP d'execution de code JS",
|
|
459
|
-
"parameters": [],
|
|
460
|
-
"x-events": []
|
|
461
|
-
}
|
|
462
433
|
}
|
|
463
434
|
},
|
|
464
435
|
"components": {
|