{"id":27634715,"url":"https://github.com/jain40470/agentverse","last_synced_at":"2026-04-12T00:39:37.160Z","repository":{"id":288725319,"uuid":"969006133","full_name":"jain40470/AgentVerse","owner":"jain40470","description":"LG_AgentVerse is a web application that leverages LangGraph agents to create a variety of interactive use cases. Built with a FastAPI backend and a React frontend, it demonstrates different agent functionalities such as a basic chatbot and many more.","archived":false,"fork":false,"pushed_at":"2025-04-21T11:09:49.000Z","size":13145,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-21T12:25:16.240Z","etag":null,"topics":["agents","fastapi","generative-ai","langchain","langgraph","llm","python","reactjs"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jain40470.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-19T07:02:01.000Z","updated_at":"2025-04-21T11:09:53.000Z","dependencies_parsed_at":"2025-04-21T12:37:14.095Z","dependency_job_id":null,"html_url":"https://github.com/jain40470/AgentVerse","commit_stats":null,"previous_names":["jain40470/agenticai_project","jain40470/lg_agentverse","jain40470/agentverse"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jain40470%2FAgentVerse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jain40470%2FAgentVerse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jain40470%2FAgentVerse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jain40470%2FAgentVerse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jain40470","download_url":"https://codeload.github.com/jain40470/AgentVerse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250497092,"owners_count":21440255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agents","fastapi","generative-ai","langchain","langgraph","llm","python","reactjs"],"created_at":"2025-04-23T19:20:31.755Z","updated_at":"2026-04-12T00:39:37.148Z","avatar_url":"https://github.com/jain40470.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# AgentVerse\n\n**AgentVerse** is a web application that leverages LangGraph agents to create a variety of interactive use cases. Built with a FastAPI backend and a React frontend, it demonstrates different agent functionalities such as a basic chatbot and many more.\n\n## 🚀 Features\n\n- **FastAPI Backend**: The backend is built using FastAPI and exposes multiple endpoints for LangGraph agents to handle different tasks.\n- **LangGraph Agents**: Implementations include a basic chatbot, code reviewer, and other customizable agents.\n- **React Frontend**: The frontend is built with React, providing a user-friendly interface to interact with the agents.\n\n## 📁 Project Structure\n\n```\nAgentVerse/\n├── Backend/src/backend/                  # Backend (FastAPI) source code\n│                  └── src/               # Backend source code, API routes\n│                  └── main.py\n├── verse_frontend/                 # Frontend (React) code\n│   └── public/               # Public assets (HTML, images)\n│   └── src/                  # React components, state management\n├── .gitignore                # Git ignore file\n├── requirement.txt           # Backend dependencies\n└── package.json              # Frontend dependencies and scripts\n```\n\n## 🛠 Installation\n\n### Prerequisites\n\n- Python 3.7+\n- Node.js (for React frontend)\n\n### Step 1: Clone the repository\n\n```bash\ngit clone https://github.com/jain40470/AgentVerse.git\ncd AgentVerse\n```\n\n### Step 2: Install Backend Dependencies\n\n1. Navigate to the `backend/` directory:\n   \n   ```bash\n   cd backend\n   ```\n\n2. Install Python dependencies:\n\n   ```bash\n   pip install -r requirement.txt\n   ```\n\n### Step 3: Install Frontend Dependencies\n\n1. Navigate to the `verse_frontend/` directory:\n\n   ```bash\n   cd verse_frontend\n   ```\n\n2. Install Node.js dependencies:\n\n   ```bash\n   npm install\n   ```\n\n### Step 4: Run the Application\n\n1. Start the FastAPI backend:\n\n   ```bash\n   cd backend\n   uvicorn src.main:app --reload\n   ```\n\n2. Start the React frontend:\n\n   ```bash\n   cd verse_frontend\n   npm start\n   ```\n\n   Visit `http://localhost:3000` to interact with the agents.\n\n\u003c!--  --\u003e\n## 🧑‍💻 Usage\n\n- **Basic Chatbot**: Interact with a LangGraph-powered chatbot through the frontend.\n  - **Endpoint:** `POST /chatbot`\n  ![Chatbot LangGraph](assets/chatbot.png)\n\n- **Code Reviewer**: Submit code snippets to get feedback and suggestions from the LangGraph agent.\n  - **Endpoint:** `POST /review_code`\n  ![CodeReviewer LangGraph](assets/CodeReviewer.png)\n\n- **Stock Intelligence Agent**: A multi-tool LangGraph agent that performs stock summary,news summarization etc.\n  - **Endpoint:** `POST /chatbot`\n  ![Stock Intelligence Agent LangGraph](assets/StockIntelligence.png)\n\n- **YTVideoSummary**: Input a YouTube video URL and get summarized insights including topic, author, and content summary.\n  - **Endpoint:** `POST /yt_transcript_analysis`\n  ![YTVideoSummary](assets/YT_transcript.png)\n\n- **Many more to add**\n\n\n## 📄 License\n\nThis project is licensed under the MIT License.\n\n## 📬 Contact\n\nFor inquiries or contributions, feel free to open an issue or contact (mail To :jain40470@gmail.com).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjain40470%2Fagentverse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjain40470%2Fagentverse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjain40470%2Fagentverse/lists"}