Files
myAi/rag-api-models/Settings/OllamaProviderSettings.cs
T
claude 64b0219038
Build and Push Docker Images / build (push) Failing after 27s
Move models in separate projects
2026-05-06 17:11:44 +03:00

10 lines
326 B
C#

namespace Rag.Models.Settings;
public sealed class OllamaProviderSettings
{
public string BaseUrl { get; set; } = "http://localhost:11434";
public string ChatModel { get; set; } = "llama3.1:8b";
public string EmbeddingModel { get; set; } = "nomic-embed-text";
public int TimeoutSeconds { get; set; } = 180;
}