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

16 lines
396 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_PROMPT = void 0;
/* eslint-disable spaced-comment */
const prompts_1 = require("@langchain/core/prompts");
const template = `Write a concise summary of the following:
"{text}"
CONCISE SUMMARY:`;
exports.DEFAULT_PROMPT = new prompts_1.PromptTemplate({
template,
inputVariables: ["text"],
});