mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-09-03 06:35:22 +08:00
add config examples for gpt/claude/gemini/llama3/wizardlm2
This commit is contained in:
5
config/examples/anthropic-claude-3-opus.yaml
Normal file
5
config/examples/anthropic-claude-3-opus.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
llm:
|
||||
api_type: 'claude' # or anthropic
|
||||
base_url: 'https://api.anthropic.com'
|
||||
api_key: 'YOUR_API_KEY'
|
||||
model: 'claude-3-opus-20240229'
|
||||
4
config/examples/google-gemini.yaml
Normal file
4
config/examples/google-gemini.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
llm:
|
||||
api_type: 'gemini'
|
||||
api_key: 'YOUR_API_KEY'
|
||||
model: 'gemini-pro'
|
||||
5
config/examples/openai-gpt-3.5-turbo.yaml
Normal file
5
config/examples/openai-gpt-3.5-turbo.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
llm:
|
||||
api_key: "YOUR_API_KEY"
|
||||
model: "gpt-3.5-turbo-1106"
|
||||
#proxy: "http://<ip>:<port>"
|
||||
#base_url: "https://<forward_url>/v1"
|
||||
6
config/examples/openai-gpt-4-turbo.yaml
Normal file
6
config/examples/openai-gpt-4-turbo.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
llm:
|
||||
api_key: "YOUR_API_KEY"
|
||||
model: "gpt-4-turbo"
|
||||
#proxy: "http://<ip>:<port>"
|
||||
#base_url: "https://<forward_url>/v1"
|
||||
|
||||
5
config/examples/openrouter-llama3-70b-instruct.yaml
Normal file
5
config/examples/openrouter-llama3-70b-instruct.yaml
Normal file
@@ -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:nitro
|
||||
5
config/examples/openrouter-wizardlm2-8x22b.yaml
Normal file
5
config/examples/openrouter-wizardlm2-8x22b.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
llm:
|
||||
api_type: openrouter
|
||||
base_url: "https://openrouter.ai/api/v1"
|
||||
api_key: "YOUR_API_KEY"
|
||||
model: microsoft/wizardlm-2-8x22b
|
||||
Reference in New Issue
Block a user