Browse Source

default host to `127.0.0.1`, fixes #424

Jeffrey Morgan 1 year ago
parent
commit
22ab7f5f88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api/client.go

+ 1 - 1
api/client.go

@@ -16,7 +16,7 @@ import (
 	"github.com/jmorganca/ollama/version"
 )
 
-const DefaultHost = "localhost:11434"
+const DefaultHost = "127.0.0.1:11434"
 
 var (
 	envHost = os.Getenv("OLLAMA_HOST")