mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-24 17:04:55 +00:00
Reorganize community environments - Move lean_proof_env, router_env, and philosophical_rlaif_env.py to environments/community/ - Add comprehensive README for community environments - This organizes community-contributed environments into a dedicated community folder for better maintainability and discoverability
This commit is contained in:
parent
945ea30c3a
commit
e85a170c34
53 changed files with 85 additions and 0 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