AICore abkapseln
This commit is contained in:
18
Shared/Interface/Feature/AICore/IAiConversationMessage.cs
Normal file
18
Shared/Interface/Feature/AICore/IAiConversationMessage.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user