- using LLM.Editor.Commands;
- namespace LLM.Editor.Data
- {
- public class InteractionRecord
- {
- public string UserPrompt;
- public CommandData LLMResponse;
- public CommandOutcome Outcome;
- public string Feedback;
- public float[] PromptEmbedding; // Placeholder for now
- public bool isMultiStep;
- }
- }
|