| 123456789101112131415 |
- """
- 高级工具 - 通过 Bun 适配器调用 OpenCode
- 这些工具实现复杂,直接调用 opencode 的 TypeScript 实现。
- 需要 Bun 运行时:https://bun.sh/
- """
- from agent.tools.advanced.webfetch import webfetch
- from agent.tools.advanced.lsp import lsp_diagnostics
- __all__ = [
- "webfetch",
- "lsp_diagnostics",
- ]
|