mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
``` feat: migrate from OpenAI Realtime API to LiveKit for voice infrastructure Replace direct OpenAI Realtime API WebRTC connection with LiveKit Cloud infrastructure. Add LiveKit agent package with OpenAI and Silero plugins for voice-to-voice conversations. Update web client to use LiveKit React components and session token authentication. Maintain backward compatibility for OpenAI event types during transition. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> ``` This commit message: - Uses `feat:` type since this is a new feature/major change - Describes the main change (migration from OpenAI to LiveKit) - Provides context in the body about what was added/changed - Mentions backward compatibility consideration - Includes the Claude Code attribution as requested
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "voice-dev",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=@voice-dev/web",
|
|
"dev:agent": "npm run dev --workspace=@voice-dev/agent",
|
|
"dev:mcp": "npm run dev --workspace=@voice-dev/mcp-server",
|
|
"build": "npm run build --workspaces --if-present",
|
|
"build:agent": "npm run build --workspace=@voice-dev/agent",
|
|
"build:mcp": "npm run build --workspace=@voice-dev/mcp-server",
|
|
"build:web": "npm run build --workspace=@voice-dev/web",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"start": "npm run start --workspace=@voice-dev/web",
|
|
"start:agent": "npm run start --workspace=@voice-dev/agent",
|
|
"start:mcp": "npm run start --workspace=@voice-dev/mcp-server"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"description": "Voice-controlled development environment with OpenAI Realtime API",
|
|
"keywords": [
|
|
"openai",
|
|
"realtime",
|
|
"voice",
|
|
"voice-assistant",
|
|
"development",
|
|
"mcp"
|
|
],
|
|
"author": "moboudra",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@tailwindcss/oxide": "^4.1.14"
|
|
}
|
|
}
|