Skip to content

Commit d4ce925

Browse files
committed
Bumps node modules
1 parent 2ef4cf0 commit d4ce925

7 files changed

Lines changed: 623 additions & 161 deletions

File tree

agents/agent-mastra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"license": "ISC",
1515
"type": "module",
1616
"dependencies": {
17-
"@ai-sdk/amazon-bedrock": "^3.0.23",
17+
"@ai-sdk/amazon-bedrock": "^2.2.12",
1818
"@ai-sdk/azure": "^2.0.35",
1919
"@mastra/core": "^0.18.0",
2020
"@mastra/libsql": "^0.14.3",

agents/agent-voltagent/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This project uses VoltAgent, a framework for building AI agents with the followi
3636

3737
## Project Structure
3838

39-
```
39+
```text
4040
.
4141
├── src/
4242
│ └── index.ts # Main application entry point with agent definition
@@ -48,4 +48,4 @@ This project uses VoltAgent, a framework for building AI agents with the followi
4848

4949
## License
5050

51-
MIT
51+
MIT

agents/agent-voltagent/package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@
1616
"volt": "volt"
1717
},
1818
"dependencies": {
19-
"@ai-sdk/amazon-bedrock": "^2.2.12",
19+
"@ai-sdk/amazon-bedrock": "^3.0.23",
2020
"@voltagent/cli": "^0.1.10",
21-
"@voltagent/core": "^0.1.86",
22-
"@voltagent/vercel-ai": "^0.1.18",
21+
"@voltagent/core": "^1.1.19",
22+
"@voltagent/libsql": "^1.0.6",
23+
"@voltagent/logger": "^1.0.2",
24+
"@voltagent/server-hono": "^1.0.13",
25+
"ai": "^5.0.52",
26+
"dotenv": "^16.6.1",
27+
"hono": "^4.9.8",
2328
"zod": "3.24.2"
2429
},
2530
"devDependencies": {
Lines changed: 35 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,46 @@
1-
import { VoltAgent, Agent } from "@voltagent/core";
2-
import { VercelAIProvider } from "@voltagent/vercel-ai";
1+
import 'dotenv/config';
2+
import { VoltAgent, VoltOpsClient, Agent, Memory } from '@voltagent/core';
3+
import { LibSQLMemoryAdapter } from '@voltagent/libsql';
4+
import { createPinoLogger } from '@voltagent/logger';
5+
import { bedrock } from '@ai-sdk/amazon-bedrock';
6+
import { honoServer } from '@voltagent/server-hono';
37

4-
import { bedrock } from "@ai-sdk/amazon-bedrock";
8+
import { cors } from 'hono/cors';
9+
10+
// Create a logger instance
11+
const logger = createPinoLogger({
12+
name: 'agent',
13+
level: 'info',
14+
});
15+
16+
// Configure persistent memory (LibSQL / SQLite)
17+
const memory = new Memory({
18+
storage: new LibSQLMemoryAdapter({
19+
url: 'file:./.voltagent/memory.db',
20+
logger: logger.child({ component: 'libsql' }),
21+
}),
22+
});
523

624
const agent = new Agent({
7-
name: "agent-voltagent",
8-
instructions: "A helpful assistant that answers questions without using tools",
9-
llm: new VercelAIProvider(),
10-
model: bedrock('us.amazon.nova-premier-v1:0'),
25+
name: 'agent',
26+
instructions: 'A helpful assistant that can check weather and help with various tasks',
27+
model: bedrock('openai.gpt-oss-20b-1:0'),
1128
tools: [],
29+
memory,
1230
});
1331

1432
new VoltAgent({
1533
agents: {
1634
agent,
1735
},
36+
server: honoServer({
37+
configureApp: (app) => {
38+
app.use('*', cors());
39+
},
40+
}),
41+
logger,
42+
voltOpsClient: new VoltOpsClient({
43+
publicKey: process.env.VOLTAGENT_PUBLIC_KEY || '',
44+
secretKey: process.env.VOLTAGENT_SECRET_KEY || '',
45+
}),
1846
});

mcp/clients/langgraph-mcp-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"vitest": "^3.2.4"
3636
},
3737
"dependencies": {
38-
"@aws-sdk/client-bedrock-runtime": "^3.895.0",
38+
"@aws-sdk/client-bedrock-runtime": "^3.896.0",
3939
"@inquirer/prompts": "^7.8.6",
4040
"@langchain/aws": "^0.1.15",
4141
"@langchain/core": "^0.3.77",

mcp/clients/mastra-mcp-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"node": ">=20.9.0"
1818
},
1919
"dependencies": {
20-
"@ai-sdk/amazon-bedrock": "^3.0.23",
21-
"@ai-sdk/azure": "^2.0.35",
20+
"@ai-sdk/amazon-bedrock": "^2.2.12",
21+
"@ai-sdk/azure": "^1.3.25",
2222
"@mastra/core": "^0.18.0",
2323
"@mastra/loggers": "^0.10.13",
2424
"@mastra/mcp": "^0.13.1",

pnpm-lock.yaml

Lines changed: 574 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)