AICore abkapseln

This commit is contained in:
2025-09-08 15:17:51 +02:00
parent 3c7d953d67
commit 4acad3adaf
62 changed files with 202 additions and 130 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Interface.Feature.AICore
{
public interface IAiConversationMessage
{
string Message { get; }
AiConversationMessageRole Role { get; }
DateTime Created { get; }
string ModelName { get; }
int? Duration { get; }
}
}