mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-25 01:15:26 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
18 lines
641 B
TypeScript
18 lines
641 B
TypeScript
/// <reference path="./markdown-raw.d.ts" />
|
|
|
|
import analyzeResumeSystemPrompt from "./prompts/analyze-resume-system.md?raw";
|
|
import chatSystemPromptTemplate from "./prompts/chat-system.md?raw";
|
|
import docxParserSystemPrompt from "./prompts/docx-parser-system.md?raw";
|
|
import docxParserUserPrompt from "./prompts/docx-parser-user.md?raw";
|
|
import pdfParserSystemPrompt from "./prompts/pdf-parser-system.md?raw";
|
|
import pdfParserUserPrompt from "./prompts/pdf-parser-user.md?raw";
|
|
|
|
export {
|
|
analyzeResumeSystemPrompt,
|
|
chatSystemPromptTemplate,
|
|
docxParserSystemPrompt,
|
|
docxParserUserPrompt,
|
|
pdfParserSystemPrompt,
|
|
pdfParserUserPrompt,
|
|
};
|