paddler_types 2.2.0

Open-source LLMOps platform for hosting and scaling AI in your own infrastructure
Documentation
1
2
3
4
5
6
7
8
9
use serde::Deserialize;
use serde::Serialize;

#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ConversationMessage {
    pub content: String,
    pub role: String,
}