Back to Home

Documentation

Welcome to the Voxin documentation. Our framework enables developers to create powerful AI agents that can interact through voice, text, and social platforms.

What You'll Find Here

Core Features

  • Voice Integration
  • Social Platform Connectors
  • Multi-Agent Systems
  • Advanced Learning Capabilities

Integration Guides

  • Twitter Spaces
  • Discord Servers
  • Custom Voice Interfaces
  • API Documentation

Quick Start Guide

Installation

pip install voxin

Basic Usage

Create your first voice-enabled AI agent with just a few lines of code:

example.py
123456789101112131415161718192021222324
from voxin import Agent, VoiceConfig# Initialize voice-enabled AI agentagent = Agent( name="Support Assistant", voice_config=VoiceConfig( voice_id="clara-v1", language="en-US", speaking_rate=1.1 ))# Define custom behavior@agent.on_messageasync 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 agentagent.run()

Key Features

  • Voice synthesis and recognition built-in
  • Multi-platform support (Discord, Twitter, Custom Web Apps)
  • Advanced context management
  • Custom behavior pipelines

Next Steps

Check out our comprehensive guides: