(ctx context.Context, db database.Store, req codersdk.CreateChatRequest)
| 6203 | } |
| 6204 | |
| 6205 | func createChatInputFromRequest(ctx context.Context, db database.Store, req codersdk.CreateChatRequest) ( |
| 6206 | []codersdk.ChatMessagePart, |
| 6207 | string, |
| 6208 | []uuid.UUID, |
| 6209 | *codersdk.Response, |
| 6210 | ) { |
| 6211 | return createChatInputFromParts(ctx, db, req.Content, "content") |
| 6212 | } |
| 6213 | |
| 6214 | func createChatInputFromParts( |
| 6215 | ctx context.Context, |
no test coverage detected