Analytics and Evaluation Tool for Voice Agents
Project description
MixedVoices: Analytics and Evals for Voice Agents
MixedVoices is an analytics and evaluation tool for voice agents. Track, visualize, and optimize agent performance through conversation analysis, call quality metrics and call flow charts. Run simulations to test the agent before pushing to production.
Demo
Features
Core Capabilities
- 🌐 Effortless Integration: Python API designed for quick integration, get started in minutes
- 🖥️ Interactive Dashboard: User-friendly interface for all operations
- 📊 Call Flow Analysis: Interactive flowcharts showing conversation paths, patterns and success rates
- 🔄 Version Control: Track and compare agent behavior across different iterations
- 🎯 ML Performance Metrics: Track hallucinations, call scheduling, conciseness, and empathy scores
- 📱 Call Quality Analysis: Monitor interruptions, latency, signal-to-noise ratio, and words per minute
- 🧪 Agent Evaluation: Test and validate agent performance through simulations and stress testing
Installation
pip install mixedvoices
Quick Start
Configure
Before using MixedVoices, configure the models used for various operations by using mixedvoices config.
By default all analytics and transcription happens using OpenAI models. Currently analytics supports all OpenAI GPT models from gpt-3.5 onwards. Transcription supports OpenAI whisper and Deepgram nova-2
mixedvoices config
According to the chosen models, set the environment keys: OPENAI_API_KEY, DEEPGRAM_API_KEY (if nova-2 selected for transcription)
Analytics
Using Python API to analyze recordings
import mixedvoices as mv
from mixedvoices.metrics import Metric, empathy # empathy is an inbuilt metric
# binary=>PASS/FAIL, continuous=>0-10
custom_metric = Metric(name="custom", definition="....", scoring="binary")
# Create or load a project
project = mv.create_project("dental_clinic", metrics=[empathy, custom_metric])
project = mv.load_project("dental_clinic") # or load existing project
v1 = project.create_version("v1", prompt="You are a ...") # Create a version
v1 = project.load_version("v1") # or load existing version
# Analyze call, this is blocking, takes a few seconds
v1.add_recording("path/to/call.wav")
# non blocking mode in a separate thread, instantaneous
v1.add_recording("path/to/call.wav", blocking=False)
All recordings added go through the following analysis:-
- Transcription with word level timestamps
- Summarization of transcript
- Classification as Successful/Failed (If success criteria set)
- Breakdown into flow steps
- Metric analysis and scoring
- Call quality analysis (noise, words per minute, latency, interruptions)
Evaluation
Evaluate custom agent
import mixedvoices as mv
from typing import Tuple
# Create agent by inheriting from BaseAgent. Must implement respond
class DentalAgent(mv.BaseAgent):
def __init__(self, model="gpt-4"):
self.agent = YourAgentImplementation(model=model)
def respond(self, input_text: str) -> Tuple[str, bool]:
response = self.agent.get_response(input_text)
has_conversation_ended = check_conversation_ended(response)
return response, has_conversation_ended
project = mv.load_project("receptionist")
v1 = project.load_version("v1")
# Generate test cases using multiple sources
test_generator = mv.TestCaseGenerator(v1.prompt)
test_generator.add_from_transcripts([transcript]) # Add from conversation transcripts
test_generator.add_edge_cases(2) # Add edge cases
test_generator.add_from_descriptions(["A man from New York, in a hurry"]) # Add from descriptions
test_generator.add_from_project(project) # Add based on project's recordings
test_generator.add_from_version(v1) # Add based on version's recordings
test_cases = test_generator.generate()
# Create and run evaluator, can use a subset of metrics
evaluator = project.create_evaluator(test_cases, metric_names=["empathy"])
evaluator.run(v1, DentalAgent, agent_starts=False, model="gpt-4o")
Evaluate Bland AI Agent
# same as above, except instead of defining custom agent, can directly use mv.BlandAgent
evaluator.run(v1, mv.BlandAgent, agent_starts=True, auth_token="", pathway_id="", start_node_id="")
Using Dashboard
Launch the interactive dashboard from the Command Line:
mixedvoices dashboard
Development Setup
git clone https://github.com/MixedVoices/MixedVoices.git
pip install -e ".[dev]"
License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
Roadmap
- Support other APIs and Open Source LLMs
- Team collaboration features
- Voice based evaluation
Made with ❤️ by the MixedVoices Team
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mixedvoices-1.0.1.tar.gz.
File metadata
- Download URL: mixedvoices-1.0.1.tar.gz
- Upload date:
- Size: 77.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
045e3892e084456be4e9d037facaf4b9c9e2e6573601ae429565f97170c49626
|
|
| MD5 |
6cf42264de1c5387374420850af2e223
|
|
| BLAKE2b-256 |
ec2265cf5662c334eebe507265641a9f512c5c821e869ae97af292b714d10cff
|
File details
Details for the file mixedvoices-1.0.1-py3-none-any.whl.
File metadata
- Download URL: mixedvoices-1.0.1-py3-none-any.whl
- Upload date:
- Size: 105.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b241f55230938d0e21c3992ff20d496d94dc4a2ce277c33047027453cdf66bd8
|
|
| MD5 |
326ac93c918a330057ea3f8a5b62836d
|
|
| BLAKE2b-256 |
b092d0bcdfaa72a34553f6d9b478c98cb1583f462e35b30ff2cbde971ed533e8
|