[PR #27] [CLOSED] Added new Agent AI-Business-Insider in ai_agent_tutorials #472

Closed
opened 2026-04-15 06:54:22 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/27
Author: @Madhuvod
Created: 11/5/2024
Status: Closed

Base: mainHead: ai-business-insider


📝 Commits (8)

  • e9a37a5 Added new Agent project in ai_agent_tutorials
  • c8d1cd5 Fix: Added ai_business_insider as a regular folder with code files
  • 22b8b38 Merge branch 'Shubhamsaboo:main' into ai-business-insider
  • 6c38b45 Readme fix of multimodal gemini
  • d9881f2 Readme fix of multimodal gemini
  • 0e9b896 Added new Diet-Fitness Agent
  • 03f8e57 Diet-Fitness Agent - Readme update
  • f74b912 venv to gitignore

📊 Changes

88 files changed (+7858 additions, -1 deletions)

View changed files

📝 advanced_tools_frameworks/gemini_multimodal_chatbot/README.md (+2 -1)
ai_agent_tutorials/ai_business_insider/.gitignore (+2 -0)
ai_agent_tutorials/ai_business_insider/IMG_3530.heic (+0 -0)
ai_agent_tutorials/ai_business_insider/README.md (+117 -0)
ai_agent_tutorials/ai_business_insider/app.py (+0 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/.gitignore (+3 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/README.md (+54 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/__init__.py (+0 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/poetry.lock (+6055 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/pyproject.toml (+22 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/__init__.py (+0 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/__init__.py (+0 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/__init__.py (+0 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/fact_checker.py (+87 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/news_collector.py (+50 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/summary_writer.py (+54 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/trend_analyzer.py (+163 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/config/agents.yaml (+31 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/config/tasks.yaml (+57 -0)
ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/crew.py (+116 -0)

...and 68 more files

📄 Description

Description: This project is a News Engine that helps users research a news topic, fact-check information, summarise key findings, and analyze trends to help find their Potential Business Ideas for their own Company! It leverages multiple AI agents to collect, verify, and analyze news, enabling users to extract insights and identify key opportunities across various news articles. The application uses CrewAI to orchestrate these tasks and provide an interactive experience.

Problem Statement: This is quite Personal to me, since my 1st year of Uni, I always wanted to be an Entreprenuer. Back then, I was constantly looking for a gap in the market, a problem that I can solve by constantly by reading news articles extensively, which was a very hard task. So now, we build this :)

Frontend: Streamlit
Backend:
Python (with FastAPI for the API backend)
AI/ML Tools:
CrewAI for orchestrating AI agents
Google Fact-Check Tools API
OpenAI for trend analysis
Web Scraping: Custom web scrapers and external APIs (News API)

Screenshot 2024-11-06 at 4 03 04 AM Screenshot 2024-11-06 at 4 02 46 AM

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/27 **Author:** [@Madhuvod](https://github.com/Madhuvod) **Created:** 11/5/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `ai-business-insider` --- ### 📝 Commits (8) - [`e9a37a5`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/e9a37a55c265819820be8a47dd1f70dd7f7c96b8) Added new Agent project in ai_agent_tutorials - [`c8d1cd5`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/c8d1cd5de8195ecf01b22d84b67d9272d2805606) Fix: Added ai_business_insider as a regular folder with code files - [`22b8b38`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/22b8b383ee77efca9a3f5bc37a6ab038e3985872) Merge branch 'Shubhamsaboo:main' into ai-business-insider - [`6c38b45`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/6c38b45f5b2494319fefb7821d7bc9c8a321ae41) Readme fix of multimodal gemini - [`d9881f2`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/d9881f28675444d9d67f55a3bf0fe5763aa55bc9) Readme fix of multimodal gemini - [`0e9b896`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/0e9b8960f7228223d6e388610ef63d9951a114e4) Added new Diet-Fitness Agent - [`03f8e57`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/03f8e57b8939f89c7dd3f150d42d443e418612a3) Diet-Fitness Agent - Readme update - [`f74b912`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/f74b912bbf3269a5c3a52b830cb5785ca43f50b9) venv to gitignore ### 📊 Changes **88 files changed** (+7858 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `advanced_tools_frameworks/gemini_multimodal_chatbot/README.md` (+2 -1) ➕ `ai_agent_tutorials/ai_business_insider/.gitignore` (+2 -0) ➕ `ai_agent_tutorials/ai_business_insider/IMG_3530.heic` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/README.md` (+117 -0) ➕ `ai_agent_tutorials/ai_business_insider/app.py` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/.gitignore` (+3 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/README.md` (+54 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/__init__.py` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/poetry.lock` (+6055 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/pyproject.toml` (+22 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/__init__.py` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/__init__.py` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/__init__.py` (+0 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/fact_checker.py` (+87 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/news_collector.py` (+50 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/summary_writer.py` (+54 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/agents/trend_analyzer.py` (+163 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/config/agents.yaml` (+31 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/config/tasks.yaml` (+57 -0) ➕ `ai_agent_tutorials/ai_business_insider/news_summarizer_analyzer/src/news_summarizer_analyzer/crew.py` (+116 -0) _...and 68 more files_ </details> ### 📄 Description **Description**: This project is a News Engine that helps users research a news topic, fact-check information, summarise key findings, and analyze trends to help find their Potential Business Ideas for their own Company! It leverages multiple AI agents to collect, verify, and analyze news, enabling users to extract insights and identify key opportunities across various news articles. The application uses CrewAI to orchestrate these tasks and provide an interactive experience. **Problem Statement**: This is quite Personal to me, since my 1st year of Uni, I always wanted to be an Entreprenuer. Back then, I was constantly looking for a gap in the market, a problem that I can solve by constantly by reading news articles extensively, which was a very hard task. So now, we build this :) Frontend: Streamlit Backend: Python (with FastAPI for the API backend) AI/ML Tools: CrewAI for orchestrating AI agents Google Fact-Check Tools API OpenAI for trend analysis Web Scraping: Custom web scrapers and external APIs (News API) <img width="1452" alt="Screenshot 2024-11-06 at 4 03 04 AM" src="https://github.com/user-attachments/assets/a0f306bf-a427-45f8-80c3-e1ad4f40bacc"> <img width="1095" alt="Screenshot 2024-11-06 at 4 02 46 AM" src="https://github.com/user-attachments/assets/6a4d88af-0fc2-4828-87bf-59f43a19b7a3"> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-15 06:54:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#472