├── .gitignore ├── README.md ├── claude-3-agent ├── .env.example ├── agent.py ├── claude.py ├── deepgram.py └── requirements.txt ├── deepgram-transcription-agent ├── .env.example ├── agent.py └── requirements.txt ├── hive-moderation-agent ├── .env.example ├── agent.py ├── hive_data_classes.py └── requirements.txt └── text-streaming-agent ├── .env.example ├── agent.py ├── chatgpt.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/README.md -------------------------------------------------------------------------------- /claude-3-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/claude-3-agent/.env.example -------------------------------------------------------------------------------- /claude-3-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/claude-3-agent/agent.py -------------------------------------------------------------------------------- /claude-3-agent/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/claude-3-agent/claude.py -------------------------------------------------------------------------------- /claude-3-agent/deepgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/claude-3-agent/deepgram.py -------------------------------------------------------------------------------- /claude-3-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/claude-3-agent/requirements.txt -------------------------------------------------------------------------------- /deepgram-transcription-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/deepgram-transcription-agent/.env.example -------------------------------------------------------------------------------- /deepgram-transcription-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/deepgram-transcription-agent/agent.py -------------------------------------------------------------------------------- /deepgram-transcription-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/deepgram-transcription-agent/requirements.txt -------------------------------------------------------------------------------- /hive-moderation-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/hive-moderation-agent/.env.example -------------------------------------------------------------------------------- /hive-moderation-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/hive-moderation-agent/agent.py -------------------------------------------------------------------------------- /hive-moderation-agent/hive_data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/hive-moderation-agent/hive_data_classes.py -------------------------------------------------------------------------------- /hive-moderation-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/hive-moderation-agent/requirements.txt -------------------------------------------------------------------------------- /text-streaming-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/text-streaming-agent/.env.example -------------------------------------------------------------------------------- /text-streaming-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/text-streaming-agent/agent.py -------------------------------------------------------------------------------- /text-streaming-agent/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/text-streaming-agent/chatgpt.py -------------------------------------------------------------------------------- /text-streaming-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsa/livekit-agents/HEAD/text-streaming-agent/requirements.txt --------------------------------------------------------------------------------