@digipair/skill-dsp 0.72.6 → 0.72.7

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.
@@ -1,7 +1,7 @@
1
1
  import { PinsSettings } from '@digipair/engine';
2
- import { AxAI, AxAIOpenAI, AxAIAzureOpenAI, AxAIOllama, AxAgent } from '@ax-llm/ax';
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<AxAIOpenAI>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.72.6",
3
+ "version": "0.72.7",
4
4
  "dependencies": {
5
5
  "@ax-llm/ax": "^9.0.28"
6
6
  },
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": []
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": []