agsamantha/node_modules/langchain/dist/chains/summarization/stuff_prompts.js

14 lines
299 B
JavaScript
Raw Normal View History

2024-10-02 20:15:21 +00:00
/* 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"],
});