(chatID uuid.UUID)
| 376 | } |
| 377 | |
| 378 | func messagePartEvent(chatID uuid.UUID) codersdk.ChatStreamEvent { |
| 379 | return codersdk.ChatStreamEvent{ |
| 380 | Type: codersdk.ChatStreamEventTypeMessagePart, |
| 381 | ChatID: chatID, |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | func messageEvent(chatID uuid.UUID, role codersdk.ChatMessageRole) codersdk.ChatStreamEvent { |
| 386 | return codersdk.ChatStreamEvent{ |
no outgoing calls
no test coverage detected