echo-ai-sdk-ts 2.6.2 → 2.7.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 +42 -0
- package/dist/index.js +11099 -56
- package/dist/index.mjs +11114 -55
- package/package.json +20 -3
- package/dist/chunk-NZO6ZQRY.mjs +0 -2092
- package/dist/fileFromPath-4L47H5QG.mjs +0 -127
- package/dist/index.d.mts +0 -1073
- package/dist/index.d.ts +0 -1073
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echo-ai-sdk-ts",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Echo AI SDK: Tier 5 Cloud Native (AWS Bedrock/SageMaker, GCP Vertex, Azure OpenAI/ML)",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/Endsett/Echo-ai-sdk.git"
|
|
8
|
+
},
|
|
5
9
|
"main": "./dist/index.js",
|
|
6
10
|
"module": "./dist/index.mjs",
|
|
7
11
|
"types": "./dist/index.d.ts",
|
|
@@ -11,10 +15,13 @@
|
|
|
11
15
|
"scripts": {
|
|
12
16
|
"build": "tsup src/index.ts --format cjs,esm --external @azure/arm-machinelearning,@azure/identity,@google-cloud/aiplatform,@google-cloud/vertexai,@aws-sdk/client-sagemaker,@aws-sdk/client-bedrock-runtime,@azure/openai",
|
|
13
17
|
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
14
|
-
"lint": "
|
|
18
|
+
"lint:js": "eslint src/**/*.ts tests/**/*.ts",
|
|
19
|
+
"lint:types": "tsc --noEmit",
|
|
20
|
+
"lint": "npm-run-all lint:*",
|
|
15
21
|
"test": "vitest run"
|
|
16
22
|
},
|
|
17
23
|
"dependencies": {
|
|
24
|
+
"@honcho-ai/sdk": "^2.1.0",
|
|
18
25
|
"@huggingface/inference": "^4.13.15",
|
|
19
26
|
"cors": "^2.8.5",
|
|
20
27
|
"cross-fetch": "^4.1.0",
|
|
@@ -33,11 +40,21 @@
|
|
|
33
40
|
"@google-cloud/aiplatform": "^6.5.0",
|
|
34
41
|
"@google-cloud/vertexai": "^1.10.3",
|
|
35
42
|
"@types/cors": "^2.8.17",
|
|
43
|
+
"@types/eslint": "^9.6.1",
|
|
36
44
|
"@types/express": "^4.17.21",
|
|
37
45
|
"@types/node": "^20.11.24",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
47
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
48
|
+
"@vitest/coverage-v8": "^1.6.1",
|
|
49
|
+
"eslint": "^8.57.1",
|
|
50
|
+
"eslint-config-prettier": "^10.1.8",
|
|
51
|
+
"ioredis": "^5.10.1",
|
|
52
|
+
"npm-run-all": "^4.1.5",
|
|
38
53
|
"openai": "^6.32.0",
|
|
54
|
+
"prettier": "^3.8.1",
|
|
39
55
|
"tsup": "^8.0.2",
|
|
40
56
|
"typescript": "^5.3.3",
|
|
41
|
-
"vitest": "^1.3.1"
|
|
57
|
+
"vitest": "^1.3.1",
|
|
58
|
+
"yaml": "^2.8.3"
|
|
42
59
|
}
|
|
43
60
|
}
|