2024-06-21 12:56:11 -06:00
|
|
|
# TODO
|
|
|
|
|
|
|
|
- [x] Strip anthropic XML function call scheme from content, to reconstruct
|
|
|
|
when calling anthropic?
|
|
|
|
- [x] `dir_tree` tool
|
2024-06-22 19:46:27 -06:00
|
|
|
- [x] Implement native Anthropic API tool calling
|
2024-06-23 12:57:08 -06:00
|
|
|
- [x] Agents - a name given to a system prompt + set of available tools +
|
2024-06-21 12:56:11 -06:00
|
|
|
potentially other relevent data (e.g. external service credentials, files for
|
|
|
|
RAG, etc), which the user explicitly selects (e.g. `lmcli chat --agent
|
2024-06-23 12:57:08 -06:00
|
|
|
code-helper`, `lmcli chat -a financier`).
|
|
|
|
- [ ] Specialized agents which have integrations beyond basic tool calling,
|
2024-06-21 12:56:11 -06:00
|
|
|
e.g. a coding agent which bakes in efficient code context management
|
|
|
|
(only the current state of relevant files get shown to the model in the
|
|
|
|
system prompt, rather than having them in the conversation messages)
|
2024-06-23 12:57:08 -06:00
|
|
|
- [ ] Agents may have some form of long term memory management (key-value?
|
2024-06-21 12:56:11 -06:00
|
|
|
natural lang?).
|
|
|
|
- [ ] Support for arbitrary external script tools
|
|
|
|
- [ ] Search - RAG driven search of existing conversation "hey, remind me of
|
|
|
|
the conversation we had six months ago about X")
|
|
|
|
- [ ] Conversation categorization - model driven category creation and
|
|
|
|
conversation classification
|
2024-06-23 14:06:59 -06:00
|
|
|
- [ ] Image input
|
|
|
|
- [ ] Image output (sixel support?)
|
2024-06-21 12:56:11 -06:00
|
|
|
|
|
|
|
## UI
|
|
|
|
- [x] Prettify/normalize tool_call and tool_result outputs so they can be
|
|
|
|
shown/optionally hidden in `lmcli view` and `lmcli chat`
|
|
|
|
- [ ] User confirmation before calling (some?) tools
|
|
|
|
- [ ] Conversation deletion in conversations view
|
|
|
|
- [ ] Message deletion, Ctrl+D to delete a message and attach its children to
|
|
|
|
its parent, Ctrl+Shift+D to delete a message and its descendents
|