- Evaluates conversations across 10 metrics: taskCompletion, accuracy, relevance, clarity, efficiency, userIntentAlignment, actionability, progress, errorHandling, completeness - Returns weighted overall score (0-10) - Provides verdict (pass/retry/fail) with reasons - Detects conversation loops and stuck states - Lists must-dos, suggestions, and next steps - Designed for frequent use in agentic loops
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
/**
|
|
* AI Conversation Judge Tool for TPMJS
|
|
* Re-export all tools from src/index.ts
|
|
*/
|
|
export * from './src/index.js';
|
|
export { default } from './src/index.js';
|