matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame contribute delete
No virus
189 Bytes
export interface ProcessEnv {
OPENAI_API_KEY: string;
OPENAI_API_HOST?: string;
OPENAI_API_TYPE?: 'openai' | 'azure';
OPENAI_API_VERSION?: string;
OPENAI_ORGANIZATION?: string;
}