BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/LlmCompletionLogDocument.cs
2024-07-09 02:34:49 -05:00

8 lines
212 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class LlmCompletionLogDocument : MongoBase
{
public string ConversationId { get; set; }
public List<PromptLogMongoElement> Logs { get; set; }
}