上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: /opt/homebrew/Cellar/ /usr/bin or /usr/sbin /usr/local 阅读全文
posted @ 2025-05-28 14:55 十三山入秋 阅读(13) 评论(0) 推荐(0)
摘要: 两种地方添加 Spring 仓库 <project> ... <!-- ✅ 添加仓库:推荐放在 dependencies 前或后 --> <repositories> <repository> <id>spring-releases</id> <url>https://repo.spring.io/ 阅读全文
posted @ 2025-05-27 11:45 十三山入秋 阅读(32) 评论(1) 推荐(0)
摘要: 流程图升级为更完整、更详细的版本,涵盖: 每一方角色(用户 / Agent / Model / AutoGen) 每一步执行(函数调用 / JSON处理 / 工具执行) 数据结构流转(messages / schema / JSON / dict) 🔁 AutoGen 工具调用完整底层流程图(Fu 阅读全文
posted @ 2025-05-26 00:06 十三山入秋 阅读(186) 评论(0) 推荐(0)
摘要: AutoGen 和 Function Calling(工具调用)里最容易迷糊的点。 Model clients use the JSON schema of the tools to generate tool calls. ✅ 一句话解释那句“不是太理解”的地方: AutoGen 会把你写的函数, 阅读全文
posted @ 2025-05-25 23:22 十三山入秋 阅读(83) 评论(0) 推荐(0)
摘要: 🧠 一句话理解三者区别: 名称 是什么 举例说明 Jupyter Notebook 最基本的交互式笔记本,.ipynb 文件的运行环境 老牌的网页版 notebook,界面简洁 JupyterLab 新一代的 Notebook IDE,功能更强、更现代化 类似“VS Code 版的 Noteboo 阅读全文
posted @ 2025-05-24 16:49 十三山入秋 阅读(145) 评论(0) 推荐(0)
摘要: python -m venv、pyenv 和 conda 的关系、使用场景及常用命令。 概念及关系 python -m venv:Python 标准库自带的虚拟环境创建工具,用于创建轻量级的虚拟环境。它只能管理虚拟环境,无法管理 Python 版本。 pyenv:Python 版本管理工具,能让你在 阅读全文
posted @ 2025-05-24 15:29 十三山入秋 阅读(330) 评论(0) 推荐(0)
摘要: sudo xattr -r -d com.apple.quarantine <软件绝对path> 阅读全文
posted @ 2025-05-10 21:50 十三山入秋 阅读(91) 评论(2) 推荐(0)
摘要: 【对象原型-没有原型的对象】 let zs = { name: "zhangsan" }; console.log(" ", zs); let ls = Object.create(null, { name: { value: "lisi", }, }); console.log(" ", ls); 阅读全文
posted @ 2025-04-18 16:18 十三山入秋 阅读(7) 评论(0) 推荐(0)
摘要: 【JSON 转换】 // 一正一反 // JS Obj -> JSON字符串 // JSON.stringify(obj) -> JSON // 字符串 到 JS Obj // JSON.parse(JSON) -> JS Obj // JSON -> JS Obj let str = `{"nam 阅读全文
posted @ 2025-04-16 13:58 十三山入秋 阅读(12) 评论(0) 推荐(0)
摘要: 函数调用有两种写法 代理: 把 get set 方法拿出来作人为干涉 "use strict"; class Validate { max(value, len) { return value.length > len; } min(value, len) { return value.length 阅读全文
posted @ 2025-04-15 22:10 十三山入秋 阅读(80) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页