mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
16 lines
391 B
C#
16 lines
391 B
C#
namespace RomajiConverter.Core.Options
|
|
{
|
|
public class ToRomajiAIOptions : ToRomajiOptions
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
|
|
public string Model { get; set; }
|
|
|
|
public string ApiKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提示词,可以不传,使用默认提示词
|
|
/// </summary>
|
|
public string Prompt { get; set; }
|
|
}
|
|
} |