import Head from "next/head"; import { useState } from "react"; import FileQandAArea from "../components/FileQandAArea"; import { FileLite } from "../types/file"; import FileUploadArea from "../components/FileUploadArea"; export default function FileQandA() { const [files, setFiles] = useState([]); return (
File Q&A

File Q&A

To search for answers from the content in your files, upload them here and we will use OpenAI embeddings and GPT to find answers from the relevant documents.
); }