14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
|
/* eslint-disable spaced-comment */
|
||
|
import { PromptTemplate } from "@langchain/core/prompts";
|
||
|
const template = `Write a concise summary of the following:
|
||
|
|
||
|
|
||
|
"{text}"
|
||
|
|
||
|
|
||
|
CONCISE SUMMARY:`;
|
||
|
export const DEFAULT_PROMPT = /*#__PURE__*/ new PromptTemplate({
|
||
|
template,
|
||
|
inputVariables: ["text"],
|
||
|
});
|