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

17 lines
396 B
JavaScript
Raw Normal View History

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