mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
feat: run per node QA
This commit is contained in:
parent
a836825b83
commit
c8742dbdc0
13 changed files with 1012 additions and 373 deletions
12
api/services/workflow/qa/__init__.py
Normal file
12
api/services/workflow/qa/__init__.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
"""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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue