mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-22 05:40:43 +08:00
13 lines
348 B
C#
13 lines
348 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class AIProvider
|
|
{
|
|
public string Name { get; set; }
|
|
public string Server { get; set; }
|
|
public string Model { get; set; }
|
|
public string ApiKey { get; set; }
|
|
public bool ReadApiKeyFromEnv { get; set; }
|
|
public string AdditionalPrompt { get; set; }
|
|
}
|
|
}
|