Files
Assistant/backend/Settings/SystemSettings.cs
T

12 lines
413 B
C#

namespace backend.Settings;
public class SystemSettings
{
public int Id { get; set; } = 1;
public string DefaultSystemPrompt { get; set; } =
"You are a helpful voice assistant. Keep responses concise.";
public string DefaultVoice { get; set; } = "alloy";
public string DefaultModel { get; set; } = "gpt-4o-realtime-preview";
public int DefaultIdleTimeoutSeconds { get; set; } = 30;
}