@digipair/skill-dsp 0.58.0 → 0.59.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.58.0",
3
+ "version": "0.59.0",
4
4
  "dependencies": {
5
5
  "@ax-llm/ax": "^9.0.28"
6
6
  },
package/schema.fr.json CHANGED
@@ -35,7 +35,7 @@
35
35
  "x-events": []
36
36
  }
37
37
  },
38
- "/modelOpenAi": {
38
+ "/modelOpenAI": {
39
39
  "post": {
40
40
  "tags": ["service"],
41
41
  "summary": "Modèle OpenAI",
@@ -299,57 +299,6 @@
299
299
  "x-events": []
300
300
  }
301
301
  },
302
- "/react": {
303
- "post": {
304
- "tags": ["service"],
305
- "summary": "ReAct DSP",
306
- "parameters": [
307
- {
308
- "name": "model",
309
- "summary": "Modèle",
310
- "required": false,
311
- "description": "Modèle LLM à utiliser pour la génération",
312
- "schema": {
313
- "type": "array",
314
- "items": {
315
- "$ref": "https://schemas.digipair.ai/pinsSettings"
316
- }
317
- }
318
- },
319
- {
320
- "name": "signature",
321
- "summary": "Signature",
322
- "required": true,
323
- "description": "Signature des données à extraire",
324
- "schema": {
325
- "type": "string"
326
- }
327
- },
328
- {
329
- "name": "input",
330
- "summary": "Données à traiter",
331
- "required": true,
332
- "description": "Données d'entrées à traiter",
333
- "schema": {
334
- "type": "object"
335
- }
336
- },
337
- {
338
- "name": "functions",
339
- "summary": "Fonctions DSP",
340
- "required": false,
341
- "description": "Fonctions utilisables pour la génération",
342
- "schema": {
343
- "type": "array",
344
- "items": {
345
- "$ref": "#/components/schemas/Function"
346
- }
347
- }
348
- }
349
- ],
350
- "x-events": []
351
- }
352
- },
353
302
  "/agent": {
354
303
  "post": {
355
304
  "tags": ["service"],
package/schema.json CHANGED
@@ -35,7 +35,7 @@
35
35
  "x-events": []
36
36
  }
37
37
  },
38
- "/modelOpenAi": {
38
+ "/modelOpenAI": {
39
39
  "post": {
40
40
  "tags": ["service"],
41
41
  "summary": "OpenAI Model",
@@ -299,57 +299,6 @@
299
299
  "x-events": []
300
300
  }
301
301
  },
302
- "/react": {
303
- "post": {
304
- "tags": ["service"],
305
- "summary": "ReAct DSP",
306
- "parameters": [
307
- {
308
- "name": "model",
309
- "summary": "Model",
310
- "required": false,
311
- "description": "LLM model to use for generation",
312
- "schema": {
313
- "type": "array",
314
- "items": {
315
- "$ref": "https://schemas.digipair.ai/pinsSettings"
316
- }
317
- }
318
- },
319
- {
320
- "name": "signature",
321
- "summary": "Signature",
322
- "required": true,
323
- "description": "Signature of the data to extract",
324
- "schema": {
325
- "type": "string"
326
- }
327
- },
328
- {
329
- "name": "input",
330
- "summary": "Data to Process",
331
- "required": true,
332
- "description": "Input data to process",
333
- "schema": {
334
- "type": "object"
335
- }
336
- },
337
- {
338
- "name": "functions",
339
- "summary": "DSP Functions",
340
- "required": false,
341
- "description": "Functions usable for generation",
342
- "schema": {
343
- "type": "array",
344
- "items": {
345
- "$ref": "#/components/schemas/Function"
346
- }
347
- }
348
- }
349
- ],
350
- "x-events": []
351
- }
352
- },
353
302
  "/agent": {
354
303
  "post": {
355
304
  "tags": ["service"],
@@ -1,14 +1,11 @@
1
1
  import { PinsSettings } from '@digipair/engine';
2
- import { AxAI, AxAIOpenAI, AxAIAzureOpenAI, AxAIOllama, AxAgent } from '@ax-llm/ax';
2
+ import { AxAI, AxAIOpenAI, AxAIAzureOpenAI, AxAIOllama, AxAgent } from '@digipair/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>;
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
- export declare const generate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenerateResult<import("@ax-llm/ax").AxGenOut>>;
8
- export declare const chainOfThought: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenOut & {
7
+ export declare const generate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@digipair/ax").AxGenerateResult<import("@digipair/ax").AxGenOut>>;
8
+ export declare const chainOfThought: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@digipair/ax").AxGenOut & {
9
9
  reason: string;
10
10
  }>;
11
- export declare const react: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@ax-llm/ax").AxGenOut & {
12
- reason: string;
13
- }>;
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>>;
11
+ export declare const agent: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<import("@digipair/ax").AxGenOut | AxAgent<import("@digipair/ax").AxGenIn, import("@digipair/ax").AxGenOut>>;
File without changes