Skip to content

Commit d29efbd

Browse files
authored
Merge pull request #2782 from juanc07/fix/DTS-error-mismatch-LanguageModelV1-in-ai-sdk-mistral-model
Fix: DTS Error mismatch LanguageModelV1interface/Version in ai-sdk mistral model
2 parents 1de4a08 + 4e7ca09 commit d29efbd

File tree

4 files changed

+766
-602
lines changed

4 files changed

+766
-602
lines changed

client/package.json

+64-64
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
{
2-
"name": "client",
3-
"private": true,
4-
"sideEffects": false,
5-
"type": "module",
6-
"scripts": {
7-
"extract-version": "sh version.sh",
8-
"dev": "pnpm run extract-version && vite",
9-
"build": "pnpm run extract-version && tsc -b && vite build",
10-
"preview": "vite preview"
11-
},
12-
"dependencies": {
13-
"@elizaos/core": "workspace:*",
14-
"@radix-ui/react-avatar": "^1.1.2",
15-
"@radix-ui/react-collapsible": "^1.1.2",
16-
"@radix-ui/react-dialog": "^1.1.4",
17-
"@radix-ui/react-label": "^2.1.1",
18-
"@radix-ui/react-separator": "^1.1.1",
19-
"@radix-ui/react-slot": "^1.1.1",
20-
"@radix-ui/react-tabs": "^1.1.2",
21-
"@radix-ui/react-toast": "^1.2.4",
22-
"@radix-ui/react-tooltip": "^1.1.6",
23-
"@react-spring/web": "^9.7.5",
24-
"@tanstack/react-query": "^5.63.0",
25-
"@uidotdev/usehooks": "^2.4.1",
26-
"class-variance-authority": "^0.7.1",
27-
"clsx": "2.1.1",
28-
"dayjs": "^1.11.13",
29-
"lucide-react": "^0.469.0",
30-
"react": "^19.0.0",
31-
"react-aiwriter": "^1.0.0",
32-
"react-dom": "^19.0.0",
33-
"react-router": "^7.1.1",
34-
"react-router-dom": "^7.1.1",
35-
"semver": "^7.6.3",
36-
"tailwind-merge": "^2.6.0",
37-
"tailwindcss-animate": "^1.0.7",
38-
"vite-plugin-compression": "^0.5.1"
39-
},
40-
"devDependencies": {
41-
"@eslint/js": "^9.17.0",
42-
"@types/node": "^22.10.5",
43-
"@types/react": "^19.0.3",
44-
"@types/react-dom": "^19.0.2",
45-
"@types/semver": "^7.5.8",
46-
"@typescript-eslint/eslint-plugin": "^8.19.1",
47-
"@typescript-eslint/parser": "^8.19.1",
48-
"@vitejs/plugin-react-swc": "^3.5.0",
49-
"autoprefixer": "^10.4.19",
50-
"eslint": "^9.17.0",
51-
"eslint-import-resolver-typescript": "^3.6.1",
52-
"eslint-plugin-import": "^2.28.1",
53-
"eslint-plugin-jsx-a11y": "^6.7.1",
54-
"eslint-plugin-react": "^7.33.2",
55-
"eslint-plugin-react-hooks": "^5.0.0",
56-
"eslint-plugin-react-refresh": "^0.4.16",
57-
"globals": "^15.14.0",
58-
"postcss": "^8.4.38",
59-
"rollup-plugin-visualizer": "^5.14.0",
60-
"tailwindcss": "^3.4.4",
61-
"typescript": "~5.6.3",
62-
"typescript-eslint": "^8.18.2",
63-
"vite": "^6.0.5",
64-
"vite-tsconfig-paths": "^5.1.4"
65-
}
2+
"name": "client",
3+
"private": true,
4+
"sideEffects": false,
5+
"type": "module",
6+
"scripts": {
7+
"extract-version": "bash ./version.sh",
8+
"dev": "pnpm run extract-version && vite",
9+
"build": "pnpm run extract-version && tsc -b && vite build",
10+
"preview": "vite preview"
11+
},
12+
"dependencies": {
13+
"@elizaos/core": "workspace:*",
14+
"@radix-ui/react-avatar": "^1.1.2",
15+
"@radix-ui/react-collapsible": "^1.1.2",
16+
"@radix-ui/react-dialog": "^1.1.4",
17+
"@radix-ui/react-label": "^2.1.1",
18+
"@radix-ui/react-separator": "^1.1.1",
19+
"@radix-ui/react-slot": "^1.1.1",
20+
"@radix-ui/react-tabs": "^1.1.2",
21+
"@radix-ui/react-toast": "^1.2.4",
22+
"@radix-ui/react-tooltip": "^1.1.6",
23+
"@react-spring/web": "^9.7.5",
24+
"@tanstack/react-query": "^5.63.0",
25+
"@uidotdev/usehooks": "^2.4.1",
26+
"class-variance-authority": "^0.7.1",
27+
"clsx": "2.1.1",
28+
"dayjs": "^1.11.13",
29+
"lucide-react": "^0.469.0",
30+
"react": "^19.0.0",
31+
"react-aiwriter": "^1.0.0",
32+
"react-dom": "^19.0.0",
33+
"react-router": "^7.1.1",
34+
"react-router-dom": "^7.1.1",
35+
"semver": "^7.6.3",
36+
"tailwind-merge": "^2.6.0",
37+
"tailwindcss-animate": "^1.0.7",
38+
"vite-plugin-compression": "^0.5.1"
39+
},
40+
"devDependencies": {
41+
"@eslint/js": "^9.17.0",
42+
"@types/node": "^22.10.5",
43+
"@types/react": "^19.0.3",
44+
"@types/react-dom": "^19.0.2",
45+
"@types/semver": "^7.5.8",
46+
"@typescript-eslint/eslint-plugin": "^8.19.1",
47+
"@typescript-eslint/parser": "^8.19.1",
48+
"@vitejs/plugin-react-swc": "^3.5.0",
49+
"autoprefixer": "^10.4.19",
50+
"eslint": "^9.17.0",
51+
"eslint-import-resolver-typescript": "^3.6.1",
52+
"eslint-plugin-import": "^2.28.1",
53+
"eslint-plugin-jsx-a11y": "^6.7.1",
54+
"eslint-plugin-react": "^7.33.2",
55+
"eslint-plugin-react-hooks": "^5.0.0",
56+
"eslint-plugin-react-refresh": "^0.4.16",
57+
"globals": "^15.14.0",
58+
"postcss": "^8.4.38",
59+
"rollup-plugin-visualizer": "^5.14.0",
60+
"tailwindcss": "^3.4.4",
61+
"typescript": "~5.6.3",
62+
"typescript-eslint": "^8.18.2",
63+
"vite": "^6.0.5",
64+
"vite-tsconfig-paths": "^5.1.4"
65+
}
6666
}

client/pnpm-lock.yaml

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/package.json

+94-94
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,96 @@
11
{
2-
"name": "@elizaos/core",
3-
"version": "0.1.9-alpha.1",
4-
"description": "",
5-
"type": "module",
6-
"main": "dist/index.js",
7-
"module": "dist/index.js",
8-
"types": "dist/index.d.ts",
9-
"exports": {
10-
"./package.json": "./package.json",
11-
".": {
12-
"import": {
13-
"@elizaos/source": "./src/index.ts",
14-
"types": "./dist/index.d.ts",
15-
"default": "./dist/index.js"
16-
}
17-
}
18-
},
19-
"files": [
20-
"dist"
21-
],
22-
"scripts": {
23-
"build": "tsup --format esm --dts",
24-
"watch": "tsc --watch",
25-
"dev": "tsup --format esm --dts --watch",
26-
"build:docs": "cd docs && pnpm run build",
27-
"test": "vitest run",
28-
"test:coverage": "vitest run --coverage",
29-
"test:watch": "vitest"
30-
},
31-
"author": "",
32-
"license": "MIT",
33-
"devDependencies": {
34-
"@eslint/js": "9.16.0",
35-
"@rollup/plugin-commonjs": "25.0.8",
36-
"@rollup/plugin-json": "6.1.0",
37-
"@rollup/plugin-node-resolve": "15.3.0",
38-
"@rollup/plugin-replace": "5.0.7",
39-
"@rollup/plugin-terser": "0.1.0",
40-
"@rollup/plugin-typescript": "11.1.6",
41-
"@solana/web3.js": "1.95.8",
42-
"@types/fluent-ffmpeg": "2.1.27",
43-
"@types/jest": "29.5.14",
44-
"@types/mocha": "10.0.10",
45-
"@types/node": "22.8.4",
46-
"@types/pdfjs-dist": "2.10.378",
47-
"@types/tar": "6.1.13",
48-
"@types/wav-encoder": "1.3.3",
49-
"@typescript-eslint/eslint-plugin": "8.16.0",
50-
"@typescript-eslint/parser": "8.16.0",
51-
"@vitest/coverage-v8": "2.1.5",
52-
"jest": "29.7.0",
53-
"lint-staged": "15.2.10",
54-
"nodemon": "3.1.7",
55-
"pm2": "5.4.3",
56-
"rimraf": "6.0.1",
57-
"rollup": "2.79.2",
58-
"ts-jest": "29.2.5",
59-
"ts-node": "10.9.2",
60-
"tslib": "2.8.1",
61-
"tsup": "8.3.5",
62-
"typescript": "5.6.3"
63-
},
64-
"dependencies": {
65-
"@ai-sdk/anthropic": "0.0.56",
66-
"@ai-sdk/google": "0.0.55",
67-
"@ai-sdk/google-vertex": "0.0.43",
68-
"@ai-sdk/groq": "0.0.3",
69-
"@ai-sdk/mistral": "1.0.9",
70-
"@ai-sdk/openai": "1.0.5",
71-
"@ai-sdk/amazon-bedrock": "1.1.0",
72-
"@fal-ai/client": "1.2.0",
73-
"@tavily/core": "^0.0.2",
74-
"@types/uuid": "10.0.0",
75-
"ai": "3.4.33",
76-
"anthropic-vertex-ai": "1.0.2",
77-
"dotenv": "16.4.5",
78-
"fastembed": "1.14.1",
79-
"fastestsmallesttextencoderdecoder": "1.0.22",
80-
"gaxios": "6.7.1",
81-
"glob": "11.0.0",
82-
"handlebars": "^4.7.8",
83-
"js-sha1": "0.7.0",
84-
"js-tiktoken": "1.0.15",
85-
"langchain": "0.3.6",
86-
"ollama-ai-provider": "0.16.1",
87-
"openai": "4.73.0",
88-
"pino": "^9.6.0",
89-
"pino-pretty": "^13.0.0",
90-
"tinyld": "1.3.4",
91-
"together-ai": "0.7.0",
92-
"unique-names-generator": "4.7.1",
93-
"uuid": "11.0.3",
94-
"zod": "3.23.8"
95-
}
2+
"name": "@elizaos/core",
3+
"version": "0.1.9-alpha.1",
4+
"description": "",
5+
"type": "module",
6+
"main": "dist/index.js",
7+
"module": "dist/index.js",
8+
"types": "dist/index.d.ts",
9+
"exports": {
10+
"./package.json": "./package.json",
11+
".": {
12+
"import": {
13+
"@elizaos/source": "./src/index.ts",
14+
"types": "./dist/index.d.ts",
15+
"default": "./dist/index.js"
16+
}
17+
}
18+
},
19+
"files": [
20+
"dist"
21+
],
22+
"scripts": {
23+
"build": "tsup --format esm --dts",
24+
"watch": "tsc --watch",
25+
"dev": "tsup --format esm --dts --watch",
26+
"build:docs": "cd docs && pnpm run build",
27+
"test": "vitest run",
28+
"test:coverage": "vitest run --coverage",
29+
"test:watch": "vitest"
30+
},
31+
"author": "",
32+
"license": "MIT",
33+
"devDependencies": {
34+
"@eslint/js": "9.16.0",
35+
"@rollup/plugin-commonjs": "25.0.8",
36+
"@rollup/plugin-json": "6.1.0",
37+
"@rollup/plugin-node-resolve": "15.3.0",
38+
"@rollup/plugin-replace": "5.0.7",
39+
"@rollup/plugin-terser": "0.1.0",
40+
"@rollup/plugin-typescript": "11.1.6",
41+
"@solana/web3.js": "1.95.8",
42+
"@types/fluent-ffmpeg": "2.1.27",
43+
"@types/jest": "29.5.14",
44+
"@types/mocha": "10.0.10",
45+
"@types/node": "22.8.4",
46+
"@types/pdfjs-dist": "2.10.378",
47+
"@types/tar": "6.1.13",
48+
"@types/wav-encoder": "1.3.3",
49+
"@typescript-eslint/eslint-plugin": "8.16.0",
50+
"@typescript-eslint/parser": "8.16.0",
51+
"@vitest/coverage-v8": "2.1.5",
52+
"jest": "29.7.0",
53+
"lint-staged": "15.2.10",
54+
"nodemon": "3.1.7",
55+
"pm2": "5.4.3",
56+
"rimraf": "6.0.1",
57+
"rollup": "2.79.2",
58+
"ts-jest": "29.2.5",
59+
"ts-node": "10.9.2",
60+
"tslib": "2.8.1",
61+
"tsup": "8.3.5",
62+
"typescript": "5.6.3"
63+
},
64+
"dependencies": {
65+
"@ai-sdk/anthropic": "0.0.56",
66+
"@ai-sdk/google": "0.0.55",
67+
"@ai-sdk/google-vertex": "0.0.43",
68+
"@ai-sdk/groq": "0.0.3",
69+
"@ai-sdk/mistral": "1.0.9",
70+
"@ai-sdk/openai": "1.0.5",
71+
"@ai-sdk/amazon-bedrock": "1.1.0",
72+
"@fal-ai/client": "1.2.0",
73+
"@tavily/core": "^0.0.2",
74+
"@types/uuid": "10.0.0",
75+
"ai": "3.4.33",
76+
"anthropic-vertex-ai": "1.0.2",
77+
"dotenv": "16.4.5",
78+
"fastembed": "1.14.1",
79+
"fastestsmallesttextencoderdecoder": "1.0.22",
80+
"gaxios": "6.7.1",
81+
"glob": "11.0.0",
82+
"handlebars": "^4.7.8",
83+
"js-sha1": "0.7.0",
84+
"js-tiktoken": "1.0.15",
85+
"langchain": "0.3.6",
86+
"ollama-ai-provider": "0.16.1",
87+
"openai": "4.73.0",
88+
"pino": "^9.6.0",
89+
"pino-pretty": "^13.0.0",
90+
"tinyld": "1.3.4",
91+
"together-ai": "0.7.0",
92+
"unique-names-generator": "4.7.1",
93+
"uuid": "11.0.3",
94+
"zod": "3.23.8"
95+
}
9696
}

0 commit comments

Comments
 (0)