UNPKG

alpha-ai-avatar-sdk-js

Version:
15 lines (14 loc) 272 B
export type DebateOptions = { apiKey: string; baseUrl: string; openAIApiKey: string; openAIResourceName: string; }; export type DebateHistory = { speaker: string; content: string; }; export type Prompt = { role: string; content: string; };