@thinkhive/sdk 2.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/README.md +212 -0
- package/dist/index.d.ts +629 -0
- package/dist/index.js +639 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thinkhive/sdk",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "ThinkHive SDK - AI Agent Observability Platform with explainability, RAG evaluation, and business impact analysis",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "echo \"No tests yet\" && exit 0"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"thinkhive",
|
|
20
|
+
"ai",
|
|
21
|
+
"llm",
|
|
22
|
+
"observability",
|
|
23
|
+
"tracing",
|
|
24
|
+
"opentelemetry",
|
|
25
|
+
"explainability",
|
|
26
|
+
"rag",
|
|
27
|
+
"hallucination-detection",
|
|
28
|
+
"business-impact",
|
|
29
|
+
"langchain",
|
|
30
|
+
"openai",
|
|
31
|
+
"anthropic",
|
|
32
|
+
"agent"
|
|
33
|
+
],
|
|
34
|
+
"author": "ThinkHive <support@thinkhive.ai>",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"homepage": "https://thinkhive.ai",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/thinkhive/thinkhive-js.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/thinkhive/thinkhive-js/issues"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=16.0.0"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@opentelemetry/api": "^1.8.0",
|
|
49
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.49.1",
|
|
50
|
+
"@opentelemetry/resources": "^1.21.0",
|
|
51
|
+
"@opentelemetry/sdk-trace-node": "^1.21.0",
|
|
52
|
+
"@opentelemetry/sdk-trace-base": "^1.21.0"
|
|
53
|
+
}
|
|
54
|
+
}
|