We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd7462 commit b975ae7Copy full SHA for b975ae7
src/interfaces/utils/env.utils.ts
@@ -1,11 +1,15 @@
1
+import type { ChatModel } from 'openai/resources';
2
+
3
import type { SetupContextEnum } from '../commands/setup';
4
import type { ProviderEnum } from '../provider';
5
6
export type Env = {
7
PROVIDER?: ProviderEnum;
8
+ SETUP_CONTEXT: SetupContextEnum;
9
10
OPENAI_API_KEY?: string;
11
OPENAI_N_COMMITS?: number | string;
- SETUP_CONTEXT: SetupContextEnum;
12
+ OPENAI_CHAT_MODEL?: ChatModel;
13
14
CONFIG_COMMIT_LANGUAGE: string;
15
CONFIG_MAX_COMMIT_CHARACTERS: string | number;
0 commit comments