aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/aflow/tool/codeexpert/codeexpert.go
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/tool/researcher: add researching LLM toolDmitry Vyukov2026-01-231-0/+44
It can answer complex questions about kernel, and provide a concise answer to other LLMs.