objectiveai 1.1.12 → 1.2.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.
- package/LICENSE +21 -21
- package/dist/index.cjs +3277 -664
- package/dist/index.d.ts +37576 -1201
- package/dist/index.js +3273 -663
- package/package.json +64 -61
package/package.json
CHANGED
|
@@ -1,61 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "objectiveai",
|
|
3
|
-
"version": "1.1
|
|
4
|
-
"description": "SDK for the ObjectiveAI API.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/ObjectiveAI/objectiveai
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "rimraf dist && npm run build:cjs && npm run build:esm",
|
|
12
|
-
"build:cjs": "tsc --project tsconfig.cjs.json && shx mv dist/index.js dist/index.cjs",
|
|
13
|
-
"build:esm": "tsc --project tsconfig.esm.json",
|
|
14
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
15
|
-
"start": "node dist/index.js",
|
|
16
|
-
"prepare": "npm run build"
|
|
17
|
-
},
|
|
18
|
-
"author": {
|
|
19
|
-
"name": "ObjectiveAI",
|
|
20
|
-
"email": "admin@objective-ai.io",
|
|
21
|
-
"url": "https://objective-ai.io"
|
|
22
|
-
},
|
|
23
|
-
"publishConfig": {
|
|
24
|
-
"access": "public"
|
|
25
|
-
},
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "objectiveai",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "SDK for the ObjectiveAI API.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/ObjectiveAI/objectiveai.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "rimraf dist && npm run build:cjs && npm run build:esm",
|
|
12
|
+
"build:cjs": "tsc --project tsconfig.cjs.json && shx mv dist/index.js dist/index.cjs",
|
|
13
|
+
"build:esm": "tsc --project tsconfig.esm.json",
|
|
14
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"prepare": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "ObjectiveAI",
|
|
20
|
+
"email": "admin@objective-ai.io",
|
|
21
|
+
"url": "https://objective-ai.io"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"zod": "^4.3.5"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"openai": "^6.15.0",
|
|
32
|
+
"rimraf": "^6.1.2",
|
|
33
|
+
"shx": "^0.4.0",
|
|
34
|
+
"typescript": "^5.9.3"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"llm",
|
|
38
|
+
"ai",
|
|
39
|
+
"api",
|
|
40
|
+
"client",
|
|
41
|
+
"sdk",
|
|
42
|
+
"prompt",
|
|
43
|
+
"prompt engineering",
|
|
44
|
+
"machine learning",
|
|
45
|
+
"ml",
|
|
46
|
+
"objectiveai",
|
|
47
|
+
"objective ai",
|
|
48
|
+
"objective",
|
|
49
|
+
"confidence",
|
|
50
|
+
"confidence score",
|
|
51
|
+
"rank",
|
|
52
|
+
"score"
|
|
53
|
+
],
|
|
54
|
+
"exports": {
|
|
55
|
+
".": {
|
|
56
|
+
"import": "./dist/index.js",
|
|
57
|
+
"require": "./dist/index.cjs",
|
|
58
|
+
"types": "./dist/index.d.ts"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"dist"
|
|
63
|
+
]
|
|
64
|
+
}
|