Reduced intro text

This commit is contained in:
James Ketr 2025-04-17 21:58:58 -07:00
parent 8209f4f0f9
commit a6b38bfbbe
2 changed files with 2 additions and 11 deletions

View File

@ -52,7 +52,7 @@ import { MessageMetadata } from './MessageMeta';
const welcomeMarkdown = `
# Welcome to Backstory
Backstory was originally written by James Ketrenos in order to provide answers to questions potential employers may have about his work history. Now, you can deploy your own instance, host, and share your own Backstory. 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). You can ask things like:
Backstory was written by James Ketrenos in order to provide answers to questions potential employers may have about his work history. 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). You can ask things like:
<ChatQuery text="What is James Ketrenos' work history?"/>
<ChatQuery text="What programming languages has James used?"/>
@ -61,8 +61,7 @@ Backstory was originally written by James Ketrenos in order to provide answers t
You can click the text above to submit that query, or type it in yourself (or whatever questions you may have.)
As with all LLM interactions, the results may not be 100% accurate. If you have questions about my career, I'd love to hear from you. You can send me an email at **james_backstory@ketrenos.com**.
`;
As with all LLM interactions, the results may not be 100% accurate. If you have questions about my career, I'd love to hear from you. You can send me an email at **james_backstory@ketrenos.com**.`;
const welcomeMessage: MessageData = {
"role": "assistant", "content": welcomeMarkdown

View File

@ -24,14 +24,6 @@ const ResumeBuilder = ({ jobDescription, facts, setFacts, resume, setResume, set
const [lastEvalTPS, setLastEvalTPS] = useState<number>(35);
const [lastPromptTPS, setLastPromptTPS] = useState<number>(430);
const [contextStatus, setContextStatus] = useState<ContextStatus>({ context_used: 0, max_context: 0 });
// const [countdown, setCountdown] = useState<number>(0);
// const timerRef = useRef<any>(null);
useEffect(() => {
if (facts) {
console.log(facts);
}
}, [facts]);
const updateContextStatus = useCallback(() => {
fetch(connectionBase + `/api/context-status/${sessionId}`, {