aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/codesearch/testdata/query-read-file-dir
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow: add BadCallErrorDmitry Vyukov2026-01-201-1/+1
| | | | | | | | | | The error allows tools to communicate that an error is not an infrastructure error that must fail the whole workflow, but rather a bad tool invocation by an LLM (e.g. asking for a non-existent file contents). Previously in the codesearcher tool we used a separate Missing bool to communicate that. With the error everything just becomes cleaner and nicer. The errors also allows all other tools to communicate any errors to the LLM when the normal results cannot be provided and don't make sense.
* pkg/codesearch: add read-file commandDmitry Vyukov2026-01-201-0/+3
Just provides full file contents as last resort.