From 1c7362c9b054ad7128a048328348d30775e3e675 Mon Sep 17 00:00:00 2001 From: Jaakko Vanhala Date: Thu, 9 Apr 2026 20:46:48 +0300 Subject: [PATCH] Native-node oletusmalli: qwen2.5-coder:3b Co-Authored-By: Claude Opus 4.6 (1M context) --- network-poc/native-node/src/inference.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network-poc/native-node/src/inference.rs b/network-poc/native-node/src/inference.rs index 7c4c6cf..bf0abcc 100644 --- a/network-poc/native-node/src/inference.rs +++ b/network-poc/native-node/src/inference.rs @@ -9,7 +9,7 @@ pub struct LlmEngine { impl LlmEngine { pub async fn load() -> Result { - let model = std::env::var("OLLAMA_MODEL").unwrap_or_else(|_| "qwen2.5-coder:7b-instruct-q4_K_M".to_string()); + let model = std::env::var("OLLAMA_MODEL").unwrap_or_else(|_| "qwen2.5-coder:3b".to_string()); let client = reqwest::Client::builder() .timeout(std::time::Duration::from_secs(600))