MCPcopy Create free account
hub / github.com/bitswired/rustgpt / ChatMessagePair

Class ChatMessagePair

src/data/model.rs:21–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20#[derive(Debug, Serialize, Deserialize, FromRow, Clone)]
21pub 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected