import React, { useState } from 'react'; import FileUpload from './components/FileUpload'; import ChatBox from './components/ChatBox'; export default function App() { const [step, setStep] = useState('upload'); // 'upload' or 'chat' return (

Chat with any PDF Document

Upload any report, research paper, or manual. Our AI will analyze the content and answer your questions with pinpoint accuracy.

{step === 'upload' ? ( setStep('chat')} /> ) : ( )}
); }