Spaces:
Runtime error
Runtime error
File size: 301 Bytes
7d7d91d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | namespace FoodHealthChecker
{
internal class OpenAIOptions
{
public string ApiKey { get; set; }
public string ModelID { get; set; }
public bool isValid()
{
return !string.IsNullOrEmpty(ApiKey) && !string.IsNullOrEmpty(ModelID);
}
}
} |