You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
424 B

/**
* Effort classification is now handled by an LLM (Haiku) call in
* AgentService.classifyEffort(). The previous regex-based tests are no longer
* applicable. Classification accuracy is validated through the agent eval suite
* (eval-correctness, eval-latency).
*/
describe('classifyEffort', () => {
it('placeholder — classification is LLM-based, tested via evals', () => {
expect(true).toBe(true);
});
});