Class ConversationArgs
Arguments to be used for LLM conversation.
Inherited Members
Namespace: Quantellia.WMServer.Asset.LLM
Assembly: WMServer.dll
Syntax
public class ConversationArgs
Properties
ConversationID
An ID specifying an ongoing conversation. If null or unspecified, create a new conversation.
Declaration
public string? ConversationID { get; set; }
Property Value
Type | Description |
---|---|
string |
Format
Potential strings to specify formatting.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
string |
LLM
An ID or fullPathName specifying the LLM asset to use in this conversation.
Declaration
public string LLM { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
The message provided.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |