1use serde::Deserialize; 2 3#[derive(Debug, Deserialize)] 4pub struct ChatBotResponse { 5 pub response: String, 6}