Merge pull request #4466 from ChatGPTNextWeb/chore-fix
feat: modify some propmt in DEFAULT_INPUT_TEMPLATE about expressing l…
This commit is contained in:
commit
db533fc166
|
@ -135,10 +135,10 @@ function escapeBrackets(text: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _MarkDownContent(props: { content: string }) {
|
function _MarkDownContent(props: { content: string }) {
|
||||||
const escapedContent = useMemo(
|
const escapedContent = useMemo(() => {
|
||||||
() => escapeBrackets(escapeDollarNumber(props.content)),
|
console.log("================", props.content);
|
||||||
[props.content],
|
return escapeBrackets(escapeDollarNumber(props.content));
|
||||||
);
|
}, [props.content]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ReactMarkdown
|
<ReactMarkdown
|
||||||
|
|
|
@ -105,12 +105,20 @@ export const Google = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
|
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 = `
|
export const DEFAULT_SYSTEM_TEMPLATE = `
|
||||||
You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
||||||
Knowledge cutoff: {{cutoff}}
|
Knowledge cutoff: {{cutoff}}
|
||||||
Current model: {{model}}
|
Current model: {{model}}
|
||||||
Current time: {{time}}
|
Current time: {{time}}
|
||||||
Latex inline: $x^2$
|
Latex inline: \(x^2\)
|
||||||
Latex block: $$e=mc^2$$
|
Latex block: $$e=mc^2$$
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue