-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconst.ts
More file actions
18 lines (15 loc) · 742 Bytes
/
const.ts
File metadata and controls
18 lines (15 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const API_URL = "https://api.x.ai/v1/chat/completions";
export const CONFIG_BASE = "vscodeGrok";
export const CONFIG_API_KEY = "apiKey";
export const CONFIG_MODEL = "model";
export const CONFIG_OUTPUT_METHOD = "outputMethod";
export const CONFIG_SHOW_PREVIEW = "showPreview";
export const OUTPUT_CHANNEL_NAME = "Grok Response";
export const OUTPUT_METHOD_TAB = "tab";
export const OUTPUT_METHOD_TAB_PREVIEW = "tabPreview";
export const OUTPUT_METHOD_OUTPUT_CHANNEL = "outputChannel";
export const PREVIEW_PANEL_KEY = "grokPreview";
export const PREVIEW_PANEL_TITLE = "Grok Data Preview";
export const SHOW_PREVIEW_ALWAYS = "always";
export const SHOW_PREVIEW_WORKSPACE = "workspace-only";
export const SHOW_PREVIEW_NEVER = "never";