├── Agents_DesignPatterns.ipynb ├── Gemma_3_AI_Agent ├── LighRAG.pdf ├── PracticalExample_Gemma3_RAG.ipynb ├── attention_transfomer.pdf ├── gemma_3_rag_bot.py ├── pathrag.pdf └── requirements.txt ├── GenAI_AgenticRAG_PDF_WebSearch └── agentic_rag.py ├── GenAI_DeepSeek_AI_Agent ├── chroma_db │ ├── 39893732-012d-4c0d-a1fb-43f12818dcab │ │ ├── data_level0.bin │ │ ├── header.bin │ │ ├── length.bin │ │ └── link_lists.bin │ └── chroma.sqlite3 └── deepseek_reasoning_ai_agent.py ├── GenAI_Google_ADK ├── GoogleADK_App │ ├── __pycache__ │ │ └── agent.cpython-310.pyc │ ├── agent.py │ └── app.py ├── GoogleADK_Beginner │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── agent.cpython-310.pyc │ │ └── agent_two.cpython-310.pyc │ └── agent.py └── GoogleADK_Search │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ └── agent.cpython-310.pyc │ └── agent.py ├── GenAI_Health_Fitness_Planner └── fitness.py ├── GenAI_Investment_Strategist └── investment.py ├── GenAI_LegalTeam ├── legal_team.py ├── readme.md ├── requirements.txt └── sample_contract.pdf ├── GenAI_Medical_Imaging_Agent └── medical.py ├── GenAI_Memory_Agent └── memory.py ├── GenAI_Multimodal_Agent └── multimodal.py ├── GenAI_OpenAI_Research_Agent └── researchagent.py ├── GenAI_SDE_Coding_Agent └── coding_agent.py ├── GenAI_Travel_Panner_AI_Agent └── travelagent.py ├── GenAI_WebScraping_Reddit_Agent ├── image_scrape.py ├── linkeidn.py ├── pdf.py ├── scrape.py └── search_results.pdf ├── LICENSE ├── README.md └── patterns.png /Agents_DesignPatterns.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Agents_DesignPatterns.ipynb -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/LighRAG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/LighRAG.pdf -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/PracticalExample_Gemma3_RAG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/PracticalExample_Gemma3_RAG.ipynb -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/attention_transfomer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/attention_transfomer.pdf -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/gemma_3_rag_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/gemma_3_rag_bot.py -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/pathrag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/pathrag.pdf -------------------------------------------------------------------------------- /Gemma_3_AI_Agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/Gemma_3_AI_Agent/requirements.txt -------------------------------------------------------------------------------- /GenAI_AgenticRAG_PDF_WebSearch/agentic_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_AgenticRAG_PDF_WebSearch/agentic_rag.py -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/data_level0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/data_level0.bin -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/header.bin -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/length.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/length.bin -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/chroma_db/39893732-012d-4c0d-a1fb-43f12818dcab/link_lists.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/chroma_db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_DeepSeek_AI_Agent/chroma_db/chroma.sqlite3 -------------------------------------------------------------------------------- /GenAI_DeepSeek_AI_Agent/deepseek_reasoning_ai_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_DeepSeek_AI_Agent/deepseek_reasoning_ai_agent.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_App/__pycache__/agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_App/__pycache__/agent.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_App/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_App/agent.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_App/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_App/app.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Beginner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Beginner/__init__.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/agent.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/agent_two.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Beginner/__pycache__/agent_two.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Beginner/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Beginner/agent.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Search/__init__.py -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Search/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Search/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Search/__pycache__/agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Search/__pycache__/agent.cpython-310.pyc -------------------------------------------------------------------------------- /GenAI_Google_ADK/GoogleADK_Search/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Google_ADK/GoogleADK_Search/agent.py -------------------------------------------------------------------------------- /GenAI_Health_Fitness_Planner/fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Health_Fitness_Planner/fitness.py -------------------------------------------------------------------------------- /GenAI_Investment_Strategist/investment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Investment_Strategist/investment.py -------------------------------------------------------------------------------- /GenAI_LegalTeam/legal_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_LegalTeam/legal_team.py -------------------------------------------------------------------------------- /GenAI_LegalTeam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_LegalTeam/readme.md -------------------------------------------------------------------------------- /GenAI_LegalTeam/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_LegalTeam/requirements.txt -------------------------------------------------------------------------------- /GenAI_LegalTeam/sample_contract.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_LegalTeam/sample_contract.pdf -------------------------------------------------------------------------------- /GenAI_Medical_Imaging_Agent/medical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Medical_Imaging_Agent/medical.py -------------------------------------------------------------------------------- /GenAI_Memory_Agent/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Memory_Agent/memory.py -------------------------------------------------------------------------------- /GenAI_Multimodal_Agent/multimodal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Multimodal_Agent/multimodal.py -------------------------------------------------------------------------------- /GenAI_OpenAI_Research_Agent/researchagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_OpenAI_Research_Agent/researchagent.py -------------------------------------------------------------------------------- /GenAI_SDE_Coding_Agent/coding_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_SDE_Coding_Agent/coding_agent.py -------------------------------------------------------------------------------- /GenAI_Travel_Panner_AI_Agent/travelagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_Travel_Panner_AI_Agent/travelagent.py -------------------------------------------------------------------------------- /GenAI_WebScraping_Reddit_Agent/image_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_WebScraping_Reddit_Agent/image_scrape.py -------------------------------------------------------------------------------- /GenAI_WebScraping_Reddit_Agent/linkeidn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_WebScraping_Reddit_Agent/linkeidn.py -------------------------------------------------------------------------------- /GenAI_WebScraping_Reddit_Agent/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_WebScraping_Reddit_Agent/pdf.py -------------------------------------------------------------------------------- /GenAI_WebScraping_Reddit_Agent/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_WebScraping_Reddit_Agent/scrape.py -------------------------------------------------------------------------------- /GenAI_WebScraping_Reddit_Agent/search_results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/GenAI_WebScraping_Reddit_Agent/search_results.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/README.md -------------------------------------------------------------------------------- /patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simranjeet97/AgenticAI_AIAgents_Course/HEAD/patterns.png --------------------------------------------------------------------------------