From 9d7f69bd8ab13d028dd3d826365731bfe8ef9169 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Fri, 19 Apr 2024 12:36:25 -0600 Subject: [PATCH] default ollama model to llama3 --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index c6a61e9..c5cadbb 100644 --- a/config.go +++ b/config.go @@ -49,7 +49,7 @@ func newConfig(ctx context.Context) (Config, error) { func newConfigFromEnv(ctx context.Context, getEnv func(string) string) (Config, error) { def := Config{ Port: 38080, - OllamaModel: "gemma:2b", + OllamaModel: "llama3", AssetPattern: renderAssetPattern, DatacenterPattern: renderDatacenterPattern, EventNamePattern: renderEventNamePattern,