aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/aflow/testdata/TestToolErrors.llm.json
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow: abstract away LLM temperatureDmitry Vyukov2026-02-021-1/+1
| | | | | | | | | | Introduce abstract "task type" for LLM agents instead of specifying temperature explicitly for each agent. This has 2 advantages: - we don't hardcode it everywhere, and can change centrally as our understanding of the right temperature evolves - we can control other LLM parameters (topn/topk) using task type as well Update #6576
* pkg/aflow: reduce size of golden test filesDmitry Vyukov2026-01-301-41/+0
| | | | Don't memorize repeated request configs.
* pkg/aflow: refactor testsDmitry Vyukov2026-01-231-0/+138
Add helper function that executes test workflows, compares results (trajectory, LLM requests) against golden files, and if requested updates these golden files.