摘要: 1.ReAct 阅读全文
posted @ 2026-06-16 11:29 轩哥聊码 阅读(4) 评论(0) 推荐(0)
摘要: 1.quickstart import asyncio import os from agentscope.agent import Agent from agentscope.event import EventType from agentscope.message import UserMsg 阅读全文
posted @ 2026-05-31 23:30 轩哥聊码 阅读(47) 评论(0) 推荐(0)
摘要: 0.环境 0.1 依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.6</version> <relativ 阅读全文
posted @ 2026-05-23 03:55 轩哥聊码 阅读(66) 评论(0) 推荐(0)
摘要: 1.抓取其他公众号 name: "wechat-article-downloader" description: "Downloads WeChat official account articles via HTTP API with QR code login. Invoke when user 阅读全文
posted @ 2026-03-24 19:44 轩哥聊码 阅读(1379) 评论(0) 推荐(0)
摘要: 1.环境 1.1 nvm 下载 nvm-setup.exe https://github.com/coreybutler/nvm-windows/releases nvm install 22.22.0 nvm use 22.22.0 1.2 git https://git-scm.com/ 2.o 阅读全文
posted @ 2026-03-03 15:48 轩哥聊码 阅读(71) 评论(0) 推荐(1)
摘要: 1.安装和基础使用 <dependencies> <dependency> <groupId>io.agentscope</groupId> <artifactId>agentscope</artifactId> <version>1.0.6</version> </dependency> <!-- 阅读全文
posted @ 2026-01-11 19:30 轩哥聊码 阅读(130) 评论(0) 推荐(0)
摘要: 1.安装和基本使用 1.1 环境 winodws npm 18+ https://aicodewith.com 整一个密钥,绑定公众号获得一点使用额度 npm install -g @anthropic-ai/claude-code claude --version 1.2 powershell中使 阅读全文
posted @ 2026-01-05 22:48 轩哥聊码 阅读(89) 评论(0) 推荐(0)
摘要: 1.预训练 2.神经网络 一组参数构成的数学函数 3.inference 推理 完成训练 产生base model 2.后训练 post-traning 1.conversation 人工标注 2、conversation to token 阅读全文
posted @ 2025-12-21 18:16 轩哥聊码 阅读(14) 评论(0) 推荐(0)
摘要: 0.环境 0.1.依赖 <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>17</maven.compiler.release> <maven 阅读全文
posted @ 2025-10-29 23:00 轩哥聊码 阅读(71) 评论(0) 推荐(0)
摘要: 1.基本概念 LLM 大型语言模型(Large Language Model)的缩写。是一种通过海量文本数据训练,能够理解和生成人类语言的人工智能系统 token AI大模型调用中,模型处理文本的基本单位。各家算法切字逻辑,但是大致一个token约等于一个汉字左右。 具体可以看各家厂商提供的切词可视 阅读全文
posted @ 2025-10-27 23:02 轩哥聊码 阅读(28) 评论(0) 推荐(0)