add model to MistralConfig

This commit is contained in:
2026-07-30 21:15:55 +02:00
parent a6bd1a8d5f
commit 236ef036ec
4 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "own_assist_common"
version = "0.4.3"
version = "0.4.4"
edition = "2024"
license = "GPL-3.0"
+1
View File
@@ -87,6 +87,7 @@ pub struct OllamaModelConfig {
pub struct MistralConfig {
#[serde(rename = "api-key")]
pub api_key: String,
pub model: String,
#[serde(rename = "system-prompt")]
pub system_prompt: Option<String>,
}