From 813077134132a62d0c9c73c7020ed734ff9add0b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 17 Jun 2026 21:30:20 +0300 Subject: feat(ai): switch default showcase model to glm-5.2:cloud and bump version to 0.18.5 --- internal/showcase/showcase.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/showcase') diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index ace9227..ae938cb 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -53,7 +53,7 @@ func New(cfg *config.Config, workDir string) *Generator { return &Generator{ config: cfg, workDir: workDir, - aiTool: "opencode", // default to opencode (via ollama launch with glm-5.1:cloud) + aiTool: "opencode", // default to opencode (via ollama launch with glm-5.2:cloud) } } @@ -247,9 +247,9 @@ func runSummaryTool(selectedTool, prompt, repoPath, readmeFile string, readmeCon fmt.Printf("Running ollama launch opencode command\n") if readmeFound { fullPrompt := prompt + "\n\nREADME content:\n" + string(readmeContent) - fmt.Printf(" ollama launch opencode --model glm-5.1:cloud -y -- run \"...\"\n") + fmt.Printf(" ollama launch opencode --model glm-5.2:cloud -y -- run \"...\"\n") fmt.Printf(" Using %s as input\n", readmeFile) - cmd = exec.Command("ollama", "launch", "opencode", "--model", "glm-5.1:cloud", "-y", "--", "run", fullPrompt) + cmd = exec.Command("ollama", "launch", "opencode", "--model", "glm-5.2:cloud", "-y", "--", "run", fullPrompt) } case "hexai": fmt.Printf("Running hexai command (stdin payload)\n") -- cgit v1.2.3