Reduced intro text
This commit is contained in:
parent
8209f4f0f9
commit
a6b38bfbbe
@ -52,7 +52,7 @@ import { MessageMetadata } from './MessageMeta';
|
|||||||
const welcomeMarkdown = `
|
const welcomeMarkdown = `
|
||||||
# Welcome to Backstory
|
# 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 is James Ketrenos' work history?"/>
|
||||||
<ChatQuery text="What programming languages has James used?"/>
|
<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.)
|
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 = {
|
const welcomeMessage: MessageData = {
|
||||||
"role": "assistant", "content": welcomeMarkdown
|
"role": "assistant", "content": welcomeMarkdown
|
||||||
|
@ -24,14 +24,6 @@ const ResumeBuilder = ({ jobDescription, facts, setFacts, resume, setResume, set
|
|||||||
const [lastEvalTPS, setLastEvalTPS] = useState<number>(35);
|
const [lastEvalTPS, setLastEvalTPS] = useState<number>(35);
|
||||||
const [lastPromptTPS, setLastPromptTPS] = useState<number>(430);
|
const [lastPromptTPS, setLastPromptTPS] = useState<number>(430);
|
||||||
const [contextStatus, setContextStatus] = useState<ContextStatus>({ context_used: 0, max_context: 0 });
|
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(() => {
|
const updateContextStatus = useCallback(() => {
|
||||||
fetch(connectionBase + `/api/context-status/${sessionId}`, {
|
fetch(connectionBase + `/api/context-status/${sessionId}`, {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user