ChatEntry.cs 178 B

123456789
  1. namespace LLM.Editor.Data
  2. {
  3. [System.Serializable]
  4. public class ChatEntry
  5. {
  6. public string role; // "user" or "assistant"
  7. public string content;
  8. }
  9. }