Skip to content

FrontDeskAgent v0.1.0

Choose a tag to compare

@ResearchForumOnline ResearchForumOnline released this 04 Jul 12:40

FrontDeskAgent v0.1.0 is the first public release of the CPU-first self-hosted AI receptionist.

Highlights:

  • Flask + SQLite self-hosted front desk console.
  • CPU-first local AI routing with OpenZero, Ollama, llama.cpp, OpenAI-compatible fallback, and rules mode.
  • Twilio voice webhook for inbound caller speech capture.
  • Twilio/Telnyx/custom SMS and outbound callback hooks.
  • Email intake, SMTP staff handoffs, CRM/booking webhooks, and calendar feed.
  • Optional Voicebox local voice output for staff lead alerts and agent speech.
  • /api/voice/speak endpoint for local Voicebox speech workflows.
  • VOICEBOX_ALERT_ON_LEAD=true for spoken lead alerts.
  • Setup wizard, Docker/systemd examples, docs, and tests.

Install:

git clone https://github.com/ResearchForumOnline/FrontDeskAgent.git
cd FrontDeskAgent
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m frontdeskagent.setup_wizard
python -m frontdeskagent.app

Voicebox local voice:

VOICE_TTS_PROVIDER=voicebox
VOICEBOX_URL=http://127.0.0.1:17493
VOICEBOX_PROFILE=Morgan
VOICEBOX_ALERT_ON_LEAD=true

Website: https://frontdeskagent.online/
Docs: https://github.com/ResearchForumOnline/FrontDeskAgent/blob/main/docs/INTEGRATIONS.md