在Roo Code框架中复现OpenAI深度研究微系统


我在 Roo Code 智能体框架内重建了一个 OpenAI 内部深度研究工作流的迷你版本。 它链接着 MCP 服务器: Brave Search (广泛搜索), Tavily (深度搜索), 以及 Think‑MCP (结…
Read more ⟶


1️⃣ 核心警告 💡 “久坐是另一种形式的吸烟。” 如果你每天坐超过 6 个小时,你就是在扼杀你的身体并摧毁你的健康。 2️⃣ 解决方案概述 🌿 以下是 4 种调整…
Read more ⟶

使用 AMD Radeon 6600 XT 运行 ollama


URL Source: https://major.io/p/ollama-with-amd-radeon-6600xt/ 我现在在工作中分饰两角,其中一个角色专注于大语言模型。和你们中的许多人一样,我也时不时地尝试用 ChatGPT 提问。我还在 Visual Studio Code 中使用了 GitHub Copil…
Read more ⟶

vz driver is running but host agent is not


*使用 vz 模式虚拟化的 4c8g 虚拟机运行 *colima colima start --runtime containerd --cpu 4 --memory 8 --vm-type=vz 究竟什么是 vz driver is running but host agent is not ? 参考 colima start does not honor default config, but then overwrites it #985 可能需要执行: colima fix: colima stop -f rm -rf /Users/$USER/.colima/_lima/_networks…
Read more ⟶

Archlinux Install Zed Editor


安装 curl -f https://zed.dev/install.sh | sh 也可以通过包管理器安装: # ArchLinux sudo pacman -S zed 输入命令zed即可打开zed编辑器。如果遇到VulkanError(ERROR_INCOM…
Read more ⟶

Google 高级搜索指令


双引号 在平时搜索中,你可能见过"必须包含’xx’关键词"这样的提示。点击后,搜索框中的关键词会自…
Read more ⟶

Rust 代码风格 Tips[转]


文章绝大部分翻译自Rust Design Patters, 为了快速简洁, 并没有严格翻译 Constructors Rust 没有类似于 ClassName(*args, **kw_args) 这样的构造函数, 一般约定使用静态的 new 方法创建一个新的“对象”. p…
Read more ⟶

创建一个自己的 vscode 插件


创建一个普通的 pack 类型的插件,包含了一些其他的插件。比如: 当然还可以创建其他类型的插件,具体的需要查阅 vscode 的 api。 首先搭架子 首先创建一个目录,…
Read more ⟶

我所使用的ai工具分享


截至2024年6月23日,以下是我使用生成性人工智能/大型语言模型(AI/LLM)工具的方式。 我主要使用Claude.ai进行研究,就像我之…
Read more ⟶

Merge 种类 (Merge / Squash & Merge / Rebase & Merge)


合并的类型:Merge、Squash and Merge、Rebase and Merge 在版本控制中,合并(Merge)是一种非常常见的操作,用于将不同分支的更改…
Read more ⟶