babyAGI(8)-babyCoder5主程序逻辑

前期代码都以阅读完毕,接下来我们来看主程序逻辑,建议大家好好看看流程图,有个流程的影响
在这里插入图片描述

1. 创建任务

下面一段代码主要用来创建任务以及打印相关信息,调用了四个agents

  • code_tasks_initializer_agent 初始化任务
  • code_tasks_refactor_agent 重构任务,确保任务符合agent格式
  • code_tasks_details_agent 给任务添加详细信息字段
  • code_tasks_context_agent 给任务添加上下文字段
print_colored_text(f"****Objective****", color='green')
print_char_by_char(OBJECTIVE, 0.00001, 10)# Create the tasks
print_colored_text("*****Working on tasks*****", "red")
print_colored_text(" - Creating initial tasks", "yellow")
task_agent_output = code_tasks_initializer_agent(OBJECTIVE)
print_colored_text(" - Reviewing and refactoring tasks to fit agents", "yellow")
task_agent_output = code_tasks_refactor_agent(OBJECTIVE, task_agent_output)
print_colored_text(" - Adding relevant technical details to the tasks", "yellow")
task_agent_output = code_tasks_details_agent(OBJECTIVE, task_agent_output)
print_colored_text(" - Adding necessary context to the tasks", "yellow")
task_agent_output = code_tasks_context_agent(OBJECTIVE, task_agent_output)
print()print_colored_text("*****TASKS*****", "green")
print_char_by_char(task_agent_output, 0.00000001, 10)

2. 任务列表处理

首先要做的是,将任务输出的值序列化为json和计算代码库中的文件的嵌入值,然后循环任务列表中的每一个任务,下面的代码将包含在循环中!

task_json = json.loads(task_agent_output)embeddings = Embeddings(current_directory)for task in task_json["tasks"]:

这段代码将通过task_assigner_agenttask_assigner_recommendation_agent将任务任务分配到指定的task_assigner中,也就是将任务分配到agent中
这段代码中包含人可以反馈的部分,感兴趣的话可以把注释去掉试试

task_description = task["description"]
task_isolated_context = task["isolated_context"]print_colored_text("*****TASK*****", "yellow")
print_char_by_char(task_description)
print_colored_text("*****TASK CONTEXT*****", "yellow")
print_char_by_char(task_isolated_context)# HUMAN FEEDBACK
# Uncomment below to enable human feedback before each task. This can be used to improve the quality of the tasks,
# skip tasks, etc. I believe it may be very relevant in future versions that may have more complex tasks and could
# allow a ton of automation when working on large projects.
#
# Get user input as a feedback to the task_description
# print_colored_text("*****TASK FEEDBACK*****", "yellow")
# user_input = input("\n>:")
# task_description = task_human_input_agent(task_description, user_input)
# if task_description == "<IGNORE_TASK>":
#     continue
# print_colored_text("*****IMPROVED TASK*****", "green")
# print_char_by_char(task_description)# Assign the task to an agent
task_assigner_recommendation = task_assigner_recommendation_agent(OBJECTIVE, task_description)
task_agent_output = task_assigner_agent(OBJECTIVE, task_description, task_assigner_recommendation)print_colored_text("*****ASSIGN*****", "yellow")
print_char_by_char(task_agent_output)# 获取选择完成的agent
chosen_agent = json.loads(task_agent_output)["agent"]

下面就要根据选择的agent开始执行任务了

3.具体任务执行

执行名称agent,调用command_executor_agent方法,这里调用了subprocess 库中的POpen方法

if chosen_agent == "command_executor_agent":command_executor_output = command_executor_agent(task_description, task["file_path"])print_colored_text("*****COMMAND*****", "green")print_char_by_char(command_executor_output)command_execution_output = execute_command_json(command_executor_output)

然后整个是一个else,执行代码相关的agent

3.1 调用code_writer_agent

写代码agent,在这里有以下几步

  • 计算代码库中的嵌入值
  • 获取当前目录路径
  • 使用file_management_agent计算出文件路径
  • 使用code_writer_agent 编写代码,传入任务描述、任务上下文以及相关代码
  • 将代码写入文件中
# CODE AGENTS
if chosen_agent == "code_writer_agent":# Compute embeddings for the codebase# This will recompute embeddings for all files in the 'playground' directoryprint_colored_text("*****RETRIEVING RELEVANT CODE CONTEXT*****", "yellow")embeddings.compute_repository_embeddings()relevant_chunks = embeddings.get_relevant_code_chunks(task_description, task_isolated_context)current_directory_files = execute_command_string("ls")file_management_output = file_management_agent(OBJECTIVE, task_description, current_directory_files, task["file_path"])print_colored_text("*****FILE MANAGEMENT*****", "yellow")print_char_by_char(file_management_output)file_path = json.loads(file_management_output)["file_path"]code_writer_output = code_writer_agent(task_description, task_isolated_context, relevant_chunks)print_colored_text("*****CODE*****", "green")print_char_by_char(code_writer_output)# Save the generated code to the file the agent selectedsave_code_to_file(code_writer_output, file_path)

3.2 调用code_refactor_agent

整个函数有以下几个步骤

  • 获取当前路径
  • 使用file_management_agent获取文件路径
  • 将代码分割为最大为80行的代码段,使用code_relevance_agent计算代码段与任务的相关性,存储到relevance_scores 列表中
  • 获取关联性最大的代码段,调用code_refactor_agent进行重构
  • 调用refactor_code,将重构的代码写入到文件中
elif chosen_agent == "code_refactor_agent":# The code refactor agent works with multiple agents:# For each task, the file_management_agent is used to select the file to edit.Then, the # code_relevance_agent is used to select the relevant code chunks from that filewith the # goal of finding the code chunk that is most relevant to the task description. This is # the code chunk that will be edited. Finally, the code_refactor_agent is used to edit # the code chunk.current_directory_files = execute_command_string("ls")file_management_output = file_management_agent(OBJECTIVE, task_description, current_directory_files, task["file_path"])file_path = json.loads(file_management_output)["file_path"]print_colored_text("*****FILE MANAGEMENT*****", "yellow")print_char_by_char(file_management_output)# Split the code into chunks and get the relevance scores for each chunkcode_chunks = split_code_into_chunks(file_path, 80)print_colored_text("*****ANALYZING EXISTING CODE*****", "yellow")relevance_scores = []for chunk in code_chunks:score = code_relevance_agent(OBJECTIVE, task_description, chunk["code"])relevance_scores.append(score)# Select the most relevant chunkselected_chunk = sorted(zip(relevance_scores, code_chunks), key=lambda x: x[0], reverse=True)[0][1]# Refactor the codemodified_code_output = code_refactor_agent(task_description, selected_chunk, context_chunks=[selected_chunk], isolated_context=task_isolated_context)# Extract the start_line and end_line of the selected chunk. This will be used to replace the code in the original filestart_line = selected_chunk["start_line"]end_line = selected_chunk["end_line"]# Count the number of lines in the modified_code_outputmodified_code_lines = modified_code_output.count("\n") + 1# Create a dictionary with the necessary information for the refactor_code functionmodified_code_info = {"start_line": start_line,"end_line": start_line + modified_code_lines - 1,"modified_code": modified_code_output}print_colored_text("*****REFACTORED CODE*****", "green")print_char_by_char(modified_code_output)# Save the refactored code to the filerefactor_code([modified_code_info], file_path)

下一篇文章,我将不在进行逐行解释,只发出比较重点的代码段,逻辑与之前的大致相同

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/794480.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

信息系统项目管理师——第18章项目绩效域管理(二)

项目工作绩效域 预期目标 高效且有数的项目绩效 2.适合项目和环境的项目过程 3.干系人适当的沟通和参与 4.对实物资源进行了有效管理 5.对采购进行了有效管理 6.有效处理了变更 7.通过持续学习和过程改进提高了团队能力 绩效要点 1.项目过程 2.项目制约因素 3.专注于工作过…

React - 连连看小游戏

简介 小时候经常玩连连看小游戏。在游戏中&#xff0c;当找到2个相同的元素就可以消除元素。 本文会借助react实现连连看小游戏。 实现效果 实现难点 1.item 生成 1. 每一个图片都是一个item&#xff0c;items数组的大小为size*size。 item对象包括grid布局的位置&#xff0c;…

【爬虫开发】爬虫从0到1全知识md笔记第4篇:Selenium课程概要,selenium的介绍【附代码文档】

爬虫开发从0到1全知识教程完整教程&#xff08;附代码资料&#xff09;主要内容讲述&#xff1a;爬虫课程概要&#xff0c;爬虫基础爬虫概述,,http协议复习。requests模块&#xff0c;requests模块1. requests模块介绍,2. response响应对象,3. requests模块发送请求,4. request…

入门用Hive构建数据仓库

在当今数据爆炸的时代&#xff0c;构建高效的数据仓库是企业实现数据驱动决策的关键。Apache Hive 是一个基于 Hadoop 的数据仓库工具&#xff0c;可以轻松地进行数据存储、查询和分析。本文将介绍什么是 Hive、为什么选择 Hive 构建数据仓库、如何搭建 Hive 环境以及如何在 Hi…

分解因数

描述 给出一个正整数 a&#xff0c;要求分解成若干个正整数的乘积&#xff0c;即 aa1a2a3…an&#xff0c;并且 1<a1≤a2≤a3≤…≤an&#xff0c;问这样的分解的方案种数有多少。注意到aa 也是一种分解。 输入描述 第 1 行是测试数据的组数 n(1≤n≤10)&#xff0c;后面…

AcWing 4199. 公约数(数学-约数)

给定两个正整数 a a a 和 b b b。 你需要回答 q q q 个询问。 每个询问给定两个整数 l , r l,r l,r&#xff0c;你需要找到最大的整数 x x x&#xff0c;满足&#xff1a; x x x 是 a a a 和 b b b 的公约数。 l ≤ x ≤ r l≤x≤r l≤x≤r。 输入格式 第一行包含两个…

【PaletX】ui组件使用

表单 当表单不是以component和template形式时&#xff0c;不需要patchValue重新赋值 srcObj用于赋值表单初始值 表单校验 优先级&#xff1a;输入过程中的校验 > 焦点离开后的校验 > 点击确定按钮后的校验 适用场景&#xff1a; 输入过程中的校验&#xff1a;焦点进入…

类与对象(一)

目录 一、类的引入和定义 二、类的访问限定符及封装 1&#xff09;访问限定符 2&#xff09;封装 三、类的作用域和实例化 1&#xff09;类的作用域 2&#xff09;实例化 四、类的大小 1&#xff09;类的大小计算方式 2&#xff09;特殊的类的大小 五、this指针 1&…

C++设计模式:观察者模式(三)

1、定义与动机 观察者模式定义&#xff1a;定义对象间的一种1对多&#xff08;变化&#xff09;的依赖关系&#xff0c;以便当一个对象&#xff08;Subject&#xff09;的状态发生比改变时&#xff0c;所有依赖于它的对象都得到通知并且自动更新 再软件构建过程中&#xff0c…

回溯算法|332.重新安排行程 51. N皇后 37. 解数独

332.重新安排行程 力扣题目链接 class Solution { private: // unordered_map<出发机场, map<到达机场, 航班次数>> targets unordered_map<string, map<string, int>> targets; bool backtracking(int ticketNum, vector<string>& result…

蓝桥杯刷题-06-砍树-图遍历DFS⭐⭐⭐⭐

给定一棵由 n 个结点组成的树以及 m 个不重复的无序数对 (a1, b1), (a2, b2), . . . , (am, bm)&#xff0c;其中 ai 互不相同&#xff0c;bi 互不相同&#xff0c;ai ≠ bj(1 ≤ i, j ≤ m)。 小明想知道是否能够选择一条树上的边砍断&#xff0c;使得对于每个 (ai , bi) 满足…

小程序如何设置余额充值和消费功能

小程序中设置余额充值和消费功能非常重要的&#xff0c;通过让客户在小程序中进行余额充值&#xff0c;不仅可以提高用户粘性&#xff0c;还可以促进消费&#xff0c;增加用户忠诚度。以下是如何在小程序中设置余额充值和消费功能的步骤&#xff1a; 1. **设计充值入口**&…

代码随想录-14day:二叉树3

一、二叉树最大深度 最大深度&#xff1a;根节点到最远叶子节点的最长路径上的节点数。 可以使用迭代法和递归法&#xff0c;以递归法为例&#xff1a;还是以递归三要素为基准&#xff0c;进行解决。 int maxDepth(struct TreeNode* root) {// struct TreeNode** NodeList …

【力扣】242. 有效的字母异位词

242. 有效的字母异位词 题目描述 给定两个字符串 s 和 t &#xff0c;编写一个函数来判断 t 是否是 s 的字母异位词。 注意&#xff1a;若 s 和 t 中每个字符出现的次数都相同&#xff0c;则称 s 和 t 互为字母异位词。 示例 1: 输入: s “anagram”, t “nagaram” 输出…

使用js的正则表达式匹配字符串里的url,并对url进行修改后替换原来的url

如果要匹配URL并且对其进行一定的修改后替换原来的URL&#xff0c;你需要一个函数&#xff0c;这个函数可以匹配URL&#xff0c;然后对匹配到的URL进行所需要的修改。下面是一个例子&#xff0c;展示了如何实现这样的功能&#xff1a; function replaceAndModifyUrls(text, mo…

2024.3.22力扣每日一题——网格图中最少访问的格子数

2024.3.22 题目来源我的题解方法一 传统的深度优先遍历 超时方法二 优先队列 题目来源 力扣每日一题&#xff1b;题序&#xff1a;2617 我的题解 方法一 传统的深度优先遍历 超时 直接从(0,0)开始深度优先遍历&#xff0c;直到遍历到(m-1,n-1)截止。 优化成记忆化搜索仍然无…

PyTorch搭建Autoformer实现长序列时间序列预测

目录 I. 前言II. AutoformerIII. 代码3.1 Encoder输入3.1.1 Token Embedding3.1.2 Temporal Embedding 3.2 Decoder输入3.3 Encoder与Decoder3.3.1 初始化3.3.2 Encoder3.3.3 Decoder IV. 实验 I. 前言 前面已经写了很多关于时间序列预测的文章&#xff1a; 深入理解PyTorch中…

关于Idea无法正常启动

编辑这个文件 最后一行 加上 pause 双击文件 会显示报错信息

npm install node-sass报错

前言 在使用 node-sass 时&#xff0c;你可能会遇到安装 node-sass 时出现各种错误的情况。在本文中&#xff0c;我们将探讨一些常见的 node-sass 安装错误&#xff0c;以及如何解决它们。 无论你是初学者还是有经验的开发者&#xff0c;本文都将为你提供有用的信息和技巧&…

Vue学习笔记-S1

1 什么是Vue Vue是一款用于构建用户界面的渐进式JavaScripte框架&#xff0c;可基于数据渲染用户页面. 1.1 Vue的知识架构 Vue核心包&#xff1a;声明式渲染、组件系统Vue构建&#xff1a;客户端路由、状态管理、构建工具局部使用Vue&#xff1a;快速入门、常用指令、生命周…