Interface Context

interface Context {
    conversationHistory: { content: string; role: "user" | "assistant" }[];
    data: Record<string, unknown>;
    metadata: Record<string, unknown>;
}

Properties

conversationHistory: { content: string; role: "user" | "assistant" }[]
data: Record<string, unknown>
metadata: Record<string, unknown>