Show HN: EvalView pytest style tests for AI agents (budgets, hallucinations)(github.com)
github.com
Show HN: EvalView pytest style tests for AI agents (budgets, hallucinations)
https://github.com/hidai25/eval-view
https://github.com/hidai25/eval-view
```yaml name: "Refund policy doesn't hallucinate" runs: 10 pass_rate: 0.8 input: query: "What's our refund policy?" assert: - tool_called: "kb_search" - no_unsupported_claims: true - max_cost_usd: 0.05 ```
Instead of exact text matching, the checks focus on constraints: did it call the right tools, did it make claims not supported by tool results/context, and did it stay within cost/latency budgets. I also added optional local LLM-as-judge via Ollama so evals don’t burn API credits on every run. If you’re shipping agents to prod, what’s been your worst failure mode: tool misuse, budget blowups, or confident nonsense? Happy to answer questions. Hidai