File size: 419 Bytes
6e06893 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { ChatWindow } from "./components/ChatWindow";
import { UploadDocumentsForm } from "./components/UploadDocumentsForm";
export default function App() {
return (
<div className="flex min-h-screen bg-[#131318] text-white">
<UploadDocumentsForm></UploadDocumentsForm>
<ChatWindow
endpoint={import.meta.env.VITE_PUBLIC_API_URL + "/retriveal/stream"}
></ChatWindow>
</div>
);
}
|