This commit is contained in:
James Ketr 2025-05-17 17:33:29 -07:00
parent 72219100ee
commit b1faac7020
3 changed files with 7 additions and 4 deletions

View File

@ -38,8 +38,11 @@ const HomePage = forwardRef<ConversationHandle, BackstoryPageProps>((props: Back
title: 'Welcome to Backstory',
disableCopy: true,
content: `
Backstory is a RAG enabled expert system with access to real-time data running self-hosted
(no cloud) versions of industry leading Large and Small Language Models (LLM/SLMs).
Backstory is a RAG enabled expert system with access to real-time data running
self-hosted (no cloud) versions of industry leading Large and Small Language
Models (LLM/SLMs). It provides potential employees the opportunityt to ask
questions about a job candidate, as well as to allow the job candidate to
generate resumes based on their personal data.
This instances has been launched for ${user.full_name}.

View File

@ -283,7 +283,7 @@ class JobDescription(Agent):
Create a polished, concise, and ATS-friendly resume for the candidate based on the assessment data provided.
## CANDIDATE INFORMATION:
Name: {candidate_info.full_name}
Name: {candidate_info["full_name"]}
{contact_info_str}
## SKILL ASSESSMENT RESULTS:

View File

@ -190,7 +190,7 @@ class User(BaseModel):
logger.error(f"info={info}")
self.first_name = info.get("first_name", self.username)
self.last_name = info.get("first_name", "")
self.last_name = info.get("last_name", "")
self.full_name = info.get("full_name", f"{self.first_name} {self.last_name}")
self.contact_info = info.get("contact_info", {})
self.user_questions = info.get("questions", [ f"Tell me about {self.first_name}.", f"What are {self.first_name}'s professional strengths?"])