Production ready Agentic AI ChatBot using Llamaindex and Groq-Llama 3.3
This repository demonstrates how to build a production-ready Agentic AI chatbot using LlamaIndex and Groq-Llama 3.3. It covers the essential steps to structure, implement, and deploy an AI chatbot capable of using tools and making function calls.
For clear explanation you can refer my article: https://sachinkhandewal.medium.com/a-simple-step-by-step-guide-to-build-production-ready-agentic-ai-chatbot-using-llamaindex-and-6f08e8006114
- Demystifying Agentic AI and Agents: Breaking down the hype and understanding the fundamentals of Agentic AI.
- ReActAgent & FunctionCallingAgent in LlamaIndex: Learn how to use these agents and integrate tools/functions into them.
- Simple Agentic Function Calls: Implementing and testing a basic agentic function call.
- Building a Production-Ready Agentic Chatbot: Project structuring and deploying your chatbot with Docker.
- Clear explanations of Agentic AI concepts.
- Practical use of LlamaIndex's ReActAgent and FunctionCallingAgent.
- Dockerized deployment for a scalable, production-ready solution.
- Perfect for developers exploring the intersection of AI agents and practical applications.
pip install -r requirements.txt
python ./simple_ui.py
python ./app.py
docker build -t agentic_app .
docker run -p 5000:5000 agentic_app
⭐ Star this repo for more updates.