Interface IChatConversation<TMessage>
Namespace: Glitch9.AIDevKit
Assembly: .dll
Syntax
public interface IChatConversation<TMessage> where TMessage : ChatMessage
Type Parameters
Name | Description |
---|---|
TMessage |
Properties
Id
The unique identifier for the conversation.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Messages
The list of messages in the conversation.
Declaration
List<TMessage> Messages { get; }
Property Value
Type | Description |
---|---|
List<TMessage> |