BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/LlmCompletionLogCollection.cs

12 lines
368 B
C#
Raw Normal View History

2023-11-27 23:49:24 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class LlmCompletionLogCollection : MongoBase
{
public string ConversationId { get; set; }
public string MessageId { get; set; }
public string AgentId { get; set; }
public string Prompt { get; set; }
public string? Response { get; set; }
public DateTime CreateDateTime { get; set; }
}