2023-11-27 23:49:24 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
|
2023-12-13 17:58:25 +00:00
|
|
|
public class LlmCompletionLogDocument : MongoBase
|
2023-11-27 23:49:24 +00:00
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|