@digipair/skill-dsp 0.94.0-8 → 0.95.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.
@@ -0,0 +1 @@
1
+ export * from './lib/skill-dsp';
@@ -1,9 +1,9 @@
1
1
  import { PinsSettings } from '@digipair/engine';
2
- export declare const model: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
3
- export declare const modelOpenAI: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
4
- export declare const modelAzureOpenAi: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
5
- export declare const modelOllama: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
2
+ import { AxAI, AxAIAzureOpenAI, AxAIOllama, AxAIOpenAIBase } from '@digipair/ax';
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<AxAIOpenAIBase<unknown, unknown, import("@digipair/ax").AxAIOpenAIChatRequest<unknown>>>;
5
+ export declare const modelAzureOpenAi: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIAzureOpenAI>;
6
+ export declare const modelOllama: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIOllama>;
6
7
  export declare const generate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
7
8
  export declare const chainOfThought: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
8
9
  export declare const agent: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
9
- //# sourceMappingURL=skill-dsp.d.ts.map
package/package.json CHANGED
@@ -1,28 +1,12 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.94.0-8",
4
- "main": "./dist/index.cjs.js",
5
- "module": "./dist/index.esm.js",
6
- "types": "./dist/index.d.ts",
3
+ "version": "0.95.0",
7
4
  "keywords": [
8
5
  "digipair",
9
6
  "service",
10
7
  "tool"
11
8
  ],
12
- "exports": {
13
- "./package.json": "./package.json",
14
- ".": {
15
- "types": "./dist/index.d.ts",
16
- "import": "./dist/index.esm.js",
17
- "default": "./dist/index.cjs.js"
18
- }
19
- },
20
- "files": [
21
- "dist",
22
- "!**/*.tsbuildinfo"
23
- ],
24
- "nx": {
25
- "name": "skill-dsp"
26
- },
27
- "dependencies": {}
28
- }
9
+ "dependencies": {},
10
+ "main": "./index.cjs.js",
11
+ "module": "./index.esm.js"
12
+ }
@@ -75,6 +75,15 @@
75
75
  "schema": {
76
76
  "type": "object"
77
77
  }
78
+ },
79
+ {
80
+ "name": "supportFor",
81
+ "summary": "Support pour",
82
+ "required": false,
83
+ "description": "Fonctionnalités supportées par le modèle OpenAI",
84
+ "schema": {
85
+ "type": "object"
86
+ }
78
87
  }
79
88
  ],
80
89
  "x-events": []
@@ -75,6 +75,15 @@
75
75
  "schema": {
76
76
  "type": "object"
77
77
  }
78
+ },
79
+ {
80
+ "name": "supportFor",
81
+ "summary": "Support for",
82
+ "required": false,
83
+ "description": "OpenAI model support for specific features",
84
+ "schema": {
85
+ "type": "object"
86
+ }
78
87
  }
79
88
  ],
80
89
  "x-events": []
package/README.md DELETED
@@ -1,7 +0,0 @@
1
- # skill-test
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build skill-dsp` to build the library.