|
|
|
|
|
by thellimist
114 days ago
|
|
I can give example. LLM only know `linear` tool exists. I ask "get me the comments in the last issue" Next call LLM does is `linear --help 2>&1 | grep -i -E "search|list.issue|get.issue")`
then
`linear list-issues --raw '{"limit": 3}' -o json 2>&1 | head -80)`
then
`linear list-comments --issue-id "abc1ceae-aaaa-bbbb-9aaa-6bef0325ebd0" 2>&1)` So even the --help has filtering by default. Current models are pretty good |
|