UNPKG

@marrocode/ns-ai-kit

Version:
24 lines (23 loc) 467 B
export interface ChatMessage { role: 'user' | 'system' | 'assistant'; content: string; } export interface OpenAIChatResponse { id: string; object: string; created: number; choices: { message: ChatMessage; finish_reason: string; index: number; }[]; } export interface GeminiChatResponse { candidates: { content: { parts: { text: string; }[]; }; }[]; }