summaryrefslogtreecommitdiff
path: root/internal/showcase
diff options
context:
space:
mode:
Diffstat (limited to 'internal/showcase')
-rw-r--r--internal/showcase/showcase.go6
1 files changed, 3 insertions, 3 deletions
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")