echo-ai-sdk-ts 2.6.3 → 3.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/README.md +842 -624
- package/dist/index.js +28423 -11046
- package/dist/index.mjs +28292 -10957
- package/package.json +72 -43
package/package.json
CHANGED
|
@@ -1,43 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "echo-ai-sdk-ts",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Echo AI SDK:
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "echo-ai-sdk-ts",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Echo AI SDK v3.0: Modern AI orchestration with GPT-4.1, Claude 4, Gemini 2.5, MCP protocol, OpenTelemetry tracing, eval framework, and enhanced developer experience",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/Endsett/Echo-ai-sdk.git"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"module": "./dist/index.mjs",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"registry": "https://registry.npmjs.org/"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup src/index.ts --format cjs,esm --external @azure/arm-machinelearning,@azure/identity,@google-cloud/aiplatform,@google-cloud/vertexai,@google/genai,@aws-sdk/client-sagemaker,@aws-sdk/client-bedrock-runtime,@azure/openai",
|
|
20
|
+
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
21
|
+
"lint:js": "eslint src/**/*.ts tests/**/*.ts",
|
|
22
|
+
"lint:types": "tsc --noEmit",
|
|
23
|
+
"lint": "npm-run-all lint:*",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"format:check": "prettier --check . || echo 'Prettier not configured, skipping format check'",
|
|
27
|
+
"format": "prettier --write . || echo 'Prettier not configured, skipping format'"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@google/genai": "^0.1.0",
|
|
31
|
+
"@honcho-ai/sdk": "^2.1.0",
|
|
32
|
+
"@huggingface/inference": "^4.13.15",
|
|
33
|
+
"cors": "^2.8.5",
|
|
34
|
+
"cross-fetch": "^4.1.0",
|
|
35
|
+
"expr-eval": "^2.0.2",
|
|
36
|
+
"express": "^4.18.2",
|
|
37
|
+
"zod": "^3.25.76",
|
|
38
|
+
"zod-to-json-schema": "^3.25.1"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@anthropic-ai/sdk": "^0.81.0",
|
|
42
|
+
"@aws-sdk/client-bedrock-runtime": "^3.1019.0",
|
|
43
|
+
"@aws-sdk/client-sagemaker": "^3.1019.0",
|
|
44
|
+
"@azure/arm-machinelearning": "^3.0.0",
|
|
45
|
+
"@azure/identity": "^4.13.1",
|
|
46
|
+
"@azure/openai": "^2.0.0",
|
|
47
|
+
"@google-cloud/aiplatform": "^6.5.0",
|
|
48
|
+
"@google-cloud/vertexai": "^1.10.3",
|
|
49
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
50
|
+
"@semantic-release/git": "^10.0.1",
|
|
51
|
+
"@semantic-release/github": "^9.2.6",
|
|
52
|
+
"@semantic-release/npm": "^11.0.2",
|
|
53
|
+
"@types/cors": "^2.8.17",
|
|
54
|
+
"@types/eslint": "^9.6.1",
|
|
55
|
+
"@types/express": "^4.17.21",
|
|
56
|
+
"@types/node": "^20.11.24",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
58
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
59
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
60
|
+
"eslint": "^8.57.1",
|
|
61
|
+
"eslint-config-prettier": "^10.1.8",
|
|
62
|
+
"ioredis": "^5.10.1",
|
|
63
|
+
"npm-run-all": "^4.1.5",
|
|
64
|
+
"openai": "^6.32.0",
|
|
65
|
+
"prettier": "^3.2.5",
|
|
66
|
+
"semantic-release": "^23.0.2",
|
|
67
|
+
"tsup": "^8.0.2",
|
|
68
|
+
"typescript": "^6.0.2",
|
|
69
|
+
"vitest": "^4.1.2",
|
|
70
|
+
"yaml": "^2.8.3"
|
|
71
|
+
}
|
|
72
|
+
}
|