新增托盘图标

This commit is contained in:
2026-03-01 10:42:42 +08:00
parent 0ba966cef2
commit e03e1b9766
26 changed files with 582 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
using System.Threading.Tasks;
namespace Szmedi.RvKits.LLMScript
{
internal interface ILLMProvider
{
Task GenerateStreamAsync(string systemPrompt,
string userPrompt,
Action<string> onTokenReceived);
}
}