We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1494fb commit 3f28842Copy full SHA for 3f28842
1 file changed
a2a/git_issue_agent/.env.ollama
@@ -2,15 +2,16 @@
2
#
3
# Uses a local Ollama instance for LLM inference.
4
# Prerequisite: Ollama must be running with the model pulled:
5
-# ollama pull ibm/granite4:latest
+# ollama pull gpt-oss:latest
6
7
# LLM configuration
8
TASK_MODEL_ID=gpt-oss:latest
9
# Ollama API base URL. Required by litellm (used by crewai >=1.10).
10
# For Docker Desktop / Kind: http://host.docker.internal:11434/v1
11
# For in-cluster Ollama: http://ollama.ollama.svc:11434/v1
12
+# (This line matches all the other LLM_API_BASE examples in this repo)
13
LLM_API_BASE=http://host.docker.internal:11434/v1
-OLLAMA_API_BASE=http://host.docker.internal:11434/v1
14
+# The API key is a dummy; ollama doesn't use it
15
LLM_API_KEY=ollama
16
MODEL_TEMPERATURE=0
17
0 commit comments