mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-02 22:12:57 +03:00
b76262c4f0
* fix(tokens): overflow * fix(chat): fixed deletion error of the chat #441 * fix(default-brain): autoset default brain when on upload page * fix(promptengineering): changed prompt a bit * feat(growthbook): removed * docs(readme): updated
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
/* eslint-disable */
|
|
"use client";
|
|
import Link from "next/link";
|
|
import { useEffect } from "react";
|
|
|
|
import Button from "@/lib/components/ui/Button";
|
|
import { Divider } from "@/lib/components/ui/Divider";
|
|
import PageHeading from "@/lib/components/ui/PageHeading";
|
|
import { getBrainFromLocalStorage } from "@/lib/context/BrainProvider/helpers/brainLocalStorage";
|
|
import { useBrainContext } from "@/lib/context/BrainProvider/hooks/useBrainContext";
|
|
|
|
|
|
import { Crawler } from "./components/Crawler";
|
|
import { FileUploader } from "./components/FileUploader";
|
|
|
|
const UploadPage = (): JSX.Element => {
|
|
const { setActiveBrain, setDefaultBrain } = useBrainContext();
|
|
|
|
const fetchAndSetActiveBrain = async () => {
|
|
const storedBrain = getBrainFromLocalStorage();
|
|
if (storedBrain) {
|
|
setActiveBrain({ ...storedBrain });
|
|
return storedBrain;
|
|
} else {
|
|
const defaultBrain = await setDefaultBrain();
|
|
return defaultBrain;
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
const fetchBrains = async () => {
|
|
await fetchAndSetActiveBrain();
|
|
};
|
|
fetchBrains();
|
|
}, []);
|
|
|
|
return (
|
|
<main className="pt-10">
|
|
<PageHeading
|
|
title="Upload Knowledge"
|
|
subtitle="Text, document, spreadsheet, presentation, audio, video, and URLs supported"
|
|
/>
|
|
<FileUploader />
|
|
<Divider text="or" className="m-5" />
|
|
<Crawler />
|
|
<div className="flex flex-col items-center justify-center gap-5 mt-5">
|
|
<Link href={"/chat"}>
|
|
<Button variant={"secondary"} className="py-3">
|
|
Chat
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default UploadPage;
|