mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-22 16:48:57 +00:00
Merge edmundman's UFC_FIGHT_PREDICTOR contribution
This commit is contained in:
parent
0e660a7429
commit
606b917042
73 changed files with 25564 additions and 3223 deletions
22
environments/community/router_env/engine/start_stone_agent.sh
Executable file
22
environments/community/router_env/engine/start_stone_agent.sh
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Activate the Python virtual environment
|
||||
source .router_env/bin/activate
|
||||
|
||||
# Install required dependencies if needed
|
||||
pip install librosa numpy
|
||||
|
||||
# Set the LiveKit server URL and API keys (update these with your actual values)
|
||||
export LIVEKIT_URL="pass"
|
||||
export LIVEKIT_API_KEY="pass"
|
||||
export LIVEKIT_API_SECRET="pass"
|
||||
|
||||
# Set OpenAI API key (replace with your actual key)
|
||||
export OPENAI_API_KEY="pass"
|
||||
|
||||
# Set the room name to match the one in token-server.js
|
||||
export LIVEKIT_ROOM="stone-router-voice-agent"
|
||||
|
||||
# Start the agent
|
||||
cd engine
|
||||
python agents/stone_agent.py
|
||||
Loading…
Add table
Add a link
Reference in a new issue