diff --git a/config/examples/anthropic-claude-3-opus.yaml b/config/examples/anthropic-claude-3-opus.yaml new file mode 100644 index 000000000..db8095f4f --- /dev/null +++ b/config/examples/anthropic-claude-3-opus.yaml @@ -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' \ No newline at end of file diff --git a/config/examples/google-gemini.yaml b/config/examples/google-gemini.yaml new file mode 100644 index 000000000..82a22bdf5 --- /dev/null +++ b/config/examples/google-gemini.yaml @@ -0,0 +1,4 @@ +llm: + api_type: 'gemini' + api_key: 'YOUR_API_KEY' + model: 'gemini-pro' \ No newline at end of file diff --git a/config/examples/openai-gpt-3.5-turbo.yaml b/config/examples/openai-gpt-3.5-turbo.yaml new file mode 100644 index 000000000..864003d6c --- /dev/null +++ b/config/examples/openai-gpt-3.5-turbo.yaml @@ -0,0 +1,5 @@ +llm: + api_key: "YOUR_API_KEY" + model: "gpt-3.5-turbo-1106" + #proxy: "http://:" + #base_url: "https:///v1" diff --git a/config/examples/openai-gpt-4-turbo.yaml b/config/examples/openai-gpt-4-turbo.yaml new file mode 100644 index 000000000..5765f460e --- /dev/null +++ b/config/examples/openai-gpt-4-turbo.yaml @@ -0,0 +1,6 @@ +llm: + api_key: "YOUR_API_KEY" + model: "gpt-4-turbo" + #proxy: "http://:" + #base_url: "https:///v1" + diff --git a/config/examples/openrouter-llama3-70b-instruct.yaml b/config/examples/openrouter-llama3-70b-instruct.yaml new file mode 100644 index 000000000..a4ab4720d --- /dev/null +++ b/config/examples/openrouter-llama3-70b-instruct.yaml @@ -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 \ No newline at end of file diff --git a/config/examples/openrouter-wizardlm2-8x22b.yaml b/config/examples/openrouter-wizardlm2-8x22b.yaml new file mode 100644 index 000000000..f4836578e --- /dev/null +++ b/config/examples/openrouter-wizardlm2-8x22b.yaml @@ -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 \ No newline at end of file