WarriorsSami's picture
feat: scaffold model, training, inference and api
2d4eafe
raw
history blame
207 Bytes
use serde::{Deserialize, Serialize};
#[derive(Deserialize)]
pub struct SentimentRequest {
pub(crate) text: String,
}
#[derive(Serialize)]
pub struct SentimentResponse {
pub(crate) label: String,
}