news 2026/7/13 9:16:00

AI Agent开发实战:从ReAct范式到多智能体系统完整指南

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
AI Agent开发实战:从ReAct范式到多智能体系统完整指南

如果你正在关注AI领域的最新动态,可能会发现一个明显的趋势:2025年被称为"Agent元年",技术的焦点正在从训练更大的基础模型转向构建更聪明的智能体应用。但面对市面上众多的AI Agent教程,很多开发者却陷入了困惑——到底什么样的学习路径才能真正从入门到精通,甚至达到就业水平?

目前大多数教程存在两个极端:要么过于理论化,停留在概念讲解;要么过于工具化,只教如何使用某个平台。真正系统性的、从原理到实战的教程却极度匮乏。这正是Datawhale社区的Hello-Agents项目在GitHub上获得65.3k星标的原因——它填补了AI Agent学习路径的关键空白。

本文将基于Hello-Agents的最新内容,为你提供一套完整的AI Agent学习路线。不同于简单的工具使用教程,我们将深入智能体的核心架构,从经典范式实现到自研框架开发,再到多智能体系统构建,手把手带你掌握智能体开发的完整技能栈。

1. 这篇文章真正要解决的问题

很多开发者在学习AI Agent时遇到的第一个困惑是:我到底在学什么?是学习使用Dify、Coze这样的低代码平台,还是学习真正的AI原生智能体开发?这两种路径有着本质区别。

低代码平台的Agent本质上是流程驱动的软件开发,LLM只是作为数据处理的后端。而AI原生的Agent才是真正以AI驱动的智能体,它能够自主思考、规划任务、使用工具,并在复杂环境中做出决策。本文重点讨论的是后者——真正的AI Native Agent开发。

第二个常见问题是学习路径不清晰。很多教程东一榔头西一棒子,缺乏系统性。Hello-Agents项目将整个学习过程分为五个部分,从基础理论到综合实战,每个阶段都有明确的学习目标和实践项目。

第三个痛点是理论与实践脱节。智能体开发是极度依赖实践的领域,只看不练根本无法掌握核心技能。本文将提供完整的代码示例和实战项目,确保你能够将理论知识转化为实际开发能力。

2. AI Agent基础概念与核心原理

2.1 什么是AI Agent?

AI Agent(智能体)是一个能够感知环境、进行决策并执行动作的智能系统。与传统程序不同,AI Agent具有自主性、反应性和目标导向性。它能够理解自然语言指令,拆解复杂任务,使用工具完成任务,并从交互中学习。

用一个简单的类比来说,如果大语言模型是一个知识渊博的顾问,那么AI Agent就是一个能够主动执行任务的助手。顾问只能回答问题,而助手能够帮你完成实际工作。

2.2 AI Agent的核心组件

一个完整的AI Agent通常包含以下核心组件:

  • 感知模块:负责接收和理解用户输入
  • 规划模块:将复杂任务分解为可执行的子任务
  • 工具使用模块:调用外部API、数据库或软件工具
  • 记忆模块:存储和检索交互历史与知识
  • 执行模块:实际执行动作并观察结果
  • 反思模块:评估执行效果并调整策略

2.3 AI Agent的经典范式

在智能体发展中形成了几个重要的经典范式:

ReAct(Reasoning + Acting)范式:让Agent在行动前先进行推理思考,提高行动的正确性。

Plan-and-Solve范式:先制定完整计划再执行,适合复杂多步骤任务。

Reflection范式:在执行后进行反思,从错误中学习并改进策略。

这些范式不是互斥的,在实际开发中往往会组合使用。理解这些范式是构建高效智能体的基础。

3. 环境准备与前置条件

3.1 基础环境要求

开始AI Agent开发前,需要准备以下环境:

  • Python 3.8+:AI Agent开发的主要编程语言
  • Git:代码版本管理
  • IDE推荐:VS Code、PyCharm或Jupyter Notebook
  • 操作系统:Windows、macOS或Linux均可

3.2 关键依赖库安装

创建并激活Python虚拟环境后,安装核心依赖:

# 创建虚拟环境 python -m venv agent-env source agent-env/bin/activate # Linux/macOS # 或 agent-env\Scripts\activate # Windows # 安装核心依赖 pip install openai pip install langchain pip install langgraph pip install autogen pip install requests

3.3 API密钥配置

大多数AI Agent需要调用大语言模型API,需要配置相应的API密钥:

# 在代码中配置API密钥(实际使用中建议使用环境变量) import os os.environ["OPENAI_API_KEY"] = "your-openai-api-key" # 或其他模型API密钥 os.environ["ANTHROPIC_API_KEY"] = "your-anthropic-api-key"

4. 从零实现经典Agent范式

4.1 实现基础ReAct Agent

ReAct范式是智能体开发的基础,下面我们实现一个简单的ReAct Agent:

import openai import json class ReActAgent: def __init__(self, model="gpt-3.5-turbo"): self.model = model self.memory = [] def think(self, observation, goal): """思考下一步行动""" prompt = f""" 你是一个智能助手,需要完成目标:{goal} 当前观察:{observation} 可用工具:search_web, calculate, get_time 请按照以下格式回复: Thought: 你的思考过程 Action: 要执行的动作 Action Input: 动作的输入参数 如果认为目标已完成,回复: Thought: 任务完成 Action: FINISH Action Input: 最终结果 """ response = openai.ChatCompletion.create( model=self.model, messages=[{"role": "user", "content": prompt}] ) return response.choices[0].message.content def act(self, action, action_input): """执行动作""" if action == "search_web": return f"搜索结果:{action_input}" elif action == "calculate": return f"计算结果:{eval(action_input)}" elif action == "get_time": return "当前时间:2024-01-01 10:00:00" elif action == "FINISH": return action_input else: return "未知动作" def run(self, goal, max_steps=10): """运行Agent""" observation = "开始任务" for step in range(max_steps): print(f"步骤 {step + 1}:") # 思考 reasoning = self.think(observation, goal) print(f"推理: {reasoning}") # 解析动作 if "Action: FINISH" in reasoning: result = reasoning.split("Action Input:")[1].strip() print(f"任务完成: {result}") return result # 提取动作和输入 action_line = [line for line in reasoning.split('\n') if line.startswith('Action:')][0] action_input_line = [line for line in reasoning.split('\n') if line.startswith('Action Input:')][0] action = action_line.split("Action:")[1].strip() action_input = action_input_line.split("Action Input:")[1].strip() # 执行动作 observation = self.act(action, action_input) print(f"执行: {action}({action_input})") print(f"观察: {observation}\n") return "达到最大步数,任务未完成" # 使用示例 agent = ReActAgent() result = agent.run("计算2024年有多少天,并告诉我今天是星期几")

这个简单的ReAct Agent展示了智能体的基本工作流程:感知-思考-行动循环。在实际项目中,我们会使用更成熟的框架,但理解这个基础原理很重要。

4.2 实现Plan-and-Solve Agent

对于复杂任务,先制定计划再执行往往更高效:

class PlanAndSolveAgent: def __init__(self, model="gpt-3.5-turbo"): self.model = model def create_plan(self, goal): """创建任务计划""" prompt = f""" 请将以下复杂任务分解为具体的步骤计划: 任务:{goal} 请以JSON格式回复,包含步骤列表: {{ "plan": [ {{ "step": 1, "description": "步骤描述", "action": "要执行的动作", "input": "动作输入" }} ] }} """ response = openai.ChatCompletion.create( model=self.model, messages=[{"role": "user", "content": prompt}] ) plan_text = response.choices[0].message.content return json.loads(plan_text) def execute_plan(self, plan): """执行计划""" results = [] for step in plan["plan"]: print(f"执行步骤 {step['step']}: {step['description']}") # 这里可以调用具体的工具执行每个步骤 result = self.execute_action(step["action"], step["input"]) results.append(result) print(f"结果: {result}\n") return results def execute_action(self, action, action_input): """执行单个动作""" # 简化的动作执行,实际项目会更复杂 return f"执行了{action},输入:{action_input}" def run(self, goal): """运行Plan-and-Solve Agent""" print("创建计划...") plan = self.create_plan(goal) print("执行计划...") results = self.execute_plan(plan) return {"plan": plan, "results": results} # 使用示例 planner = PlanAndSolveAgent() result = planner.run("研究AI Agent的最新发展,并写一份总结报告")

5. 使用主流框架开发AI Agent

5.1 使用LangGraph构建智能体

LangGraph是一个专门为构建有状态、多步骤的AI应用而设计的框架:

from langgraph.graph import StateGraph, END from typing import TypedDict, Annotated import operator class AgentState(TypedDict): messages: Annotated[list, operator.add] current_step: str def should_continue(state: AgentState) -> str: """决定是否继续执行""" last_message = state["messages"][-1] if "任务完成" in last_message.content: return "end" else: return "continue" def agent_node(state: AgentState): """Agent处理节点""" # 这里实现具体的Agent逻辑 return {"messages": ["处理完成,继续下一步"]} def tool_node(state: AgentState): """工具调用节点""" return {"messages": ["工具调用完成"]} # 构建图 workflow = StateGraph(AgentState) # 添加节点 workflow.add_node("agent", agent_node) workflow.add_node("tools", tool_node) # 定义边 workflow.set_entry_point("agent") workflow.add_conditional_edges( "agent", should_continue, { "continue": "tools", "end": END } ) workflow.add_edge("tools", "agent") # 编译图 app = workflow.compile() # 运行 result = app.invoke({"messages": ["开始任务"], "current_step": "start"})

5.2 使用AutoGen构建多智能体系统

AutoGen是微软开发的多智能体对话框架,适合构建复杂的多智能体应用:

from autogen import AssistantAgent, UserProxyAgent, GroupChat, GroupChatManager # 配置LLM config_list = [ { "model": "gpt-3.5-turbo", "api_key": "your-api-key" } ] # 创建专家智能体 coder = AssistantAgent( name="Coder", system_message="你是一个专业的程序员,负责编写代码", llm_config={"config_list": config_list} ) tester = AssistantAgent( name="Tester", system_message="你是一个软件测试专家,负责测试代码质量", llm_config={"config_list": config_list} ) documenter = AssistantAgent( name="Documenter", system_message="你是一个技术文档工程师,负责编写文档", llm_config={"config_list": config_list} ) # 创建用户代理 user_proxy = UserProxyAgent( name="User", human_input_mode="NEVER", code_execution_config={"work_dir": "coding"} ) # 创建群聊 groupchat = GroupChat( agents=[user_proxy, coder, tester, documenter], messages=[], max_round=10 ) manager = GroupChatManager(groupchat=groupchat, llm_config={"config_list": config_list}) # 启动对话 user_proxy.initiate_chat( manager, message="请协作开发一个简单的网页爬虫程序,包括代码实现、测试和文档" )

6. 构建自定义Agent框架

6.1 设计HelloAgents框架基础

虽然使用现有框架很方便,但理解框架底层原理很重要。下面我们设计一个简单的自定义Agent框架:

from abc import ABC, abstractmethod from typing import Dict, Any, List import json class Tool(ABC): """工具基类""" @abstractmethod def execute(self, input_data: Dict[str, Any]) -> Dict[str, Any]: pass @property @abstractmethod def name(self) -> str: pass @property @abstractmethod def description(self) -> str: pass class CalculatorTool(Tool): """计算器工具示例""" @property def name(self) -> str: return "calculator" @property def description(self) -> str: return "执行数学计算" def execute(self, input_data: Dict[str, Any]) -> Dict[str, Any]: expression = input_data.get("expression", "") try: result = eval(expression) return {"success": True, "result": result} except Exception as e: return {"success": False, "error": str(e)} class BaseAgent(ABC): """Agent基类""" def __init__(self, name: str, tools: List[Tool] = None): self.name = name self.tools = tools or [] self.memory = [] def add_tool(self, tool: Tool): self.tools.append(tool) def get_tools_description(self) -> str: """获取工具描述""" descriptions = [] for tool in self.tools: descriptions.append(f"{tool.name}: {tool.description}") return "\n".join(descriptions) @abstractmethod def process(self, input_text: str) -> str: pass class SimpleAgent(BaseAgent): """简单Agent实现""" def process(self, input_text: str) -> str: # 简化的处理逻辑,实际项目会更复杂 tools_desc = self.get_tools_description() prompt = f""" 用户输入:{input_text} 可用工具:{tools_desc} 请决定是否需要使用工具,如果需要,说明使用哪个工具和输入参数。 """ # 这里会调用LLM进行决策 decision = "使用calculator工具计算:2 + 3 * 4" # 解析决策并执行工具 if "使用calculator工具" in decision: expression = decision.split("计算:")[1] calculator = next((t for t in self.tools if t.name == "calculator"), None) if calculator: result = calculator.execute({"expression": expression}) return f"计算结果:{result['result']}" return "无法处理该请求" # 使用示例 calculator = CalculatorTool() agent = SimpleAgent("数学助手", [calculator]) result = agent.process("请帮我计算一下2+3*4等于多少") print(result)

6.2 实现记忆机制

记忆是智能体的重要能力,下面实现一个简单的记忆系统:

import sqlite3 from datetime import datetime from typing import List, Dict class MemorySystem: """简单的记忆系统""" def __init__(self, db_path=":memory:"): self.conn = sqlite3.connect(db_path) self._create_tables() def _create_tables(self): """创建记忆表""" cursor = self.conn.cursor() cursor.execute(""" CREATE TABLE IF NOT EXISTS memories ( id INTEGER PRIMARY KEY AUTOINCREMENT, content TEXT NOT NULL, timestamp DATETIME DEFAULT CURRENT_TIMESTAMP, category TEXT ) """) self.conn.commit() def store_memory(self, content: str, category: str = "general"): """存储记忆""" cursor = self.conn.cursor() cursor.execute( "INSERT INTO memories (content, category) VALUES (?, ?)", (content, category) ) self.conn.commit() return cursor.lastrowid def retrieve_memories(self, query: str = None, category: str = None, limit: int = 5) -> List[Dict]: """检索记忆""" cursor = self.conn.cursor() if query and category: cursor.execute( "SELECT * FROM memories WHERE content LIKE ? AND category = ? ORDER BY timestamp DESC LIMIT ?", (f"%{query}%", category, limit) ) elif query: cursor.execute( "SELECT * FROM memories WHERE content LIKE ? ORDER BY timestamp DESC LIMIT ?", (f"%{query}%", limit) ) elif category: cursor.execute( "SELECT * FROM memories WHERE category = ? ORDER BY timestamp DESC LIMIT ?", (category, limit) ) else: cursor.execute( "SELECT * FROM memories ORDER BY timestamp DESC LIMIT ?", (limit,) ) results = cursor.fetchall() return [ {"id": row[0], "content": row[1], "timestamp": row[2], "category": row[3]} for row in results ] def close(self): """关闭数据库连接""" self.conn.close() # 在Agent中使用记忆系统 class AgentWithMemory(BaseAgent): """带记忆的Agent""" def __init__(self, name: str, tools: List[Tool] = None): super().__init__(name, tools) self.memory_system = MemorySystem() def process_with_memory(self, input_text: str) -> str: # 检索相关记忆 relevant_memories = self.memory_system.retrieve_memories(query=input_text) # 构建包含记忆的提示 memory_context = "\n".join([m["content"] for m in relevant_memories]) prompt = f""" 相关历史记忆: {memory_context} 当前用户输入:{input_text} 请基于历史记忆和当前输入进行回复。 """ # 存储当前交互到记忆 self.memory_system.store_memory(f"用户输入:{input_text}", "interaction") # 这里会调用LLM生成回复 response = "基于记忆的智能回复" # 存储回复到记忆 self.memory_system.store_memory(f"Agent回复:{response}", "interaction") return response

7. 实战项目:智能旅行助手

7.1 项目需求分析

让我们构建一个实用的智能旅行助手,它能够:

  1. 理解用户的旅行需求(目的地、时间、预算等)
  2. 查询天气信息、航班信息、酒店信息
  3. 制定旅行计划
  4. 回答旅行相关问题
  5. 从交互中学习用户的偏好

7.2 核心代码实现

import requests from datetime import datetime class TravelAssistant: """智能旅行助手""" def __init__(self): self.user_preferences = {} self.travel_history = [] def get_weather(self, city: str, date: str) -> Dict: """获取天气信息(模拟)""" # 实际项目中会调用天气API return { "city": city, "date": date, "weather": "晴朗", "temperature": "25°C", "recommendation": "适合旅行" } def search_flights(self, from_city: str, to_city: str, date: str) -> List[Dict]: """搜索航班(模拟)""" return [ { "airline": "示例航空", "flight_no": "CA1234", "departure": f"{from_city} 08:00", "arrival": f"{to_city} 10:30", "price": 1200 } ] def search_hotels(self, city: str, check_in: str, check_out: str, budget: int) -> List[Dict]: """搜索酒店(模拟)""" return [ { "name": "示例酒店", "location": "市中心", "price": 300, "rating": 4.5 } ] def create_travel_plan(self, destination: str, days: int, budget: int, preferences: Dict) -> Dict: """创建旅行计划""" plan = { "destination": destination, "duration": f"{days}天", "budget": budget, "daily_plans": [] } for day in range(1, days + 1): daily_plan = { "day": day, "morning": f"参观{destination}著名景点", "afternoon": "当地美食体验", "evening": "自由活动或特色表演" } plan["daily_plans"].append(daily_plan) # 添加实用信息 plan["weather"] = self.get_weather(destination, "2024-01-01") plan["flights"] = self.search_flights("北京", destination, "2024-01-01") plan["hotels"] = self.search_hotels(destination, "2024-01-01", f"2024-01-0{days+1}", budget) return plan def process_request(self, user_input: str) -> str: """处理用户请求""" # 分析用户意图 if "旅行计划" in user_input or "旅游" in user_input: # 提取关键信息 destination = "上海" # 简化处理 days = 3 budget = 5000 plan = self.create_travel_plan(destination, days, budget, self.user_preferences) return json.dumps(plan, ensure_ascii=False, indent=2) elif "天气" in user_input: city = "上海" # 简化处理 weather = self.get_weather(city, "2024-01-01") return f"{city}的天气:{weather['weather']},温度{weather['temperature']}" else: return "我可以帮您制定旅行计划、查询天气信息等,请告诉我您的具体需求。" # 使用示例 assistant = TravelAssistant() result = assistant.process_request("我想去上海旅行3天,预算5000元,请帮我制定计划") print(result)

8. 智能体性能评估与优化

8.1 评估指标设计

构建智能体后,需要评估其性能。主要评估指标包括:

  • 任务完成率:智能体成功完成任务的比例
  • 步骤效率:完成任务所需的平均步骤数
  • 响应质量:回复的准确性和有用性
  • 工具使用正确率:正确选择和使用工具的比例

8.2 实现评估系统

class AgentEvaluator: """智能体评估系统""" def __init__(self): self.test_cases = [] self.results = [] def add_test_case(self, input_text, expected_output, difficulty="easy"): """添加测试用例""" self.test_cases.append({ "input": input_text, "expected": expected_output, "difficulty": difficulty }) def evaluate_agent(self, agent, max_cases=10): """评估智能体""" scores = { "total_cases": 0, "passed_cases": 0, "accuracy": 0.0, "details": [] } for i, test_case in enumerate(self.test_cases[:max_cases]): try: actual_output = agent.process(test_case["input"]) # 简化的评估逻辑,实际项目会更复杂 is_correct = self._compare_output(actual_output, test_case["expected"]) scores["details"].append({ "case": i + 1, "input": test_case["input"], "expected": test_case["expected"], "actual": actual_output, "correct": is_correct }) scores["total_cases"] += 1 if is_correct: scores["passed_cases"] += 1 except Exception as e: scores["details"].append({ "case": i + 1, "error": str(e), "correct": False }) scores["total_cases"] += 1 if scores["total_cases"] > 0: scores["accuracy"] = scores["passed_cases"] / scores["total_cases"] return scores def _compare_output(self, actual, expected): """比较输出结果(简化版)""" return expected.lower() in actual.lower() # 使用示例 evaluator = AgentEvaluator() evaluator.add_test_case("计算2+3", "5", "easy") evaluator.add_test_case("今天天气怎么样", "天气信息", "medium") calculator = CalculatorTool() agent = SimpleAgent("测试Agent", [calculator]) scores = evaluator.evaluate_agent(agent) print(f"评估结果:准确率 {scores['accuracy']:.2%}")

9. 常见问题与解决方案

9.1 开发过程中的典型问题

问题现象可能原因解决方案
Agent陷入循环终止条件不明确添加最大步数限制和明确的完成判断
工具选择错误工具描述不清晰优化工具描述,添加使用示例
记忆混乱记忆检索策略不当实现基于相关性的记忆检索
响应速度慢LLM调用频繁实现缓存机制,批量处理请求

9.2 性能优化技巧

  1. 提示工程优化:设计清晰的系统提示,明确角色和任务边界
  2. 工具设计原则:每个工具功能单一,接口明确
  3. 记忆管理策略:定期清理无关记忆,实现记忆压缩
  4. 错误处理机制:完善的异常处理和重试逻辑

9.3 部署注意事项

  • API限流处理:实现请求队列和限流机制
  • 安全性考虑:验证工具输入,防止代码注入
  • 监控日志:完整的运行日志和性能监控
  • 版本管理:智能体配置和工具的版本控制

10. 生产环境最佳实践

10.1 架构设计建议

在生产环境中部署AI Agent时,建议采用以下架构:

  1. 微服务架构:将不同的智能体功能拆分为独立服务
  2. 消息队列:使用Redis或RabbitMQ处理异步任务
  3. 数据库选型:根据需求选择SQL或NoSQL数据库
  4. 缓存策略:使用Redis缓存频繁访问的数据
  5. 负载均衡:多个智能体实例分担请求压力

10.2 代码质量保证

# 示例:添加类型提示和文档字符串 from typing import List, Dict, Optional class ProductionReadyAgent: """生产环境就绪的智能体""" def __init__(self, name: str, model_config: Dict, tools: List[Tool]): """ 初始化智能体 Args: name: 智能体名称 model_config: 模型配置字典 tools: 可用工具列表 """ self.name = name self.model_config = model_config self.tools = {tool.name: tool for tool in tools} self.setup_logging() def setup_logging(self): """设置日志系统""" import logging self.logger = logging.getLogger(self.name) # 配置日志格式、级别等 def process_with_retry(self, input_text: str, max_retries: int = 3) -> str: """带重试的处理方法""" for attempt in range(max_retries): try: result = self.process(input_text) self.logger.info(f"处理成功: {input_text}") return result except Exception as e: self.logger.error(f"第{attempt+1}次尝试失败: {str(e)}") if attempt == max_retries - 1: raise return "处理失败"

10.3 监控与维护

建立完善的监控体系:

  • 性能监控:响应时间、成功率、错误率
  • 业务监控:任务完成质量、用户满意度
  • 资源监控:API调用次数、计算资源使用
  • 日志分析:错误模式识别、性能瓶颈分析

智能体开发是一个快速发展的领域,保持学习的心态很重要。建议关注最新的研究论文、开源项目和行业实践,不断优化和改进自己的智能体系统。

通过本文的完整学习路径,你应该已经掌握了AI Agent开发的核心技能。从基础概念到框架使用,从自研实现到生产部署,这套知识体系将帮助你在AI Agent领域建立坚实的技术基础。真正的精通还需要大量的实践和经验积累,建议从简单的项目开始,逐步挑战更复杂的应用场景。

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/13 9:13:12

MATLAB一键运行PSO优化PID参数,含Simulink模型与多指标对比

本文还有配套的精品资源,点击获取 简介:直接运行PSO_PID.m就能启动粒子群算法自动调参流程,适配各类被控对象传递函数,支持ITAE、IAE、ISE等常用性能指标作为优化目标。内置完整PSO核心脚本(PSO.m)和对比…

作者头像 李华
网站建设 2026/7/13 9:13:00

AI大模型在网络安全中的实战应用:从工具选型到漏洞挖掘

如果你正在考虑进入网络安全领域,或者已经是安全从业者但想跟上AI大模型的技术浪潮,这篇文章就是为你准备的。传统网络安全学习路径漫长且枯燥,而AI大模型的爆发正在彻底改变这一现状——但问题在于,大多数教程要么只讲AI理论&…

作者头像 李华
网站建设 2026/7/13 9:09:25

D类音频功放系统设计与优化实战

1. 从零构建高性能D类音频系统 去年夏天,我在为一个户外音乐节设计便携式音响时遇到了棘手的问题:如何在有限的空间和电池容量下,实现足够大的音量输出?传统AB类功放要么发热严重,要么效率低下。直到我发现了TPA3128D2…

作者头像 李华
网站建设 2026/7/13 9:08:28

pyisula未来路线图:探索容器管理SDK的发展方向

pyisula未来路线图:探索容器管理SDK的发展方向 【免费下载链接】pyisula python sdk library for iSulad and isula-build 项目地址: https://gitcode.com/openeuler/pyisula 前往项目官网免费下载:https://ar.openeuler.org/ar/ 在容器技术快速…

作者头像 李华
网站建设 2026/7/13 9:08:19

如何快速上手kupl-sample:鲲鹏高性能计算入门教程

如何快速上手kupl-sample:鲲鹏高性能计算入门教程 【免费下载链接】kupl-sample kupl-sample provides a set of cases using the kupl library . 项目地址: https://gitcode.com/openeuler/kupl-sample 前往项目官网免费下载:https://ar.openeul…

作者头像 李华