objectiveai 1.0.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.
- package/LICENSE +21 -0
- package/dist/index.d.ts +1238 -0
- package/dist/index.js +1207 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "objectiveai",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "SDK for the Objective AI API, intended for use in conjunction with the OpenAI SDK.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ObjectiveAI/objective_ai_js.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"prepare": "npm run build"
|
|
15
|
+
},
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Objective AI",
|
|
18
|
+
"email": "support@objective-ai.io",
|
|
19
|
+
"url": "https://objective-ai.io"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"openai": "^4.98.0",
|
|
24
|
+
"typescript": "^5.8.3"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"api",
|
|
28
|
+
"client",
|
|
29
|
+
"llm",
|
|
30
|
+
"ai",
|
|
31
|
+
"mcp",
|
|
32
|
+
"objective",
|
|
33
|
+
"objective ai",
|
|
34
|
+
"confidence",
|
|
35
|
+
"confidence id",
|
|
36
|
+
"confidence score"
|
|
37
|
+
],
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"import": "./dist/index.js",
|
|
41
|
+
"types": "./dist/index.d.ts"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist"
|
|
46
|
+
]
|
|
47
|
+
}
|