A Job assistant built with CopilotKit (Next.js) on the frontend and DeepAgents (by LangChain) on the backend. Users upload their resume (PDF), the system extracts skills and context, and DeepAgents orchestrate sub-agents & tools to search the web (via Tavily) for relevant job postings. Results stream back to the UI in real time and are rendered alongside the chat.
DeepAgents provides clean orchestration with sub-agents and tools, while CopilotKit (AG-UI) handles real-time streaming and stateful UI updates.
- Resume upload + PDF parsing
- Skill extraction from real resumes
- DeepAgents orchestration with sub-agents and tools
- Internet search via Tavily
- Tool calls streamed to the UI using AG-UI
[User uploads resume & submits job query]
↓
Next.js UI (ResumeUpload + CopilotChat)
↓
useCopilotReadable syncs resume + preferences
↓
POST /api/copilotkit (AG-UI protocol)
↓
FastAPI + DeepAgents (/copilotkit endpoint)
↓
Resume context + skills injected into agent
↓
DeepAgents orchestration
├─ internet_search (Tavily)
├─ job filtering & normalization
└─ update_jobs_list (tool call)
↓
AG-UI streaming (SSE)
↓
CopilotKit runtime receives tool result
↓
Frontend captures tool output
↓
Jobs rendered in table + chat stays clean
.
├── src/ ← Next.js frontend
│ ├── app/
│ │ ├── page.tsx
│ │ ├── layout.tsx ← CopilotKit provider
│ │ └── api/
│ │ ├── upload-resume/route.ts ← upload endpoint
│ │ └── copilotkit/route.ts ← CopilotKit AG-UI runtime
│ ├── components/
│ │ ├── ChatPanel.tsx ← Chat + tool capture
│ │ ├── ResumeUpload.tsx ← PDF upload UI
│ │ ├── JobsResults.tsx ← Jobs table renderer
│ │ └── LivePreviewPanel.tsx
│ └── lib/
│ └── types.ts ← Shared frontend types
│
├── agent/ ← DeepAgents backend
│ ├── main.py ← FastAPI + AG-UI endpoint
│ ├── agent.py ← DeepAgents graph & tools
│ ├── pyproject.toml ← Python deps (uv)
│ └── .env.example
│
├── package.json
├── next.config.ts
└── README.md
You will need a Google API Key and Tavily API Key.
Create agent/.env and set your keys:
GOOGLE_API_KEY=your-google-api-key
TAVILY_API_KEY=tvly-dev-...
GEMINI_MODEL=gemini-2.0-flashFrontend (Next.js):
npm install
# or
yarn installBackend (Python, uv):
cd agent
uv syncThe backend uses uv for dependency management. Install it if needed:
pip install uvStart the backend:
cd agent
uv run python main.pyBackend runs on http://localhost:8123.
Start the frontend (in a new terminal):
npm run dev
# or
yarn devNavigate to http://localhost:3000 in your browser.
- Open the app at http://localhost:3000
- Fill in your target job title and location preferences
- Upload your resume (PDF or TXT)
- Chat with the assistant: e.g., "Find frontend engineer jobs in Remote or Bangalore with React/Next.js"
- Watch as the agent searches the web and displays matching jobs in real-time
Frontend:
- Next.js 16 (App Router)
- React 19
- CopilotKit
- Tailwind CSS 4
- TypeScript
Backend:
- Python 3.12+
- FastAPI
- LangChain DeepAgents
- Google Gemini
- Tavily Search API
This project is licensed under the MIT License.