feat: initialize KwisatzHaderach .NET web application

This commit is contained in:
2025-09-20 15:17:35 +02:00
parent 5f3c31ec3f
commit 6e95b59a3e
11 changed files with 707 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using KwisatzHaderach.Models;
using Refit;
namespace KwisatzHaderach.Infrastructure.Api;
public interface ILLMClient
{
[Post("/ask-stream")]
Task<HttpResponseMessage> GetPromptResponseAsync([Body]PromptRequest req, CancellationToken cancellationToken);
}