InteractionRecord.cs 346 B

1234567891011121314
  1. using LLM.Editor.Commands;
  2. namespace LLM.Editor.Data
  3. {
  4. public class InteractionRecord
  5. {
  6. public string UserPrompt;
  7. public CommandData LLMResponse;
  8. public CommandOutcome Outcome;
  9. public string Feedback;
  10. public float[] PromptEmbedding; // Placeholder for now
  11. public bool isMultiStep;
  12. }
  13. }