MCPcopy Index your code
hub / github.com/coder/coder / Load

Method Load

coderd/x/chatd/chatd.go:6445–6456  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6443}
6444
6445func (t *generatedChatTitle) Load() (string, bool) {
6446 if t == nil {
6447 return "", false
6448 }
6449
6450 t.mu.RLock()
6451 defer t.mu.RUnlock()
6452 if t.title == "" {
6453 return "", false
6454 }
6455 return t.title, true
6456}
6457
6458type runChatResult struct {
6459 FinalAssistantText string

Calls

no outgoing calls