(agent database.WorkspaceAgent)
| 202 | } |
| 203 | |
| 204 | func newChatExternalAgentUnavailableError(agent database.WorkspaceAgent) error { |
| 205 | return chatExternalAgentUnavailableError{ |
| 206 | message: chattool.ExternalAgentUnavailableMessage(agent), |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | // Server handles background processing of pending chats. |
| 211 | type Server struct { |
no test coverage detected