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

10 lines
256 B
C#
Raw Normal View History

2023-12-20 20:12:40 +00:00
using BotSharp.Plugin.MongoStorage.Models;
2023-11-27 23:49:24 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class LlmCompletionLogDocument : MongoBase
2023-11-27 23:49:24 +00:00
{
public string ConversationId { get; set; }
2024-01-01 04:56:10 +00:00
public List<PromptLogMongoElement> Logs { get; set; }
2023-11-27 23:49:24 +00:00
}