fix GPT3 messages not loading

This commit is contained in:
b1ek 2024-05-05 16:50:50 +10:00
parent c8537857e2
commit ade011120f
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 3 additions and 1 deletions

View File

@ -31,10 +31,12 @@ struct ChatPayload {
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Debug, Clone, Serialize, Deserialize)]
struct ChatChunk { struct ChatChunk {
pub role: String, pub role: Option<String>,
pub message: String, pub message: String,
pub created: u64, pub created: u64,
pub action: String, pub action: String,
pub id: Option<String>,
pub model: Option<String>
} }
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Debug, Clone, Serialize, Deserialize)]