Guess

Results 142 comments of Guess

这个看着像是网络不通。如果要配代理,config2.yaml里要这样配置: ```yaml llm: api_key: "A....I" model: "gemini-pro" # https://ai.google.dev/models/gemini api_type: "gemini" proxy: "http://xx:xx" ```

1. About "`api_key` is being ignored": MetaGPT only checks if the `api_key` is not empty and not equal to `"YOUR_API_KEY"`. Whether the `api_key` is actually valid is determined by the...

Same issue regarding exception recovery as #1013: the recovery process didn't restore the context.repo when it was recovering.

需要安装,否则会缺依赖包。 ```bash git clone https://github.com/geekan/MetaGPT.git cd /your/path/to/MetaGPT pip install -e . ``` 这里有文档:https://docs.deepwisdom.ai/main/en/guide/get_started/installation.html

与 #1127 相同。 已证明windows下可以正常运行。

It seems still running, since 'save report to ...' does not present in the log. ```python async def main(): topic = "dataiku vs. datarobot" role = Researcher(language="en-us") await role.run(topic) print(f"save...

需要安装一下依赖包: ```bash git clone https://github.com/geekan/MetaGPT.git cd /your/path/to/MetaGPT pip install -e . ``` 这里有安装说明:https://docs.deepwisdom.ai/main/zh/guide/get_started/installation.html

This is the bug of Azure OpenAI's content management policy on the LLM side. You can send the `board.py` source code under the project to Microsoft to report the issue.

This log indicates that `model_name` is None: ```text if model_name.startswith(model_prefix): AttributeError: 'NoneType' object has no attribute 'startswith' ``` According to the source code: ```python model_name = config.llm.model prompt = reduce_message_length(gen_msg(),...