12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import { webSearchResponsePrompt, webSearchRetrieverPrompt } from './webSearch';
|
|
import { localResearchPrompt } from './localResearch';
|
|
import { chatPrompt } from './chat';
|
|
|
|
const prompts = {
|
|
webSearchResponsePrompt,
|
|
webSearchRetrieverPrompt,
|
|
localResearchPrompt,
|
|
chatPrompt
|
|
};
|
|
|
|
export default prompts;
|