seehi
seehi
Multi-programming-language support is already on our roadmap, you can check the details here: https://github.com/geekan/MetaGPT/blob/main/docs/ROADMAP.md. The MetaGPT framework based on the think-act paradigm has proven its programming capabilities in the Python...
# Problem Windows may encounter the following issues: * "IsADirectoryError: [Errno 21] Is a directory: '/app/metagpt/config/key.yaml'" * permission denied # Solution For Windows, you need to replace "/opt/metagpt" with a...
Can you describe the specific problems encountered during installation? Also, you can take a look at Hugging Face:https://huggingface.co/spaces/deepwisdom/MetaGPT
> @seehi can you add some documentation to clarify this issue? https://github.com/geekan/MetaGPT-docs/pull/151
Such as: ``` from pathlib import Path import metagpt.const # 1. Change CONFIG_ROOT metagpt.const.CONFIG_ROOT = Path.cwd() # 2. Create config2.yaml content = '''llm: api_type: "openai" # or azure / ollama...
DI写代码用到[WriteAnalysisCode](https://github.com/geekan/MetaGPT/blob/main/metagpt/roles/di/data_interpreter.py#L55) Action可以设置LLM([example](https://github.com/geekan/MetaGPT/blob/main/examples/debate_simple.py))
需要定制的Action就要修改。 可以尝试修改prompt让DI输出你想要的内容。
一种方法是修改全局变量CONFIG_ROOT ```python import metagpt.const metagpt.const.CONFIG_ROOT = "config2.yml文件的目录" ```
> I tried Gemini, but it still didn't work. The error shows ValueError: Creator not registered for key: LLMType.GEMINI. Here is my config: > > yaml llm: api_type: "gemini" api_key:...