惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
罗磊的独立博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园 - 司徒正美
博客园 - 叶小钗
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
有赞技术团队
有赞技术团队
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
Jina AI
Jina AI
D
DataBreaches.Net
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introducing CareerGPT – A Multi-Agent AI Career Assistant
Mohid · 2026-04-27 · via DEV Community

Mohid

Today, I’m sharing my recent project: CareerGPT.

CareerGPT is built using LangGraph and LangChain. The core idea behind this project is to design a multi-agent system where different specialized agents handle different career-related tasks—coordinated by a central supervisor agent.

How It Works

The system consists of 5 specialized agents, all controlled by a supervisor agent.

The supervisor agent:

  • Receives the user query
  • Analyzes the intent
  • Routes the query to the most relevant agent

Each agent is designed with its own prompts, tools, and responsibilities.

The 5 Specialized Agents

  1. Career Advisor

Provides structured career guidance and suggests clear career paths.

  1. Resume Analyzer

Users upload their resumes, and the agent analyzes them to provide detailed feedback and improvements.

  1. Resume Q&A

Allows users to ask questions directly about their resume (e.g., strengths, gaps, improvements).

  1. Learning Path Agent

Generates custom learning roadmaps based on the user’s target domain (e.g., Web Development, AI, etc.).

  1. Job Search Agent

Helps users find job opportunities based on specific roles, domains, or companies.
How Agents Differ Internally

Each agent is not just a prompt—it has its own logic and tools.

Job Search Agent
Connected to a web search tool. When a query is received, it searches online (e.g., job listings) and returns relevant results such as available roles in a specific region or domain.
Learning Path Agent
Uses RAG (Retrieval-Augmented Generation) to generate personalized learning roadmaps based on stored domain-specific knowledge.

This separation ensures that each agent is optimized for its specific task instead of trying to do everything in one place.

Tech Stack

  • Language: Python
  • AI Frameworks: LangGraph, LangChain, RAG
  • LLM: Groq (fast and free for experimentation)
  • Backend: FastAPI, PostgreSQL, Async Programming, Authentication
  • Deployment: Render, Vercel, CI/CD

Feedback

I’d genuinely appreciate your feedback.
If you see gaps, design flaws, or areas for improvement, feel free to point them out—I’m actively looking to refine and improve this system.