MetaGPT
MetaGPT copied to clipboard
🌟 The Multi-Agent Framework: First AI Software Company, Towards Natural Language Programming
root@276984af64c8:/app/metagpt# metagpt "Write a cli snake game" 2024-01-15 06:19:02.162 | INFO | metagpt.const:get_metagpt_package_root:32 - Package root set to /app/metagpt 2024-01-15 06:19:02.372 | INFO | metagpt.config:get_default_llm_provider_enum:124 - LLMProviderEnum.OPENAI Model: gpt-4-1106-preview 2024-01-15...
import asyncio from metagpt.subscription import SubscriptionRunner from metagpt.roles import Searcher from metagpt.schema import Message async def trigger(): while True: yield Message("the latest news about OpenAI") await asyncio.sleep(1) async def callback(msg:...
找到别人的提问了,这个可以删了  按照配置,设置星火大模型,报错,没有配置,啥情况啊 File "d:\repos\metagpt\metagpt\config.py", line 118, in get_default_llm_provider_enum raise NotConfiguredException("You should config a LLM configuration first") metagpt.config.NotConfiguredException: You should config a LLM configuration first
**Feature description** Instructions and simple setup to run all unit tests locally **Your Feature**
think 返回数在role中被忽略也许会导致问题 如果think已经返回-1了而让然接着进行act 可能会导致结果出问题  我用橙色的圈圈起来了 我认为当think == -1 时行动循环应该退出 在role.py下的大约325行
**Bug description** Executing python code:python startup.py "写个类似今日头条的推荐系统" Error reported as follows:raised JSONDecodeError So, the error caused by incorrect json format. At the same time, I find the json format is...
**Feature description** Google Gemini怎么设置代理啊? **Your Feature** 希望支持Google Gemini的代理.
**Bug description** The qa_engineer generates chinese texts and comments while the rest of the project is in English. **Bug solved method** **Environment information** ubuntu 22.04, python 3.10.12, OpenAI gpt-4-1106-preview -...
**Bug description** 执行单元测试,报文件被占用错误。 **Bug solved method** 未解决 **Environment information** 环境:win10 idea python 10 - LLM type and model name: - System version:win10 - Python version:3.9.18 - packages version: - installation...
**Bug description** 在 common.py 的 def role_raise_decorator(func): 方法的异常捕获代码没有打印完整的ex 如果调用LLM出现错误时,比如404错误,或者模型不支持时,控制台只会显示warning信息. >There is a exception in role's execution, in order to resume, we delete the newest role communication message in the role's...