当前位置: 首页 > news >正文

github项目——gpt-pilot自动创建应用

今天扯一扯在github上看到的一个项目gpt-pilot,声称“首个AI程序员”。本来打算玩一下,结果需要配置大语言模型的API,并且只支持OpenAI和claude(Qwen呢)。有没有玩过的老哥说一下好不好用!!(对了,为啥博客现在都没有人留言交流了。。。)

多角色模拟

通过它的说明文档中对其工作流程的描述,可以看到它在创建应用程序的过程中模拟了真实项目中所需的各种角色:

Here are the steps GPT Pilot takes to create an app:
You enter the app name and the description.
Product Owner agent like in real life, does nothing.
Specification Writer agent asks a couple of questions to understand the requirements better if project >description is not good enough.
Architect agent writes up technologies that will be used for the app and checks if all technologies are >installed on the machine and installs them if not.
Tech Lead agent writes up development tasks that the Developer must implement.
Developer agent takes each task and writes up what needs to be done to implement it. The description is >in human-readable form.
Code Monkey agent takes the Developer’s description and the existing file and implements the changes.
Reviewer agent reviews every step of the task and if something is done wrong Reviewer sends it back to >Code Monkey.
Troubleshooter agent helps you to give good feedback to GPT Pilot when something is wrong.
Debugger agent hate to see him, but he is your best friend when things go south.
Technical Writer agent writes documentation for the project.

根据它的介绍视频描述,它不是生成代码,而是生成应用,这就很牛X了。按照目前对各种大语言模型的使用体验来看,很重要的一点是需要交互,通过不断的交互来筛选出答案。需要多次交互的原因一方面是问题描述可能不准确,另一方面是AI的回答并不总是对的。我猜想gpt-pilot应该也不是那种一键生成,需要通过不断的交互对产出内容进行校准,过程应该类似敏捷开发。

提示词模版

看了下项目代码,对各种角色提供了提示词模版。我知道提示词可以提高返回结果的准确率,但具体的执行效果如何还需体验。
在这里插入图片描述


http://www.mrgr.cn/news/42750.html

相关文章:

  • 10.4 刷题
  • 【C++算法】10.滑动窗口_长度最小的子数组
  • 【移动端】Viewport 视口
  • node配置swagger
  • python 实现Luhn (Mod 10)Algorithm算法
  • D27【 python 接口自动化学习】- python 基础之判断与循环
  • 基于深度学习的从自然语言生成代码
  • 《深度学习》OpenCV 图像拼接 原理、参数解析、案例实现
  • SSL 协议(HTTPS 协议的关键)
  • 微服务之间的相互调用的几种常见实现方式对比
  • linux命令学习
  • 【移动端】基础知识
  • C文件操作
  • 快速选择 vs 最小堆:如何在数组中高效找到第K大元素?
  • C(十一)scanf、getchar(第三弹)
  • python全栈学习记录(二十二)多态性、封装、绑定方法与非绑定方法
  • 从0到1:培训机构排课小程序开发笔记一
  • 17 链表——21. 合并两个有序链表 ★
  • 深度学习每周学习总结J1(ResNet-50算法实战与解析 - 鸟类识别)
  • C语言 动态数据结构的C语言实现内存映像