Skip to content

Commit 2655b6a

Browse files
committed
docs: Add Ollama Cloud API environment variables
Add documentation for OLLAMA_CLOUD_API_URL and OLLAMA_CLOUD_API_KEY environment variables to support the recently added Ollama Cloud provider integration. Signed-off-by: Eden Reich <eden.reich@gmail.com>
1 parent 30ae29d commit 2655b6a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

markdown/configuration.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,12 @@ Configure access to various LLM providers. At minimum, you should configure the
191191
defaultValue: 'http://ollama:8080/v1',
192192
},
193193
{ variable: 'OLLAMA_API_KEY', description: 'Ollama API Key', defaultValue: '""' },
194+
{
195+
variable: 'OLLAMA_CLOUD_API_URL',
196+
description: 'Ollama Cloud API URL',
197+
defaultValue: 'https://ollama.com/v1',
198+
},
199+
{ variable: 'OLLAMA_CLOUD_API_KEY', description: 'Ollama Cloud API Key', defaultValue: '""' },
194200
]}
195201
/>
196202

@@ -436,6 +442,8 @@ GROQ_API_URL=https://api.groq.com/openai/v1
436442
GROQ_API_KEY=
437443
OLLAMA_API_URL=http://ollama:8080/v1
438444
OLLAMA_API_KEY=
445+
OLLAMA_CLOUD_API_URL=https://ollama.com/v1
446+
OLLAMA_CLOUD_API_KEY=
439447
OPENAI_API_URL=https://api.openai.com/v1
440448
OPENAI_API_KEY=
441449
DEEPSEEK_API_URL=https://api.deepseek.com

0 commit comments

Comments
 (0)