AI Tools
1. 集成平台
2. Aider
3. Emacs
- https://github.com/tninja/aider.el 目前同事推荐的集成交互环境,支持代码分析、生成和 Agent 交互(?)
3.1. gpt.el
gpt.el 的 chat buffer 本身是 markdown/org-mode 格式的。https://github.com/jwiegley/ob-gptel 给 org-mode 增加了 src block 的支持。感觉都很有用。
What is the capital of France?
4. Claude Code
4.1. Copilot models
Can use copilot models with litellm. Somehow models from Open WebUI is not usable, because when switching models claude specified maxtoken to be 1 and these models does not know how to responde (I think it's a litellm issue, the models are not to blame).
https://blog.f12.no/wp/2025/09/22/using-claude-code-with-github-copilot-a-guide/
This comes with it's own quirks, like
litellm.exceptions.UnsupportedParamsError: litellm.UnsupportedParamsError: github_copilot does not support parameters: [‘thinking’], for model=claude-sonnet-4.5. To drop these, set `litellm.drop_params=True` or for proxy: `litellm_settings: drop_params: true`
5. OpenCode
Some claims that it uses less tokens than Claude Code (I guess most agents use less tokens than that). It supports Copilot out of the box. However it seems that it would report errors during normal usage, and when I switch to use `claude-sonnet-4.5` it cannot show the responses (until I reopen the TUI program and resume the last session).