| 19 | |
| 20 | #[derive(Debug, Serialize, Deserialize, FromRow, Clone)] |
| 21 | pub struct ChatMessagePair { |
| 22 | pub id: i64, |
| 23 | pub model: String, |
| 24 | pub message_block_id: i64, |
| 25 | pub chat_id: i64, |
| 26 | pub human_message: String, |
| 27 | pub ai_message: Option<String>, |
| 28 | pub block_rank: i64, |
| 29 | pub block_size: i64, |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected