@digipair/skill-dsp 0.113.1 → 0.114.1

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.
@@ -91,15 +91,6 @@
91
91
  "schema": {
92
92
  "type": "object"
93
93
  }
94
- },
95
- {
96
- "name": "supportFor",
97
- "summary": "Support pour",
98
- "required": false,
99
- "description": "Fonctionnalités supportées par le modèle OpenAI",
100
- "schema": {
101
- "type": "object"
102
- }
103
94
  }
104
95
  ],
105
96
  "x-events": [],
@@ -91,15 +91,6 @@
91
91
  "schema": {
92
92
  "type": "object"
93
93
  }
94
- },
95
- {
96
- "name": "supportFor",
97
- "summary": "Support for",
98
- "required": false,
99
- "description": "OpenAI model support for specific features",
100
- "schema": {
101
- "type": "object"
102
- }
103
94
  }
104
95
  ],
105
96
  "x-events": [],
@@ -0,0 +1,2 @@
1
+ export * from './lib/skill-dsp';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
@@ -5,3 +5,4 @@ export declare const modelOpenAI: (params: any, pinsSettingsList: PinsSettings[]
5
5
  export declare const modelAzureOpenAi: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIAzureOpenAI<unknown>>;
6
6
  export declare const modelOllama: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<AxAIOllama<unknown>>;
7
7
  export declare const generate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
8
+ //# sourceMappingURL=skill-dsp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skill-dsp.d.ts","sourceRoot":"","sources":["../../../src/lib/skill-dsp.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAmB,MAAM,kBAAkB,CAAC;AACjE,OAAO,EACL,IAAI,EACJ,eAAe,EACf,UAAU,EAGV,cAAc,EAGf,MAAM,YAAY,CAAC;AAyKpB,eAAO,MAAM,KAAK,GAAI,QAAQ,GAAG,EAAE,kBAAkB,YAAY,EAAE,EAAE,SAAS,GAAG,0BACtB,CAAC;AAE5D,eAAO,MAAM,WAAW,GAAI,QAAQ,GAAG,EAAE,kBAAkB,YAAY,EAAE,EAAE,SAAS,GAAG,4GACtB,CAAC;AAElE,eAAO,MAAM,gBAAgB,GAAI,QAAQ,GAAG,EAAE,kBAAkB,YAAY,EAAE,EAAE,SAAS,GAAG,sCACtB,CAAC;AAEvE,eAAO,MAAM,WAAW,GAAI,QAAQ,GAAG,EAAE,kBAAkB,YAAY,EAAE,EAAE,SAAS,GAAG,iCACtB,CAAC;AAElE,eAAO,MAAM,QAAQ,GAAI,QAAQ,GAAG,EAAE,kBAAkB,YAAY,EAAE,EAAE,SAAS,GAAG,iBACtB,CAAC"}
package/package.json CHANGED
@@ -1,12 +1,35 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.113.1",
3
+ "version": "0.114.1",
4
+ "main": "./dist/index.cjs.js",
5
+ "module": "./dist/index.esm.js",
6
+ "types": "./dist/index.d.ts",
4
7
  "keywords": [
5
8
  "digipair",
6
9
  "service",
7
10
  "tool"
8
11
  ],
9
- "dependencies": {},
10
- "main": "./index.cjs.js",
11
- "module": "./index.esm.js"
12
- }
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.esm.js",
16
+ "default": "./dist/index.cjs.js"
17
+ },
18
+ "./index.esm.js": "./dist/index.esm.js",
19
+ "./index.cjs.js": "./dist/index.cjs.js",
20
+ "./package.json": "./package.json",
21
+ "./schema.json": "./dist/schema.json",
22
+ "./schema.fr.json": "./dist/schema.fr.json"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "README.md",
27
+ "package.json"
28
+ ],
29
+ "nx": {
30
+ "name": "skill-dsp"
31
+ },
32
+ "dependencies": {
33
+ "@ax-llm/ax": "14.0.19"
34
+ }
35
+ }
package/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './libs/skill-dsp/src/index';
@@ -1 +0,0 @@
1
- export * from './lib/skill-dsp';
File without changes