agsamantha/node_modules/langchain/dist/chains/summarization/stuff_prompts.js
2024-10-02 15:15:21 -05:00

13 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"],
});