We've built this to help folks navigate the YC interview process. Check out our blog post here to learn more.
Check out this project here.
This mostly relies on having a pinecone database with this data. Once you have that, note the index and you can run the backend with the following:
> cd app
> pip3 install fastapi python-multipart pypdf optimodel-py pinecone openai
> LX_API_KEY="123" PINECONE_API_KEY="123" OPEN_AI_KEY="123" PINECONE_PG_INDEX="index-name" fastapi dev app.py --port 8001And then you can start the frontend by
> npm install
> NEXT_PUBLIC_API_URL=http://localhost:8001 npm run start