use serde::{Deserialize, Serialize}; | |
pub struct SentimentRequest { | |
pub(crate) text: String, | |
} | |
pub struct SentimentResponse { | |
pub(crate) label: String, | |
} | |
use serde::{Deserialize, Serialize}; | |
pub struct SentimentRequest { | |
pub(crate) text: String, | |
} | |
pub struct SentimentResponse { | |
pub(crate) label: String, | |
} | |