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,7 @@
using System.Text.Json.Serialization;
namespace KwisatzHaderach.Models;
public record PromptRequest(
[property: JsonPropertyName("question")]string Question
);