feat: romaji plugin (without dict)

This commit is contained in:
Zhe Fang
2026-01-10 18:07:57 -05:00
parent fea7367671
commit d042993eb7
53 changed files with 2391 additions and 299 deletions

View File

@@ -0,0 +1,16 @@
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; }
}
}