navos
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2024-12-29 10:26:04 +01:00
parent 94ec42ea74
commit db1acbbd3c
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 77 additions and 13 deletions

View file

@ -14,13 +14,13 @@ pub struct InstallConfig {
/// SSH Configuration
pub ssh: Option<SSHConfig>,
/// Ollama AI Config
pub ai: Option<OllamaConfig>
pub ai: Option<OllamaConfig>,
}
#[derive(Debug, Deserialize)]
pub struct OllamaConfig {
pub models: Option<Vec<String>>,
pub gpu: bool
pub gpu: bool,
}
#[derive(Debug, Deserialize)]