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;
|
|
|
|
|
|
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; }
|
2024-01-01 04:56:10 +00:00
|
|
|
public List<PromptLogMongoElement> Logs { get; set; }
|
2023-11-27 23:49:24 +00:00
|
|
|
}
|