sandbox-notebookllamalm-nextjs/frontend/README.md
DJP 12164f1dd9 WIP: Next.js migration - Core infrastructure complete (~25% feature parity)
What's Working:
-  Full authentication with protected routes
-  Create/list/view notebooks
-  Correct AI models (gpt5-exp, claude45-exp, etc.) with pricing
-  Multi-file document upload (1-20 PDFs)
-  Background task processing
-  Task status tracking with polling
-  Admin dashboard with stats
-  Navigation with user info and logout
-  All backend API routes

What's Missing (Critical):
-  Document summaries, highlights, Q&A display
-  Cross-document analysis/synthesis
-  Podcast generation (length, voices, audio player)
-  Chat sessions management (multiple chats, share, rename)
-  Notebook sharing with permissions
-  Edit notebook, remove documents
-  Pipeline readiness checks
-  Chat sources display
-  Cost estimation

Backend:
- FastAPI running on port 9000
- All routes implemented
- WebSocket chat support
- Fixed async notebook creation
- Fixed chat message storage

Frontend:
- Next.js 15 + React 19 + TypeScript
- Tailwind CSS
- React Query for data
- Zustand for auth
- 8 pages created
- Navigation component
- ProtectedRoute component

Tech Stack:
- Backend: FastAPI, SQLAlchemy, PostgreSQL, LlamaCloud
- Frontend: Next.js, React Query, Axios, Zustand
- Database: PostgreSQL (port 5433)
- Services: Redis, Jaeger, Adminer

Estimated completion: 25% of full feature parity
Remaining work: ~18-24 hours

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-02 21:16:21 -04:00

36 lines
1.4 KiB
Markdown

This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.