XS-AI_UI / types /env.ts
MattGPT's picture
Duplicate from matthoffner/starchat-ui
f491937
raw
history blame contribute delete
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;
}