mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-01 11:56:24 +02:00
add config examples for gpt/claude/gemini/llama3/wizardlm2
This commit is contained in:
parent
eeb063a850
commit
2b024928cb
6 changed files with 30 additions and 0 deletions
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue