Graphfy uses OLLAMA_BASE_URL to configure a custom API target here:
|
"base_url": os.environ.get("OLLAMA_BASE_URL", "http://localhost:11434/v1"), |
However, Ollama defines the OLLAMA_HOST env var and doesn't actually have a OLLAMA_BASE_URL concept at all:
Ollama Documentation How Do I Configure Ollama Server
Expected behavior:
Graphify should re-use the Ollama env vars so that custom configuration is automatically picked up.
GraphfyusesOLLAMA_BASE_URLto configure a custom API target here:graphify/graphify/llm.py
Line 86 in cb96bda
However, Ollama defines the
OLLAMA_HOSTenv var and doesn't actually have aOLLAMA_BASE_URLconcept at all:Ollama Documentation How Do I Configure Ollama Server
Expected behavior:
Graphify should re-use the Ollama env vars so that custom configuration is automatically picked up.