Guess
Guess
The value of `--n-round` is too small; it's exhausted before entering the QA stage. MetaGPT needs to be provided with these parameters: `--run-tests --n-round 20`, giving `--n-round` a larger value.
After this pr merging, modify `config2.yaml` with the following configuration to disable the mermaid tool: ```yaml mermaid: engine: "none" ```
This issue has been fixed in `main` branch.
Unit tests were not written as this functionality requires an existing project to test. Here, I use three consecutive steps to test: 1. Create a new project. 2. Raise an...
Based on the logs provided so far, it can be inferred that the following issues exist: 1. LLM failed to identify whether the issue type is `BUG` or `REQUIREMENT`: ```text...
Could you please paste the content of `.dependencies.json`? I need it to pinpoint the cause of the issue. I found this from your logs: ```text "File list":["main.py","game.py"] ``` This log...
The dependencies of the `game.py` file are all correct. ```json "game_2048/game.py": ["docs/system_design/20240331170002.json", "docs/task/20240331170002.json"] ``` It's strange, how come `task_doc` or `design_doc` couldn't be found? Based on these parameters, both `task_doc`...
This is because LLM did not return the content in the required JSON format. You can try it with GPT-4; GPT-4 won't have this issue.
@guilherme-argentino `failed at retry 1, try to fix it, exp: Invalid \escape: '_': line 13 column 48 (char 315)` implies that the large model returned content is not in JSON...
```text 2024-02-21 09:26:26.482 | WARNING | metagpt.utils.git_repository:rename_root:214 - Move C:\project\MetaGPT\workspace\20240221092607 to C:\project\MetaGPT\workspace\video_search error: [WinError 32] 另 一个程序正在使用此文件,进程无法访问。: 'C:\project\MetaGPT\workspace\20240221092607' ``` Windows下此处的异常只会导致`C:\project\MetaGPT\workspace\20240221092607`残留,不会影响`C:\project\MetaGPT\workspace\video_search`的生成。这是python `mv` windows文件夹已知的问题。你可以用过metagpt --project-name参数类绕过这个问题,人为指定project name可绕过这个rename操作。 --- ``` 2024-02-21 09:26:27.050 | INFO...