You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vp:=viewport.New(0, 0) // Width and height are set dynamically
110
121
111
122
iflen(summary) ==0 {
112
-
panic("no summary")
123
+
errMsg:="No project summary available. Please provide a valid summary to start the chat."
124
+
returnmodel{
125
+
llm: llm,
126
+
textarea: ta,
127
+
viewport: vp,
128
+
summary: summary,
129
+
messages: []string{errorStyle.Render(errMsg)},
130
+
chatHistory: []string{},
131
+
isGenerating: false,
132
+
err: errors.New("empty summary"),
133
+
ctx: context.Background(),
134
+
}
113
135
}
114
136
115
137
msg:=fmt.Sprintf("%s %d bytes!", "Welcome to Summarize AI Chat! We've analyzed your project workspace and are ready to chat with you about ", len(summary))
0 commit comments