|
|
@@ -105,12 +105,20 @@ export const Google = {
|
|
|
};
|
|
|
|
|
|
export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
|
|
|
+// export const DEFAULT_SYSTEM_TEMPLATE = `
|
|
|
+// You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
|
|
+// Knowledge cutoff: {{cutoff}}
|
|
|
+// Current model: {{model}}
|
|
|
+// Current time: {{time}}
|
|
|
+// Latex inline: $x^2$
|
|
|
+// Latex block: $$e=mc^2$$
|
|
|
+// `;
|
|
|
export const DEFAULT_SYSTEM_TEMPLATE = `
|
|
|
You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
|
|
Knowledge cutoff: {{cutoff}}
|
|
|
Current model: {{model}}
|
|
|
Current time: {{time}}
|
|
|
-Latex inline: $x^2$
|
|
|
+Latex inline: \(x^2\)
|
|
|
Latex block: $$e=mc^2$$
|
|
|
`;
|
|
|
|