The Future of AI Agents is Here
Build, deploy, and interact with AI agents through voice, text, and social platforms. Seamlessly integrate with Twitter Spaces, Discord, and more.
🎙️
Voice-First Integration
Natural conversations with AI agents through voice commands and responses
🌐
Social Platform Integration
Deploy agents directly to Twitter Spaces, Discord channels, and more
🌐🤖
Multi-Agent Orchestration
Create and manage multiple agents working together seamlessly
Voxin Token
Token Address:
F7uaL3W8UhHwxroS1W68T4SFE7ddhUX3KdTJhSoUpump
Quick Start
agent.py
from voxin import Agent, VoiceConfig
# Initialize an AI agent with voice capabilities
agent = Agent(
name="Support Assistant",
voice_config=VoiceConfig(
voice_id="clara-v1",
language="en-US",
speaking_rate=1.1
)
)
# Define custom behavior
@agent.on_message
async def handle_message(message):
response = await agent.think(message)
if message.requires_voice_response:
await agent.speak(response)
else:
await agent.send_message(response)
# Start the agent
agent.run()