(ctx context.Context)
| 80 | } |
| 81 | |
| 82 | func (p *Server) isDesktopEnabled(ctx context.Context) bool { |
| 83 | enabled, err := p.db.GetChatDesktopEnabled(ctx) |
| 84 | if err != nil { |
| 85 | return false |
| 86 | } |
| 87 | return enabled |
| 88 | } |
| 89 | |
| 90 | func subagentModelOverrideLogLabel( |
| 91 | overrideContext codersdk.ChatModelOverrideContext, |
no test coverage detected