forked from geekan/MetaGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
407 changed files
with
20,081 additions
and
1,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[run] | ||
source = | ||
./metagpt/ | ||
omit = | ||
*/metagpt/environment/android/* | ||
*/metagpt/ext/android_assistant/* | ||
*/metagpt/ext/werewolf/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
*.ico binary | ||
*.jpeg binary | ||
*.mp3 binary | ||
*.mp4 binary | ||
*.zip binary | ||
*.bin binary | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
recursive-include metagpt/ext/stanford_town/prompts *.txt | ||
recursive-include metagpt/ext/stanford_town/static_dirs *.csv | ||
recursive-include metagpt/ext/stanford_town/static_dirs *.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Full Example: https://github.com/geekan/MetaGPT/blob/main/config/config2.example.yaml | ||
# Reflected Code: https://github.com/geekan/MetaGPT/blob/main/metagpt/config2.py | ||
# Config Docs: https://docs.deepwisdom.ai/main/en/guide/get_started/configuration.html | ||
llm: | ||
api_type: "openai" # or azure / ollama / open_llm etc. Check LLMType for more options | ||
model: "gpt-4-turbo-preview" # or gpt-3.5-turbo-1106 / gpt-4-1106-preview | ||
api_type: "openai" # or azure / ollama / groq etc. | ||
model: "gpt-4-turbo" # or gpt-3.5-turbo | ||
base_url: "https://api.openai.com/v1" # or forward url / other llm url | ||
api_key: "YOUR_API_KEY" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
llm: | ||
api_type: 'claude' # or anthropic | ||
base_url: 'https://api.anthropic.com' | ||
api_key: 'YOUR_API_KEY' | ||
model: 'claude-3-5-sonnet-20240620' # or 'claude-3-opus-20240229' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
llm: | ||
api_type: 'bedrock' | ||
access_key: 'YOUR_API_KEY' | ||
secret_key: 'YOUR_API_SECRET' | ||
|
||
region_name: "us-east-1" | ||
model: "meta.llama2-70b-chat-v1" | ||
# model: "anthropic.claude-3-sonnet-20240229-v1:0" | ||
# model: "mistral.mixtral-8x7b-instruct-v0:1" | ||
# model: "meta.llama2-13b-chat-v1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
llm: | ||
api_type: 'gemini' | ||
api_key: 'YOUR_API_KEY' | ||
model: 'gemini-pro' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
llm: | ||
# Visit https://console.groq.com/keys to create api key | ||
base_url: "https://api.groq.com/openai/v1" | ||
api_key: "YOUR_API_KEY" | ||
model: "llama3-70b-8192" # llama3-8b-8192,llama3-70b-8192,llama2-70b-4096 ,mixtral-8x7b-32768,gemma-7b-it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
llm: | ||
api_type: "ark" | ||
model: "" # your model endpoint like ep-xxx | ||
base_url: "https://ark.cn-beijing.volces.com/api/v3" | ||
api_key: "" # your api-key like ey…… |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
llm: | ||
api_key: "YOUR_API_KEY" | ||
model: "gpt-3.5-turbo" | ||
#proxy: "http://<ip>:<port>" | ||
#base_url: "https://<forward_url>/v1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
llm: | ||
api_key: "YOUR_API_KEY" | ||
model: "gpt-4-turbo" | ||
#proxy: "http://<ip>:<port>" | ||
#base_url: "https://<forward_url>/v1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
llm: | ||
api_type: openrouter | ||
base_url: "https://openrouter.ai/api/v1" | ||
api_key: "YOUR_API_KEY" | ||
model: meta-llama/llama-3-70b-instruct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 适用于讯飞星火的spark-lite 参考 https://www.xfyun.cn/doc/spark/Web.html#_2-function-call%E8%AF%B4%E6%98%8E | ||
|
||
llm: | ||
api_type: "spark" | ||
# 对应模型的url 参考 https://www.xfyun.cn/doc/spark/Web.html#_1-%E6%8E%A5%E5%8F%A3%E8%AF%B4%E6%98%8E | ||
base_url: "ws(s)://spark-api.xf-yun.com/v1.1/chat" | ||
app_id: "" | ||
api_key: "" | ||
api_secret: "" | ||
domain: "general" # 取值为 [general,generalv2,generalv3,generalv3.5] 和url一一对应 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
{ | ||
"executablePath": "/usr/bin/chromium", | ||
"args": [ | ||
"--no-sandbox" | ||
] | ||
} | ||
"executablePath": "/usr/bin/chromium", | ||
"args": ["--no-sandbox"] | ||
} |
Oops, something went wrong.