aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/aflow/testdata/TestWorkflow.llm.json
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow: abstract away LLM temperatureDmitry Vyukov2026-02-021-3/+3
| | | | | | | | | | 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-456/+0
| | | | Don't memorize repeated request configs.
* pkg/aflow: keep LLM reply on tool callsDmitry Vyukov2026-01-261-0/+6
|
* pkg/aflow: refactor testsDmitry Vyukov2026-01-231-0/+976
Add helper function that executes test workflows, compares results (trajectory, LLM requests) against golden files, and if requested updates these golden files.