6 lines
295 B
TypeScript
6 lines
295 B
TypeScript
export const DEFAULT_SYSTEM_PROMPT =
|
|
process.env.DEFAULT_SYSTEM_PROMPT || "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.";
|
|
|
|
export const OPENAI_API_HOST =
|
|
process.env.OPENAI_API_HOST || 'https://api.openai.com';
|