namespace LLM.Editor.Data { [System.Serializable] public class ChatEntry { public string role; // "user" or "assistant" public string content; } }