File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package main
33import (
44 "fmt"
55 "log"
6- "os"
76 "time"
87
98 "gptcode/internal/live"
@@ -13,11 +12,7 @@ func main() {
1312 fmt .Println ("🔗 GT Live Dashboard Test" )
1413 fmt .Println ("==========================" )
1514
16- // Get model from config
17- model := os .Getenv ("GPTCODE_MODEL" )
18- if model == "" {
19- model = "claude-3-sonnet"
20- }
15+ // Note: model configuration is handled by the Live client internally
2116
2217 // Create client
2318 url := "https://gptcode.live"
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ type TelegramMessage struct {
191191
192192func (t * TelegramClient ) Send (ctx context.Context , message string ) error {
193193 if ! t .IsConfigured () {
194- return fmt .Errorf ("Telegram not configured" )
194+ return fmt .Errorf ("telegram not configured" )
195195 }
196196
197197 url := fmt .Sprintf ("https://api.telegram.org/bot%s/sendMessage" , t .botToken )
You can’t perform that action at this time.
0 commit comments