mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
11 lines
759 B
TypeScript
11 lines
759 B
TypeScript
export const AI_SUMMARY_PROMPT =
|
|
"I am a recruiter, tell me about Oliver Bryan, a software developer. What would he bring to the table? Review his portfolio at ob248.com and summarize his key strengths, technical skills, and notable projects. What makes him stand out as a candidate?";
|
|
|
|
export function getProjectPrompt(
|
|
projectName: string,
|
|
projectDescription: string,
|
|
projectSlug: string,
|
|
): string {
|
|
return `Tell me about "${projectName}", a project by Oliver Bryan. ${projectDescription} Review the project page at ob248.com/projects/${projectSlug} and explain the technical decisions, technologies used, and what this project demonstrates about Oliver's skills as a developer. Provide any url or repository that would be helpful.`;
|
|
}
|