mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-10 08:05:22 +02:00
13 lines
450 B
Python
13 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"]
|