public class NpcConversation
{
///
/// The ID of the previous response from OpenAI from which
/// we continue the conversation. Null if there has been
/// no response by the model in this conversation yet.
///
public string openapiPreviousResponseId = null;
///
/// What is the latest new statement that the model returned.
/// Null if the model has not yet said anything.
///
public string lastModelResponseText = null;
}