diff --git a/package.json b/package.json index 4ad4651..a4f3131 100644 --- a/package.json +++ b/package.json @@ -22,23 +22,23 @@ "pnpm": ">=10.0.0" }, "devDependencies": { - "@eslint/js": "^9.39.2", + "@eslint/js": "^9.39.3", "@trivago/prettier-plugin-sort-imports": "^5.2.2", "@types/node": "^22.19.11", - "eslint": "^9.39.2", + "eslint": "^9.39.3", "globals": "^16.5.0", "jiti": "^2.6.1", "typescript": "^5.9.3", - "typescript-eslint": "^8.55.0", + "typescript-eslint": "^8.56.0", "vite": "^7.3.1", "vitest": "^4.0.18" }, "dependencies": { - "@livekit/agents": "^1.0.43", - "@livekit/agents-plugin-livekit": "^1.0.43", - "@livekit/agents-plugin-silero": "^1.0.43", + "@livekit/agents": "^1.0.46", + "@livekit/agents-plugin-livekit": "^1.0.46", + "@livekit/agents-plugin-silero": "^1.0.46", "@livekit/noise-cancellation-node": "^0.1.9", - "dotenv": "^17.2.4", + "dotenv": "^17.3.1", "zod": "^3.25.76" } } diff --git a/src/agent.test.ts b/src/agent.test.ts index c9a0fe6..56453dc 100644 --- a/src/agent.test.ts +++ b/src/agent.test.ts @@ -5,8 +5,9 @@ import { Agent } from './agent'; dotenv.config({ path: '.env.local' }); -// Initialize logger for testing -initializeLogger({ pretty: false, level: 'debug' }); +// Initialize logger for testing. +// You may wish to adjust the log level to print more or less information during test runs. +initializeLogger({ pretty: true, level: 'warn' }); describe('agent evaluation', () => { let session: voice.AgentSession;