cleanup, remove thinking checkbox, add pulldown-cmark and config
This commit is contained in:
jrosh 2025-09-14 21:03:49 +02:00
commit 65e5364320
Signed by: jrosh
GPG key ID: CC50156D9BDF5EFB
15 changed files with 1476 additions and 968 deletions

View file

@ -11,8 +11,6 @@ pub struct ChatRequest {
pub model: String,
pub messages: Vec<ChatMessage>,
pub stream: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub think: Option<bool>,
}
#[derive(Debug, Serialize, Deserialize)]