namespace OllamaStudy.Core { /// /// Ollama服务器信息 /// public class OllamaServerOption { /// /// Ollama服务器网址 /// public string OllamaServerUrl { get; set; } = "http://localhost:11434"; /// /// 模型标识 /// public string Model { get; set; } = "qwen3:0.6b"; } }