You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
438 B
C#
20 lines
438 B
C#
namespace OllamaStudy.Core
|
|
{
|
|
/// <summary>
|
|
/// Ollama服务器信息
|
|
/// </summary>
|
|
public class OllamaServerOption
|
|
{
|
|
/// <summary>
|
|
/// Ollama服务器网址
|
|
/// </summary>
|
|
public string OllamaServerUrl { get; set; } = "http://localhost:11434";
|
|
|
|
/// <summary>
|
|
/// 模型标识
|
|
/// </summary>
|
|
public string Model { get; set; } = "qwen3:0.6b";
|
|
|
|
}
|
|
}
|