Welcome to my GenAI Hub - a living collection of powerful, reusable, and production-ready boilerplates for building Generative AI and Agentic AI applications using modern LLMs, tools, and frameworks.
This repo is designed as both a personal R&D playground and a launchpad for real-world GenAI projects. Every subfolder is either:
- A standard Python boilerplate for building Agentic AI projects(a minimal template you can clone and customize), or
- Growing collection of GenAI / Agentic AI Projects and utilities
Whether youβre prototyping an LLMβpowered assistant or spinning up a fullβstack AI webapp, this repo gets you started in minutes.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
This repoβs Boilerplate_AgenticAi/ folder defines a reusable, modular skeleton:
- β¨ LLM-Ready Boilerplates (FastAPI, LangChain, OpenAI, Gemini, Hugging Face)
- πΉοΈ Agentic Architectures using planning + tools
- π§ GenAI Patterns: tool use, RAG, embeddings, summarization, reasoning
- π§ͺ Example Projects: music, productivity, education, and more
GenAI models generate new contentβtext, images, code, audioβusing deep learning. In this repo, I mostly focus on text-based LLMs like OpenAIβs GPT, Googleβs Gemini, and open models like LLaMA/Mistral.
LLMs are pre-trained neural networks that can understand and generate human-like text. They're the engine behind everything hereβfrom answering questions to writing code or planning actions.
Agentic AI goes beyond simple prompting. It uses structured decision-making:
- Uses an LLM to plan
- Calls external tools (APIs, databases, functions)
- Loops through reasoning steps
- Returns a final answer based on tool outputs
Itβs what powers truly intelligent apps: a chatbot that browses events, books tickets, or summarizes legal documents using multiple systems in one flow.
.
βββ Boilerplate_AgenticAI/ # Core templates for new AgenticAI projects
β βββ python-agent/ # CLI + LangChain boilerplate
β βββ webapp-fastapi/ # FastAPI + frontend boilerplate
β βββ codespaces/ # GitHub Codespaces configs
β
βββ projects/ # AgenticAI showcase applications
βββ ConcTrack/ # π΅ Concert Finder API (Ticketmaster + Gemini)