refactor: composition root in lifespan, break core↔services cycle, shared data layer
The gateway was the composition root, device registry, inbound-call policy, and call-operations service in one class, with core↔services circular imports papered over by function-local imports, wiring done by assigning private attributes, and MCP tools duplicating REST query logic against their own sessions. Composition: - main.py's lifespan now builds every service and wires them by constructor/registration. gateway.from_config() is gone; core/ no longer imports services/ anywhere — the cycle is dead. - Inbound-call policy moved to ReceptionistService.on_inbound_call (routing evaluation, reject/answer, screening dispatch); wired as the engine's on_incoming_call by the lifespan. Receptionist deps (tts/transcription/recording/routing) are constructor-injected — no more gateway._tts reach-through or importing hold_slayer's private _get_llm (now services.llm_client.get_llm, shared). - Hold-slayer launch goes through a mode-handler registry (register_mode_handler); the gateway no longer knows the service's type. CallManager takes on_call_ended in its constructor. - build_sip_engine() is a pure function taking explicit callbacks. - api/routing.py uses the routing service from app.state via a proper dependency instead of gateway._routing. Shared data layer: - db.session_scope() is the one session convention (get_db wraps it). - services/call_persistence.py gains the query/write functions and the single StoredCallFlow→CallFlow mapper; api/call_flows.py, api/call_history.py, and the six DB-touching MCP tools are thin wrappers over them — the two surfaces can't drift. - legs_for_call() replaces the three private _call_legs scans (gateway transfer/hangup, REST dtmf, MCP dtmf). 7 new tests (mode-handler launch, on_call_ended hook, receptionist inbound answer/reject, call-flow CRUD round-trip and history routes against real SQLite through the shared layer). aiosqlite added to dev deps for that. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,324 +0,0 @@
|
||||
"""
|
||||
Call Analytics Service — Tracks call metrics and generates insights.
|
||||
|
||||
Monitors call patterns, hold times, success rates, and IVR navigation
|
||||
efficiency. Provides data for the dashboard and API.
|
||||
"""
|
||||
|
||||
import logging
|
||||
from collections import defaultdict
|
||||
from datetime import datetime, timedelta
|
||||
from typing import Any, Optional
|
||||
|
||||
from models.call import ActiveCall, AudioClassification, CallMode, CallStatus
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class CallAnalytics:
|
||||
"""
|
||||
In-memory call analytics engine.
|
||||
|
||||
Tracks:
|
||||
- Call success/failure rates
|
||||
- Hold time statistics (avg, min, max, p95)
|
||||
- IVR navigation efficiency
|
||||
- Human detection accuracy
|
||||
- Per-number/company patterns
|
||||
- Time-of-day patterns
|
||||
|
||||
In production, this would be backed by TimescaleDB or similar.
|
||||
For now, we keep rolling windows in memory.
|
||||
"""
|
||||
|
||||
def __init__(self, max_history: int = 10000):
|
||||
self._max_history = max_history
|
||||
self._call_records: list[CallRecord] = []
|
||||
self._company_stats: dict[str, CompanyStats] = defaultdict(CompanyStats)
|
||||
|
||||
# ================================================================
|
||||
# Record Calls
|
||||
# ================================================================
|
||||
|
||||
def record_call(self, call: ActiveCall) -> None:
|
||||
"""
|
||||
Record a completed call for analytics.
|
||||
|
||||
Called when a call ends (from CallManager).
|
||||
"""
|
||||
record = CallRecord(
|
||||
call_id=call.id,
|
||||
remote_number=call.remote_number,
|
||||
mode=call.mode,
|
||||
status=call.status,
|
||||
intent=call.intent,
|
||||
started_at=call.created_at,
|
||||
duration_seconds=call.duration,
|
||||
hold_time_seconds=call.hold_time,
|
||||
classification_history=[
|
||||
r.audio_type.value for r in call.classification_history
|
||||
],
|
||||
transcript_chunks=list(call.transcript_chunks),
|
||||
services=list(call.services),
|
||||
)
|
||||
|
||||
self._call_records.append(record)
|
||||
|
||||
# Trim history
|
||||
if len(self._call_records) > self._max_history:
|
||||
self._call_records = self._call_records[-self._max_history :]
|
||||
|
||||
# Update company stats
|
||||
company_key = self._normalize_number(call.remote_number)
|
||||
self._company_stats[company_key].update(record)
|
||||
|
||||
logger.debug(
|
||||
f"📊 Recorded call {call.id}: "
|
||||
f"{call.status.value}, {call.duration}s, hold={call.hold_time}s"
|
||||
)
|
||||
|
||||
# ================================================================
|
||||
# Aggregate Stats
|
||||
# ================================================================
|
||||
|
||||
def get_summary(self, hours: int = 24) -> dict[str, Any]:
|
||||
"""Get summary statistics for the last N hours."""
|
||||
cutoff = datetime.now() - timedelta(hours=hours)
|
||||
recent = [r for r in self._call_records if r.started_at >= cutoff]
|
||||
|
||||
if not recent:
|
||||
return {
|
||||
"period_hours": hours,
|
||||
"total_calls": 0,
|
||||
"success_rate": 0.0,
|
||||
"avg_hold_time": 0.0,
|
||||
"avg_duration": 0.0,
|
||||
}
|
||||
|
||||
total = len(recent)
|
||||
successful = sum(1 for r in recent if r.status in (
|
||||
CallStatus.COMPLETED, CallStatus.BRIDGED, CallStatus.HUMAN_DETECTED
|
||||
))
|
||||
failed = sum(1 for r in recent if r.status == CallStatus.FAILED)
|
||||
|
||||
hold_times = [r.hold_time_seconds for r in recent if r.hold_time_seconds > 0]
|
||||
durations = [r.duration_seconds for r in recent if r.duration_seconds > 0]
|
||||
|
||||
hold_slayer_calls = [r for r in recent if r.mode == CallMode.HOLD_SLAYER]
|
||||
hold_slayer_success = sum(
|
||||
1 for r in hold_slayer_calls
|
||||
if r.status in (CallStatus.BRIDGED, CallStatus.HUMAN_DETECTED)
|
||||
)
|
||||
|
||||
return {
|
||||
"period_hours": hours,
|
||||
"total_calls": total,
|
||||
"successful": successful,
|
||||
"failed": failed,
|
||||
"success_rate": round(successful / total, 3) if total else 0.0,
|
||||
"avg_duration": round(sum(durations) / len(durations), 1) if durations else 0.0,
|
||||
"max_duration": max(durations) if durations else 0,
|
||||
"hold_time": {
|
||||
"avg": round(sum(hold_times) / len(hold_times), 1) if hold_times else 0.0,
|
||||
"min": min(hold_times) if hold_times else 0,
|
||||
"max": max(hold_times) if hold_times else 0,
|
||||
"p95": self._percentile(hold_times, 95) if hold_times else 0,
|
||||
"total": sum(hold_times),
|
||||
},
|
||||
"hold_slayer": {
|
||||
"total": len(hold_slayer_calls),
|
||||
"success": hold_slayer_success,
|
||||
"success_rate": round(
|
||||
hold_slayer_success / len(hold_slayer_calls), 3
|
||||
) if hold_slayer_calls else 0.0,
|
||||
},
|
||||
"by_mode": self._group_by_mode(recent),
|
||||
"by_hour": self._group_by_hour(recent),
|
||||
}
|
||||
|
||||
def get_company_stats(self, number: str) -> dict[str, Any]:
|
||||
"""Get stats for a specific company/number."""
|
||||
key = self._normalize_number(number)
|
||||
stats = self._company_stats.get(key)
|
||||
if not stats:
|
||||
return {"number": number, "total_calls": 0}
|
||||
return stats.to_dict(number)
|
||||
|
||||
def get_top_numbers(self, limit: int = 10) -> list[dict[str, Any]]:
|
||||
"""Get the most-called numbers with their stats."""
|
||||
sorted_stats = sorted(
|
||||
self._company_stats.items(),
|
||||
key=lambda x: x[1].total_calls,
|
||||
reverse=True,
|
||||
)[:limit]
|
||||
return [stats.to_dict(number) for number, stats in sorted_stats]
|
||||
|
||||
# ================================================================
|
||||
# Hold Time Trends
|
||||
# ================================================================
|
||||
|
||||
def get_hold_time_trend(
|
||||
self,
|
||||
number: Optional[str] = None,
|
||||
days: int = 7,
|
||||
) -> list[dict]:
|
||||
"""
|
||||
Get hold time trend data for graphing.
|
||||
|
||||
Returns daily average hold times for the last N days.
|
||||
"""
|
||||
cutoff = datetime.now() - timedelta(days=days)
|
||||
records = [r for r in self._call_records if r.started_at >= cutoff]
|
||||
|
||||
if number:
|
||||
key = self._normalize_number(number)
|
||||
records = [r for r in records if self._normalize_number(r.remote_number) == key]
|
||||
|
||||
# Group by day
|
||||
by_day: dict[str, list[int]] = defaultdict(list)
|
||||
for r in records:
|
||||
day = r.started_at.strftime("%Y-%m-%d")
|
||||
if r.hold_time_seconds > 0:
|
||||
by_day[day].append(r.hold_time_seconds)
|
||||
|
||||
trend = []
|
||||
for i in range(days):
|
||||
date = (datetime.now() - timedelta(days=days - 1 - i)).strftime("%Y-%m-%d")
|
||||
times = by_day.get(date, [])
|
||||
trend.append({
|
||||
"date": date,
|
||||
"avg_hold_time": round(sum(times) / len(times), 1) if times else 0,
|
||||
"call_count": len(times),
|
||||
"max_hold_time": max(times) if times else 0,
|
||||
})
|
||||
|
||||
return trend
|
||||
|
||||
# ================================================================
|
||||
# Helpers
|
||||
# ================================================================
|
||||
|
||||
@staticmethod
|
||||
def _normalize_number(number: str) -> str:
|
||||
"""Normalize phone number for grouping."""
|
||||
# Strip formatting, keep last 10 digits
|
||||
digits = "".join(c for c in number if c.isdigit())
|
||||
return digits[-10:] if len(digits) >= 10 else digits
|
||||
|
||||
@staticmethod
|
||||
def _percentile(values: list, pct: int) -> float:
|
||||
"""Calculate percentile value."""
|
||||
if not values:
|
||||
return 0.0
|
||||
sorted_vals = sorted(values)
|
||||
idx = int(len(sorted_vals) * pct / 100)
|
||||
idx = min(idx, len(sorted_vals) - 1)
|
||||
return float(sorted_vals[idx])
|
||||
|
||||
@staticmethod
|
||||
def _group_by_mode(records: list["CallRecord"]) -> dict[str, int]:
|
||||
"""Group call counts by mode."""
|
||||
by_mode: dict[str, int] = defaultdict(int)
|
||||
for r in records:
|
||||
by_mode[r.mode.value] += 1
|
||||
return dict(by_mode)
|
||||
|
||||
@staticmethod
|
||||
def _group_by_hour(records: list["CallRecord"]) -> dict[int, int]:
|
||||
"""Group call counts by hour of day."""
|
||||
by_hour: dict[int, int] = defaultdict(int)
|
||||
for r in records:
|
||||
by_hour[r.started_at.hour] += 1
|
||||
return dict(sorted(by_hour.items()))
|
||||
|
||||
@property
|
||||
def total_calls_recorded(self) -> int:
|
||||
return len(self._call_records)
|
||||
|
||||
|
||||
# ================================================================
|
||||
# Data Models
|
||||
# ================================================================
|
||||
|
||||
class CallRecord:
|
||||
"""A completed call record for analytics."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
call_id: str,
|
||||
remote_number: str,
|
||||
mode: CallMode,
|
||||
status: CallStatus,
|
||||
intent: Optional[str] = None,
|
||||
started_at: Optional[datetime] = None,
|
||||
duration_seconds: int = 0,
|
||||
hold_time_seconds: int = 0,
|
||||
classification_history: Optional[list[str]] = None,
|
||||
transcript_chunks: Optional[list[str]] = None,
|
||||
services: Optional[list[str]] = None,
|
||||
):
|
||||
self.call_id = call_id
|
||||
self.remote_number = remote_number
|
||||
self.mode = mode
|
||||
self.status = status
|
||||
self.intent = intent
|
||||
self.started_at = started_at or datetime.now()
|
||||
self.duration_seconds = duration_seconds
|
||||
self.hold_time_seconds = hold_time_seconds
|
||||
self.classification_history = classification_history or []
|
||||
self.transcript_chunks = transcript_chunks or []
|
||||
self.services = services or []
|
||||
|
||||
|
||||
class CompanyStats:
|
||||
"""Aggregated stats for a specific company/phone number."""
|
||||
|
||||
def __init__(self):
|
||||
self.total_calls = 0
|
||||
self.successful_calls = 0
|
||||
self.failed_calls = 0
|
||||
self.total_hold_time = 0
|
||||
self.hold_times: list[int] = []
|
||||
self.total_duration = 0
|
||||
self.last_called: Optional[datetime] = None
|
||||
self.intents: dict[str, int] = defaultdict(int)
|
||||
|
||||
def update(self, record: CallRecord) -> None:
|
||||
"""Update stats with a new call record."""
|
||||
self.total_calls += 1
|
||||
self.total_duration += record.duration_seconds
|
||||
self.last_called = record.started_at
|
||||
|
||||
if record.status in (CallStatus.COMPLETED, CallStatus.BRIDGED, CallStatus.HUMAN_DETECTED):
|
||||
self.successful_calls += 1
|
||||
elif record.status == CallStatus.FAILED:
|
||||
self.failed_calls += 1
|
||||
|
||||
if record.hold_time_seconds > 0:
|
||||
self.total_hold_time += record.hold_time_seconds
|
||||
self.hold_times.append(record.hold_time_seconds)
|
||||
|
||||
if record.intent:
|
||||
self.intents[record.intent] += 1
|
||||
|
||||
def to_dict(self, number: str) -> dict[str, Any]:
|
||||
return {
|
||||
"number": number,
|
||||
"total_calls": self.total_calls,
|
||||
"successful_calls": self.successful_calls,
|
||||
"failed_calls": self.failed_calls,
|
||||
"success_rate": round(
|
||||
self.successful_calls / self.total_calls, 3
|
||||
) if self.total_calls else 0.0,
|
||||
"avg_hold_time": round(
|
||||
self.total_hold_time / len(self.hold_times), 1
|
||||
) if self.hold_times else 0.0,
|
||||
"max_hold_time": max(self.hold_times) if self.hold_times else 0,
|
||||
"avg_duration": round(
|
||||
self.total_duration / self.total_calls, 1
|
||||
) if self.total_calls else 0.0,
|
||||
"last_called": self.last_called.isoformat() if self.last_called else None,
|
||||
"top_intents": dict(
|
||||
sorted(self.intents.items(), key=lambda x: x[1], reverse=True)[:5]
|
||||
),
|
||||
}
|
||||
@@ -1,25 +1,168 @@
|
||||
"""
|
||||
Call Persistence — Writes completed calls and their transcript chunks
|
||||
to the database when CallManager.end_call() fires.
|
||||
Call Persistence — the data-access layer for calls and call flows.
|
||||
|
||||
Holds the on-hangup persistence hook plus the query/write functions
|
||||
that both the REST handlers and the MCP tools call, so the two
|
||||
surfaces can't drift. Every function takes an AsyncSession; callers
|
||||
own the transaction (get_db for REST, session_scope for MCP/services).
|
||||
"""
|
||||
|
||||
import logging
|
||||
import uuid
|
||||
from datetime import datetime
|
||||
|
||||
from db.database import CallRecord, TranscriptChunk, get_session_factory
|
||||
from sqlalchemy import desc, select
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
|
||||
from db.database import (
|
||||
CallRecord,
|
||||
RecordingRecord,
|
||||
StoredCallFlow,
|
||||
TranscriptChunk,
|
||||
session_scope,
|
||||
)
|
||||
from models.call import ActiveCall, CallStatus
|
||||
from models.call_flow import CallFlow, CallFlowStep
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def flow_to_model(row: StoredCallFlow) -> CallFlow:
|
||||
"""The one StoredCallFlow-row → CallFlow-model mapping."""
|
||||
return CallFlow(
|
||||
id=row.id,
|
||||
name=row.name,
|
||||
phone_number=row.phone_number,
|
||||
description=row.description or "",
|
||||
steps=[CallFlowStep(**s) for s in (row.steps or [])],
|
||||
tags=row.tags or [],
|
||||
notes=row.notes,
|
||||
avg_hold_time=row.avg_hold_time,
|
||||
success_rate=row.success_rate,
|
||||
last_used=row.last_used,
|
||||
times_used=row.times_used or 0,
|
||||
)
|
||||
|
||||
|
||||
# ================================================================
|
||||
# Call flows
|
||||
# ================================================================
|
||||
|
||||
async def get_flow(session: AsyncSession, flow_id: str) -> StoredCallFlow | None:
|
||||
result = await session.execute(
|
||||
select(StoredCallFlow).where(StoredCallFlow.id == flow_id)
|
||||
)
|
||||
return result.scalar_one_or_none()
|
||||
|
||||
|
||||
async def get_flow_by_number(
|
||||
session: AsyncSession, phone_number: str
|
||||
) -> StoredCallFlow | None:
|
||||
result = await session.execute(
|
||||
select(StoredCallFlow).where(StoredCallFlow.phone_number == phone_number)
|
||||
)
|
||||
return result.scalar_one_or_none()
|
||||
|
||||
|
||||
async def list_flows(session: AsyncSession) -> list[StoredCallFlow]:
|
||||
result = await session.execute(select(StoredCallFlow))
|
||||
return list(result.scalars().all())
|
||||
|
||||
|
||||
async def create_flow(
|
||||
session: AsyncSession,
|
||||
flow_id: str,
|
||||
name: str,
|
||||
phone_number: str,
|
||||
steps: list[dict],
|
||||
description: str | None = None,
|
||||
tags: list[str] | None = None,
|
||||
notes: str | None = None,
|
||||
) -> StoredCallFlow:
|
||||
row = StoredCallFlow(
|
||||
id=flow_id,
|
||||
name=name,
|
||||
phone_number=phone_number,
|
||||
description=description,
|
||||
steps=steps,
|
||||
tags=tags,
|
||||
notes=notes,
|
||||
last_verified=datetime.now(),
|
||||
)
|
||||
session.add(row)
|
||||
await session.flush()
|
||||
return row
|
||||
|
||||
|
||||
# ================================================================
|
||||
# Call history / records
|
||||
# ================================================================
|
||||
|
||||
async def get_record(session: AsyncSession, call_id: str) -> CallRecord | None:
|
||||
result = await session.execute(
|
||||
select(CallRecord).where(CallRecord.id == call_id)
|
||||
)
|
||||
return result.scalar_one_or_none()
|
||||
|
||||
|
||||
async def search_history(
|
||||
session: AsyncSession,
|
||||
number: str | None = None,
|
||||
number_contains: str | None = None,
|
||||
intent_contains: str | None = None,
|
||||
status: str | None = None,
|
||||
since: datetime | None = None,
|
||||
until: datetime | None = None,
|
||||
limit: int = 50,
|
||||
offset: int = 0,
|
||||
) -> list[CallRecord]:
|
||||
stmt = select(CallRecord).order_by(desc(CallRecord.started_at))
|
||||
if number:
|
||||
stmt = stmt.where(CallRecord.remote_number == number)
|
||||
if number_contains:
|
||||
stmt = stmt.where(CallRecord.remote_number.contains(number_contains))
|
||||
if intent_contains:
|
||||
stmt = stmt.where(CallRecord.intent.icontains(intent_contains))
|
||||
if status:
|
||||
stmt = stmt.where(CallRecord.status == status)
|
||||
if since:
|
||||
stmt = stmt.where(CallRecord.started_at >= since)
|
||||
if until:
|
||||
stmt = stmt.where(CallRecord.started_at <= until)
|
||||
result = await session.execute(stmt.offset(offset).limit(limit))
|
||||
return list(result.scalars().all())
|
||||
|
||||
|
||||
async def get_transcript_chunks(
|
||||
session: AsyncSession, call_id: str
|
||||
) -> list[TranscriptChunk]:
|
||||
result = await session.execute(
|
||||
select(TranscriptChunk)
|
||||
.where(TranscriptChunk.call_id == call_id)
|
||||
.order_by(TranscriptChunk.seq)
|
||||
)
|
||||
return list(result.scalars().all())
|
||||
|
||||
|
||||
async def latest_recording(
|
||||
session: AsyncSession, call_id: str
|
||||
) -> RecordingRecord | None:
|
||||
result = await session.execute(
|
||||
select(RecordingRecord)
|
||||
.where(RecordingRecord.call_id == call_id)
|
||||
.order_by(desc(RecordingRecord.started_at))
|
||||
)
|
||||
return result.scalars().first()
|
||||
|
||||
|
||||
async def persist_call_on_end(call: ActiveCall, final_status: CallStatus) -> None:
|
||||
"""Insert a CallRecord and any transcript chunks for `call`.
|
||||
|
||||
Wired into CallManager via _on_call_ended in gateway.start().
|
||||
Wired into CallManager as its on_call_ended hook by the
|
||||
composition root in main.py.
|
||||
"""
|
||||
try:
|
||||
async with get_session_factory()() as session:
|
||||
async with session_scope() as session:
|
||||
record = CallRecord(
|
||||
id=call.id,
|
||||
direction=call.direction,
|
||||
@@ -64,7 +207,5 @@ async def persist_call_on_end(call: ActiveCall, final_status: CallStatus) -> Non
|
||||
speaker=speaker,
|
||||
text=payload,
|
||||
))
|
||||
|
||||
await session.commit()
|
||||
except Exception as e:
|
||||
logger.warning(f"Could not persist call {call.id}: {e}")
|
||||
|
||||
@@ -23,35 +23,12 @@ from models.call import ActiveCall, AudioClassification, CallStatus, Classificat
|
||||
from models.call_flow import ActionType, CallFlow, CallFlowStep
|
||||
from models.events import EventType, GatewayEvent
|
||||
from services.audio_classifier import AudioClassifier
|
||||
from services.llm_client import get_llm
|
||||
from services.transcription import TranscriptionService
|
||||
from services.tts import TTSService
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
# LLM client is optional — imported at use time
|
||||
_llm_client = None
|
||||
|
||||
|
||||
def _get_llm():
|
||||
"""Lazy-load LLM client (optional dependency)."""
|
||||
global _llm_client
|
||||
if _llm_client is None:
|
||||
try:
|
||||
from config import get_settings
|
||||
from services.llm_client import LLMClient
|
||||
|
||||
settings = get_settings()
|
||||
_llm_client = LLMClient(
|
||||
base_url=settings.llm.base_url,
|
||||
model=settings.llm.model,
|
||||
api_key=settings.llm.api_key.get_secret_value(),
|
||||
timeout=settings.llm.timeout,
|
||||
)
|
||||
except Exception as e:
|
||||
logger.debug(f"LLM client not available: {e}")
|
||||
_llm_client = False # Sentinel: don't retry
|
||||
return _llm_client if _llm_client is not False else None
|
||||
|
||||
|
||||
class HoldSlayerService:
|
||||
"""
|
||||
@@ -228,7 +205,7 @@ class HoldSlayerService:
|
||||
|
||||
# Phase 2: LLM fallback if regex couldn't decide
|
||||
if not decision and transcript:
|
||||
llm = _get_llm()
|
||||
llm = get_llm()
|
||||
if llm:
|
||||
try:
|
||||
logger.info("🤖 Regex inconclusive, asking LLM...")
|
||||
|
||||
@@ -389,3 +389,31 @@ class LLMClient:
|
||||
"model": self.model,
|
||||
"base_url": self.base_url,
|
||||
}
|
||||
|
||||
|
||||
# ================================================================
|
||||
# Shared lazy client
|
||||
# ================================================================
|
||||
|
||||
_shared_client: Optional["LLMClient"] = None
|
||||
_shared_failed = False
|
||||
|
||||
|
||||
def get_llm() -> Optional["LLMClient"]:
|
||||
"""Lazily build the shared LLMClient from settings (None if unavailable)."""
|
||||
global _shared_client, _shared_failed
|
||||
if _shared_client is None and not _shared_failed:
|
||||
try:
|
||||
from config import get_settings
|
||||
|
||||
settings = get_settings()
|
||||
_shared_client = LLMClient(
|
||||
base_url=settings.llm.base_url,
|
||||
model=settings.llm.model,
|
||||
api_key=settings.llm.api_key.get_secret_value(),
|
||||
timeout=settings.llm.timeout,
|
||||
)
|
||||
except Exception as e:
|
||||
logger.debug(f"LLM client not available: {e}")
|
||||
_shared_failed = True # don't retry
|
||||
return _shared_client
|
||||
|
||||
@@ -27,12 +27,100 @@ from models.routing import RoutingAction, RoutingActionType, RoutingDecision
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ReceptionistService:
|
||||
"""Drives the receptionist state machine for a single inbound call."""
|
||||
def _extract_number(sip_uri: str) -> str:
|
||||
"""Pull the user part out of a SIP URI (sip:+15551212@host → +15551212)."""
|
||||
if not sip_uri:
|
||||
return ""
|
||||
s = sip_uri.strip()
|
||||
if s.startswith("<") and ">" in s:
|
||||
s = s[1 : s.index(">")]
|
||||
if s.startswith("sip:"):
|
||||
s = s[4:]
|
||||
if "@" in s:
|
||||
s = s.split("@", 1)[0]
|
||||
return s
|
||||
|
||||
def __init__(self, gateway):
|
||||
|
||||
class ReceptionistService:
|
||||
"""Owns inbound-call policy: routing evaluation, screening, voicemail."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
gateway,
|
||||
tts=None,
|
||||
transcription=None,
|
||||
recording=None,
|
||||
routing=None,
|
||||
):
|
||||
self.gateway = gateway
|
||||
self.settings = gateway.settings.receptionist
|
||||
self.tts = tts
|
||||
self.transcription = transcription
|
||||
self.recording = recording
|
||||
self.routing = routing
|
||||
|
||||
async def on_inbound_call(self, from_uri: str, to_uri: str, leg_id: str) -> None:
|
||||
"""
|
||||
Entry point for an inbound INVITE (wired as the SIP engine's
|
||||
on_incoming_call by the composition root).
|
||||
|
||||
Evaluates routing rules, then either rejects (rule says
|
||||
reject/DND) or answers and runs the screening flow.
|
||||
"""
|
||||
from models.call import CallMode
|
||||
|
||||
gateway = self.gateway
|
||||
caller_number = _extract_number(from_uri)
|
||||
dnis = _extract_number(to_uri)
|
||||
|
||||
# Create a call record so the dashboard sees the ringing call.
|
||||
call = await gateway.call_manager.create_call(
|
||||
remote_number=caller_number,
|
||||
mode=CallMode.RECEPTIONIST,
|
||||
intent=None,
|
||||
call_flow_id=None,
|
||||
device=None,
|
||||
)
|
||||
call.direction = "inbound"
|
||||
gateway.call_manager.map_leg(leg_id, call.id)
|
||||
await gateway.call_manager.update_status(call.id, CallStatus.RINGING)
|
||||
|
||||
decision = (
|
||||
await self.routing.evaluate(caller_number, dnis)
|
||||
if self.routing is not None
|
||||
else None
|
||||
)
|
||||
|
||||
if decision is not None:
|
||||
await gateway.event_bus.publish(GatewayEvent(
|
||||
type=EventType.ROUTING_RULE_MATCHED,
|
||||
call_id=call.id,
|
||||
data={
|
||||
"matched_rule_id": decision.matched_rule_id,
|
||||
"matched_rule_name": decision.matched_rule_name,
|
||||
"action": decision.action.type.value,
|
||||
"reason": decision.reason,
|
||||
},
|
||||
message=decision.reason,
|
||||
))
|
||||
|
||||
if decision.action.type in (RoutingActionType.REJECT, RoutingActionType.DND):
|
||||
if hasattr(gateway.sip_engine, "reject_inbound"):
|
||||
await gateway.sip_engine.reject_inbound(leg_id)
|
||||
await gateway.call_manager.end_call(call.id, CallStatus.COMPLETED)
|
||||
return
|
||||
|
||||
# Answer the leg
|
||||
if hasattr(gateway.sip_engine, "accept_inbound"):
|
||||
await gateway.sip_engine.accept_inbound(leg_id)
|
||||
await gateway.call_manager.update_status(call.id, CallStatus.CONNECTED)
|
||||
|
||||
# Screen the caller (unless the receptionist is disabled)
|
||||
if self.settings.enabled:
|
||||
gateway.spawn(
|
||||
self.handle(call, leg_id, decision),
|
||||
name=f"receptionist_{call.id}",
|
||||
)
|
||||
|
||||
async def handle(
|
||||
self,
|
||||
@@ -89,7 +177,10 @@ class ReceptionistService:
|
||||
await self._speak(
|
||||
call, sip_leg_id, "One moment, I'll connect you now."
|
||||
)
|
||||
answered = await self.gateway._routing.ring_chain(
|
||||
if self.routing is None:
|
||||
await self._take_message(call, sip_leg_id)
|
||||
return
|
||||
answered = await self.routing.ring_chain(
|
||||
call.id, devices, action.ring_timeout
|
||||
)
|
||||
if answered:
|
||||
@@ -156,10 +247,10 @@ class ReceptionistService:
|
||||
finally:
|
||||
tap.close()
|
||||
|
||||
if not audio:
|
||||
if not audio or self.transcription is None:
|
||||
return ""
|
||||
|
||||
return await self.gateway._transcription.transcribe(bytes(audio))
|
||||
return await self.transcription.transcribe(bytes(audio))
|
||||
|
||||
async def _classify(
|
||||
self,
|
||||
@@ -168,9 +259,9 @@ class ReceptionistService:
|
||||
routing_decision: Optional[RoutingDecision],
|
||||
) -> dict:
|
||||
"""Ask the LLM to interpret the caller's utterance."""
|
||||
from services.hold_slayer import _get_llm
|
||||
from services.llm_client import get_llm
|
||||
|
||||
llm = _get_llm()
|
||||
llm = get_llm()
|
||||
if llm is None or not transcript.strip():
|
||||
return {
|
||||
"intent": transcript or "unknown",
|
||||
@@ -245,7 +336,7 @@ class ReceptionistService:
|
||||
await self._speak(call, sip_leg_id, self.settings.message_prompt)
|
||||
|
||||
media = self.gateway.media_pipeline
|
||||
recording_svc = getattr(self.gateway, "_recording_service", None)
|
||||
recording_svc = self.recording
|
||||
if recording_svc is None or media is None:
|
||||
logger.warning("Receptionist: recording unavailable, ending call")
|
||||
await self._hangup(call, sip_leg_id)
|
||||
@@ -264,10 +355,10 @@ class ReceptionistService:
|
||||
|
||||
message_text = ""
|
||||
rec_path = session.filepath_mixed if session else None
|
||||
if rec_path and Path(rec_path).exists():
|
||||
if rec_path and Path(rec_path).exists() and self.transcription is not None:
|
||||
try:
|
||||
audio_bytes = Path(rec_path).read_bytes()
|
||||
message_text = await self.gateway._transcription.transcribe(audio_bytes)
|
||||
message_text = await self.transcription.transcribe(audio_bytes)
|
||||
except Exception as e:
|
||||
logger.warning(f"Receptionist transcribe failed: {e}")
|
||||
|
||||
@@ -292,7 +383,7 @@ class ReceptionistService:
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
async def _speak(self, call: ActiveCall, sip_leg_id: str, text: str) -> None:
|
||||
tts = self.gateway._tts
|
||||
tts = self.tts
|
||||
media = self.gateway.media_pipeline
|
||||
if tts is None or media is None or not text.strip():
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user