经 AI Skill Hub 精选评估,语音代理构建 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
语音代理构建 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
语音代理构建 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install tone
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install tone
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/tonehq/tone
cd tone
pip install -e .
# 验证安装
python -c "import tone; print('安装成功')"
# 命令行使用
tone --help
# 基本用法
tone input_file -o output_file
# Python 代码中调用
import tone
# 示例
result = tone.process("input")
print(result)
# tone 配置文件示例(config.yml) app: name: "tone" debug: false log_level: "INFO" # 运行时指定配置文件 tone --config config.yml # 或通过环境变量配置 export TONE_API_KEY="your-key" export TONE_OUTPUT_DIR="./output"
This project is an open source AI Voice agent Builder that empowers developers and businesses to create sophisticated voice agents without vendor lock-in. Built with reliability, observability, and real-time testing at its core.
python --version)The open source alternative to Retell, Synthflow, and Vapi - Build reliable, observable, and easily testable AI voice agents with a focus on developer experience.
1. Clone the repository
git clone https://github.com/yourusername/ai-voice-agent-builder.git
cd ai-voice-agent-builder
2. Backend Setup
# Create virtual environment (requires Python 3.10+)
python -m venv venv
# Activate the virtual environment
source venv/bin/activate # macOS / Linux
# venv\Scripts\activate # Windows (PowerShell/CMD)
# Install dependencies
pip install -r requirements.txt
# Set up environment variables
# Create a .env file in the project root with the required configuration:
# DATABASE_URL=postgresql://<user>:<password>@<host>/<dbname>
# JWT_SECRET_KEY=<your-secret-key>
# ENCRYPTION_KEY=<your-encryption-key>
# Run database migrations
alembic upgrade head
# Seed service providers, models, and voices
python dev/seed.py
# Start the backend server with uvicorn (auto-reload for development)
uvicorn main:app --host 0.0.0.0 --port 8000 --reload
# Enterprise edition
# uvicorn main_ee:app --host 0.0.0.0 --port 8000 --reload
Seed Data (dev/seed.py)
The seed script sets up your initial data — it creates an owner user, organization, and populates all supported service providers (LLM, STT, TTS), their models, and voices from dev/dev-data.json.
When you run python dev/seed.py, it will interactively prompt you for: - Organization name — your organization/workspace name - Owner email — the admin user's email (used for login) - Password — must be 8+ characters with uppercase, lowercase, digit, and special character
To auto-populate API keys for providers during seeding, set the corresponding environment variables in your .env file before running the script. For example:
OPENAI_API_KEY=sk-...
DEEPGRAM_API_KEY=...
ELEVENLABS_API_KEY=...
CARTESIA_API_KEY=...
Any provider whose API key env var is not set will be seeded without a key — you can add keys later through the UI.
3. Frontend Setup
cd frontend
# Install dependencies
npm install
# Start the frontend dev server (Next.js + Turbopack on :3000)
npm run dev
4. Access the application - Frontend: http://localhost:3000 - Backend API: http://localhost:8000 - API Documentation: http://localhost:8000/docs
```bash
docker-compose up -d
Our codebase follows a clean architecture pattern:
core/
├── api/v1/ # FastAPI route handlers
│ ├── agents.py
│ ├── auth.py
│ ├── channels.py
│ ├── models.py
│ ├── organizations.py
│ ├── service_providers.py
│ └── voices.py
├── services/ # Business logic layer
│ ├── agent_service.py
│ ├── agent_factory_service.py
│ ├── voice_service.py
│ ├── channel_service.py
│ └── model_service.py
├── models/ # SQLAlchemy ORM models
│ ├── agent.py
│ ├── organization.py
│ ├── service_provider.py
│ ├── voice.py
│ └── user.py
├── middleware/ # Auth & request middleware
│ └── auth.py
├── utils/ # Utility functions
│ └── encryption.py # AES encryption for API keys
├── bot.py # Voice pipeline entry point
└── database/ # DB session & connection
dev/
├── seed.py # Data seeding script
└── dev-data.json # Provider/model/voice definitions
高质量的AI语音代理构建平台
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:语音代理构建 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | tone |
| 原始描述 | 开源AI工作流:Open source Ai voice agent builder platform。⭐9 · Python |
| Topics | AI语音代理工作流 |
| GitHub | https://github.com/tonehq/tone |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-29 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端