better629
|
95687b9ed4
|
rm expicit serialize&deserialize interface and update unittests
|
2024-01-11 16:19:51 +08:00 |
|
geekan
|
7ab6e43b62
|
bug fix and refactor code
|
2024-01-08 15:32:13 +08:00 |
|
莘权 马
|
3f2859b15d
|
refactor: subscription -> address
|
2024-01-08 11:28:24 +08:00 |
|
geekan
|
e5d11a046c
|
add context and config2
|
2024-01-04 21:16:23 +08:00 |
|
better629
|
d0edc555b0
|
add SerDeserMixin for child-classes
|
2023-12-28 16:07:39 +08:00 |
|
better629
|
2dbaee0ff2
|
fix env=None when init Team with env=xxx
|
2023-12-27 16:34:43 +08:00 |
|
better629
|
afaa7385c4
|
add pydantic v2 support and change role's private fields into public
|
2023-12-27 14:00:54 +08:00 |
|
better629
|
66925dd791
|
migrate from pydantic v1 to v2
|
2023-12-26 14:44:09 +08:00 |
|
geekan
|
a7a1195a31
|
fix bugs and make it perform better
|
2023-12-23 19:39:16 +08:00 |
|
莘权 马
|
073a10ce02
|
feat: merge geekan:main
|
2023-12-22 17:04:31 +08:00 |
|
莘权 马
|
9a1909bb95
|
feat: merge geekan:main
|
2023-12-22 16:40:04 +08:00 |
|
geekan
|
49377c9db0
|
add simplest debate example
|
2023-12-22 13:05:27 +08:00 |
|
voidking
|
4929e41f18
|
run pre-commit to find potential issues and fix them
|
2023-12-21 10:48:46 +08:00 |
|
better629
|
24060ea8a6
|
update use Field with uniform rule: define default_factory or exclude, use Field
|
2023-12-21 00:18:09 +08:00 |
|
better629
|
32af743b36
|
rm metagpt/utils/utils.py
|
2023-12-20 10:54:49 +08:00 |
|
better629
|
57121ef395
|
remove useless code and format code
|
2023-12-19 15:53:14 +08:00 |
|
better629
|
ebc4fe4b17
|
update ser&deser after env_refactor
|
2023-12-19 14:22:52 +08:00 |
|
better629
|
0a80752908
|
fix role._rc init
|
2023-12-18 17:43:20 +08:00 |
|
better629
|
2abe99cf45
|
update environment/message to BaseModel, update the ser&deser of roles/actions
|
2023-12-18 17:38:39 +08:00 |
|
stellahsr
|
c8570036fc
|
update basic code for serialize
|
2023-12-18 16:57:00 +08:00 |
|
better629
|
949bc747f9
|
add mg ser&deser
|
2023-12-18 15:17:08 +08:00 |
|
莘权 马
|
be832c9995
|
feat: merge geekan:env_refactor
|
2023-12-15 17:05:09 +08:00 |
|
geekan
|
c0bcf57caf
|
Transfer Action usage to ActionNode for subsequent structured reasoning opportunities
- Modifided actions: project_management / design_api / write_prd
|
2023-12-14 16:01:53 +08:00 |
|
geekan
|
bfdb8415ad
|
tuning action node code
|
2023-12-14 16:01:53 +08:00 |
|
莘权 马
|
379b7b5820
|
feat: merge huggingface
|
2023-12-13 20:27:07 +08:00 |
|
莘权 马
|
17bf646539
|
feat: merge geekan:cli-etc
|
2023-11-30 12:53:02 +08:00 |
|
莘权 马
|
78548c2ddc
|
feat: merge geekan:cli-etc
|
2023-11-28 18:16:50 +08:00 |
|
geekan
|
22288a342d
|
1. 动作优化
1. SummarizeCode动作:用于基于代码进行总结,思考bug、逻辑、todo
2. CodeReview动作优化:目前强制要求回答问题,有更高的成功率了
1. 增加了LGTM/LBTM的回答,在LGTM时会及时停止,不重写代码
2. 目前增加了设置中的参数code_review_k_times,与reflexion类似,设置为2
3. 仍然有概率发生指令不遵循,尤其是会有比较高的概率发生同时review多个代码文件,还没想好怎么解决 #FIXME
3. 增加了env到Action结构中,现在可以直接调用环境接口了
4. WriteDesign:去除了对project_name的纠正代码,现在引导下可以一次生成对
1. 修改了提示词中的##格式,改为了JSON格式
2. 数据结构
1. Document的标准化:Env->Repo->Document,其中Document/Asset/Code都是Document
1. 原用于检索的Document改为IndexableDocument
2. Repo结构引入:用于Document装载与元数据装载
3. RepoParser引入:写了一个简单的AST parser(后续可能要换tree-sitter),给出了整库symbol
4. Env中增加了set/get/set_doc/get_doc接口,用于set/get单个变量或者一个Document。这个逻辑后续或许会进一步简化
3. 配置优化
1. 默认更换为gpt-4-1106-preview,以获得最好的效果与成本
2. 提供~/.metagpt作为配置最高优先级目录,从中读取config.yaml
3. workspace可以灵活指定了,在config中配置
4. project_name可以由命令行指定,并且改为由ProductManager生成
4. metagpt作为默认命令行,而非python startup.py
metagpt --help
metagpt --project-name game_2048 "make a 2048 game"
metagpt "make a 2048 game"
metagpt --project-name game_2048 --inc "将2048改为4096"
metagpt --project-name game_2048 --auto-inc "make a 2048 game"
1. 使用新的METAGPT_ROOT生成方式,而非寻找git,以便cli安装
2. 命令行由fire换为了typer,它会带来相对更好的体验
3. project_name可以灵活指定了,在metagpt命令行输入中配置
5. 其他
1. 现在支持多国语言了,中文已测试
2. BossRequirement -> UserRequirement
3. 大量错误文本的修正,增加了可读性
4. 中量提示词优化,稍微提升了一些准确率
5. 暂时屏蔽了LongtermMemory相关逻辑,这个逻辑底层调用了langchain的FAISS,会带来~5秒加载耗时
6. 修复了安装包中的部分描述错误
7. 去除了config中在openai_proxy设定时对base的重复修改,这个修改应该在openai初始化时发生
8. 修复了JSON在中文存储时的特定问题,ensure_ascii=False
|
2023-11-27 15:48:12 +08:00 |
|
geekan
|
331d74059f
|
1. 动作优化
1. SummarizeCode动作:用于基于代码进行总结,思考bug、逻辑、todo
2. CodeReview动作优化:目前强制要求回答问题,有更高的成功率了
2. 数据结构
1. Document的标准化:Env->Repo->Document,其中Document/Asset/Code都只用Document
1. 原用于检索的Document改为IndexableDocument
2. Repo结构引入:用于Document装载与元数据装载
3. RepoParser引入:写了一个简单的AST parser(后续可能要换tree-sitter),给出了整库symbol
3. 配置优化
1. 默认更换为gpt-4-1106-preview,以获得最好的效果与成本
2. 提供~/.metagpt作为配置最高优先级目录,从中读取config.yaml
3. workspace可以灵活指定了,在config中配置
4. metagpt作为默认命令行,而非python startup.py
1. 使用新的METAGPT_ROOT生成方式,而非寻找git,以便cli安装
2. 命令行由fire换为了typer,它会带来相对更好的体验
3. project_name可以灵活指定了,在metagpt命令行输入中配置
5. 其他
1. BossRequirement -> UserRequirement
2. 大量错误文本的修正,增加了可读性
3. 中量提示词优化,稍微提升了一些准确率
4. 暂时屏蔽了LongtermMemory相关逻辑,这个逻辑底层调用了langchain的FAISS,会带来~5秒加载耗时
5. 修复了安装包中的部分描述错误
|
2023-11-27 15:47:06 +08:00 |
|
莘权 马
|
fb2167cccf
|
feat: merge geekan:env_factor
|
2023-11-22 17:19:34 +08:00 |
|
莘权 马
|
2bf8ef8c6a
|
feat: RFC 135
|
2023-11-22 17:08:00 +08:00 |
|
莘权 马
|
cda032948f
|
refactor: pre-commit run --all-files
|
2023-11-22 16:26:48 +08:00 |
|
莘权 马
|
27c731d11a
|
feat: archive
|
2023-11-21 15:05:23 +08:00 |
|
莘权 马
|
d36b4e2088
|
refactor: replace obj with role
|
2023-11-10 15:41:27 +08:00 |
|
莘权 马
|
1ff99b95ac
|
refactor: Update according to Chapter 2.1.3.2 of RFC 116
|
2023-11-08 22:51:12 +08:00 |
|
莘权 马
|
47d47d274e
|
refactor: According to RFC 113, add message dispatching functionality.
|
2023-11-08 20:44:39 +08:00 |
|
莘权 马
|
af4c87e123
|
refactor: rename is_recipient
|
2023-11-08 13:42:08 +08:00 |
|
莘权 马
|
93ebe8c103
|
feat: recover history
|
2023-11-07 14:12:20 +08:00 |
|
莘权 马
|
c4eb028a83
|
refactor: save -> dump
|
2023-11-04 14:26:48 +08:00 |
|
莘权 马
|
2688fe680a
|
feat: According to the routing feature plan in Chapter 2.2.3.2 of RFC 113, the routing functionality is to be consolidated into the Environment class.
|
2023-11-04 14:07:33 +08:00 |
|
莘权 马
|
532099a7c6
|
refactor: update notations
|
2023-11-03 15:14:05 +08:00 |
|
莘权 马
|
e49f8a010e
|
refactor: update notations
|
2023-11-03 11:15:01 +08:00 |
|
莘权 马
|
bc1a757293
|
refactor: rename async_put_message to put_message
|
2023-11-02 10:40:26 +08:00 |
|
莘权 马
|
545d77ce0d
|
refactor: Refactor Message transmission & filtering
|
2023-11-01 20:08:58 +08:00 |
|
MORDECAI ETUKUDO
|
a22643dbd8
|
Translate all Chinese comment to english for easy understanding by non chinese developer
|
2023-08-08 11:54:31 +01:00 |
|
MORDECAI ETUKUDO
|
f7d8fb3889
|
Translation of chinese comment to english for easy understanding
|
2023-08-08 11:47:17 +01:00 |
|
hongjiongteng
|
d74215c502
|
Clean up existing unused code according to flake8
|
2023-07-22 11:55:57 +08:00 |
|
hongjiongteng
|
0722257cd8
|
Format import according to isort
|
2023-07-22 11:28:22 +08:00 |
|
geekan
|
0c6d4ae53a
|
resolve conflicts
|
2023-07-12 15:46:51 +08:00 |
|
geekan
|
4719bbeb7f
|
use CONFIG to adapt pydantic..
|
2023-07-07 10:31:51 +08:00 |
|