10 lines
251 B
C#
10 lines
251 B
C#
using BotSharp.Plugin.MongoStorage.Models;
|
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
public class LlmCompletionLogDocument : MongoBase
|
|
{
|
|
public string ConversationId { get; set; }
|
|
public List<PromptLogElement> Logs { get; set; }
|
|
}
|