12 lines
380 B
C#
12 lines
380 B
C#
namespace GymLogAI.AI;
|
|
|
|
public sealed class OpenRouterOptions
|
|
{
|
|
public const string SectionName = "OpenRouter";
|
|
|
|
public string BaseUrl { get; init; } = "https://openrouter.ai/api/v1/";
|
|
public string? ApiKey { get; init; }
|
|
public string ChatModel { get; init; } = "openai/gpt-4.1-mini";
|
|
public string EmbeddingModel { get; init; } = "text-embedding-3-small";
|
|
}
|