knowmax-quest-types 2.37.0-beta.7 → 2.38.0-beta.2
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/dist/IIntelligenceModel.d.ts +9 -0
- package/dist/IIntelligenceModel.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** Describes intelligence model for requested application. */
|
|
2
|
+
export interface IIntelligenceModel {
|
|
3
|
+
label: string;
|
|
4
|
+
type: 'OpenAI' | 'AzureOpenAI';
|
|
5
|
+
taskType: 'ChatCompletion' | 'Embedding';
|
|
6
|
+
applicationName: string;
|
|
7
|
+
mathSupport: boolean;
|
|
8
|
+
sequence: number;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowmax-quest-types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.38.0-beta.2",
|
|
4
4
|
"description": "Contains type definitions for communicating with Knowmax Quest.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@jest/globals": "^29.7.0",
|
|
26
26
|
"jest": "^29.7.0",
|
|
27
27
|
"rimraf": "6.0.1",
|
|
28
|
-
"ts-jest": "^29.3.
|
|
28
|
+
"ts-jest": "^29.3.4",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
|
-
"typescript": "5.8.
|
|
30
|
+
"typescript": "5.8.3"
|
|
31
31
|
}
|
|
32
32
|
}
|