2025/10/18

openclaw 安装

安装 git clone https://github.com/openclaw/openclaw.git npm install -g openclaw@latest # or: pnpm add -g openclaw@latest #安装向导 选择yes配置模型 openclaw onboard --install-daemon #安装网…

  • AI算法
  • 2025/10/18
  • 75
  • 2025/10/17

    hermens agent webui安装

    给 Hermes Agent 安装 WebUI 有几种不同的方案,我整理了三种最实用的,你可以根据自己的需求选择: 方案一:Docker 部署 Hermes WebUI 这是最简单、最标准的方式,通过 Docker 一键部署可视化面板,安装后通过浏…

  • AI算法
  • 2025/10/17
  • 55
  • 2025/10/16

    hermens agent安装

    安装 Hermes Agent 主要有两种方式,对于普通用户,最推荐使用官方的一键安装脚本;如果你需要长期稳定运行(比如 7x24 小时在线),可以考虑阿里云的一键云部署方案。 下面是详细的安装指南。 一键脚本安装 (本地)…

  • AI算法
  • 2025/10/16
  • 58
  • 2025/10/14

    langgraph workflow,节点、边参数详解

    具体对应关系 python # 1. 首先注册节点(定义节点) workflow.add_node("generate_chat_node", execute_chat_node) # ↑ 这里定义的节点名称 # 2. 然后为这个节点添加边(定义节点的…

  • AI算法
  • 2025/10/14
  • 139
  • 2025/10/13

    如何快速下载huggingface大模型

    Update: 推荐 huggingface 镜像站: https://hf-mirror.com Update: 推荐官方的 huggingface-cli 命令行工具、以及本站开发的 hfd脚本。 其实网络快、稳的话,随便哪种方法都挺好,然而结合国内的网络环境,断点续…

  • AI算法
  • 2025/10/13
  • 174
  • 2025/10/4

    agent意图识别,连续几个子任务,大模型返回很慢

    针对大模型返回慢的问题,这里有几个优化方案: 方案1: 缓存优化(推荐) python import time from functools import lru_cache from typing import Dict, Any class IntentCache: """意图识别缓…

  • AI算法
  • 2025/10/4
  • 119
  • 2025/10/2

    AI Agent的用户意图识别与任务分解

    1. 背景介绍 1.1 目的和范围 本文旨在为开发者和研究人员提供关于AI Agent系统中用户意图识别与任务分解的全面技术指南。我们将覆盖从基础理论到实践应用的完整知识体系,重点关注以下几个方面: 用户意图的表示与…

  • AI算法
  • 2025/10/2
  • 267
  • 2025/9/28

    LangGraph 对应参数详解

    LangGraph 对应参数详解 workflow = StateGraph(AgentState) # 添加所有节点(全部使用异步版本) workflow.add_node("classifier", async_classifier_node) workflow.add_node("fetch_position_node", async_…

  • AI算法
  • 2025/9/28
  • 115
  • 2025/9/27

    langgraph同时使用tool和mcp(三)

    mcp job_info_tools from app.config import comet_config from sdk.langgraph.langgraph import AgentState from service.mcpService import call_sse_tool async def async_job_info_node(state: AgentS…

  • AI算法
  • 2025/9/27
  • 93
  • 2025/9/26

    langgraph同时使用tool和mcp(二)

    cometLanggraph.py import asyncio import logging import json from typing import AsyncIterable, Dict, Any from langchain_openai import ChatOpenAI from langchain_core.messages import HumanMessage, …

  • AI算法
  • 2025/9/26
  • 105
  • 2025/9/25

    langgraph同时使用tool和mcp(一)

    langgraph同时使用tool和mcp 定义智能体的状态 (State) from typing import TypedDict, Annotated, List from langgraph.graph import add_messages class AgentState(TypedDict): """ 定义图的状…

  • AI算法
  • 2025/9/25
  • 104
  • 2025/9/24

    AI大模型入门-提示词Prompt工程详解

    一、前言 提示词是什么?很多人在接触AI大模型,最常见的就是对于自己描述的需求,AI大模型的反馈却不尽人意。你说东,它却表达西。而所谓的描述需求,就是提示词Prompt。而返回不尽人意,除了大模型能力的问题之…

  • AI算法
  • 2025/9/24
  • 113