llama-gpt/types/env.d.ts

7 lines
108 B
TypeScript

namespace NodeJS {
interface ProcessEnv {
OPENAI_API_KEY: string;
OPENAI_API_HOST?: string;
}
}