absolute utter filth yet it's working

This commit is contained in:
femsci 2023-11-17 22:46:30 +01:00
parent c3f3cc6acb
commit 7b322ef7fb
Signed by: femsci
GPG key ID: 08F7911F0E650C67
11 changed files with 169 additions and 4 deletions

View file

@ -0,0 +1,7 @@
namespace Nyanlabs.Umogen.Core.Models;
public record GptMessage(string Role, string Content)
{
public string Role { get; } = Role;
public string Content { get; } = Content;
}