langchain
Version:
Typescript bindings for langchain
14 lines (9 loc) • 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"],
});