dograh/api/services/workflow/qa/__init__.py
2026-02-25 17:17:48 +05:30

12 lines
450 B
Python

"""QA analysis service for post-call quality assessment.
Runs LLM-based analysis on call transcripts, traces under the same
Langfuse trace as the conversation, and returns structured results.
Supports per-node QA analysis where each agent/start node gets its own
evaluation with node purpose summary and prior conversation context.
"""
from api.services.workflow.qa.analysis import run_per_node_qa_analysis
__all__ = ["run_per_node_qa_analysis"]