├── Building End to End LLM and Large image model application using Gemini pro ├── LICENSE ├── README.md ├── app.py ├── chat.py ├── qachat.py ├── requirements.txt └── vision.py ├── Chat With multiple Pdf Documents with Langchain and Google Gemini Pro ├── app.py └── requirements.txt ├── End To End Document Q&A With Google Gemma ├── app.py ├── requirements.txt └── us_census │ ├── acsbr-015.pdf │ ├── acsbr-016.pdf │ ├── acsbr-017.pdf │ └── p70-178.pdf ├── End To End Resume Application Tracking System(ATS) Using Google Gemini Pro Visio ├── app.py └── requirements.txt ├── End To End Youtube Video Transcribe Summarizer LLM App With Google Gemini Pro ├── app.py └── requirements.txt ├── End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model ├── LICENSE ├── requirements.txt └── vision.py ├── End to End Nutritionist Generative AI Doctor Using Google Gemini Pro Vision ├── health.py └── requirements.txt ├── End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro ├── requirements.txt ├── sql.py ├── sqlite copy.py └── sqlite.py ├── Exploring All Google Gemini Models Variants With Practical Demo └── python.ipynb ├── Finetuning With Custom Data Using Google Gemma Models └── Gemma_Finetuning_notebook.ipynb ├── Getting Started With CrewAI ├── agents.py ├── app.py ├── crew.py ├── new-blog-post.md ├── requirements.txt ├── task.py └── tools.py ├── LICENSE ├── Modified End To End Resume ATS Tracking LLM Project With Google Gemini Pro ├── app.py └── requirements.txt ├── News Reporter AI Agent Using CrewAI ├── __pycache__ │ ├── agents.cpython-310.pyc │ ├── tasks.cpython-310.pyc │ └── tools.cpython-310.pyc ├── agents.py ├── crew.py ├── new-blog-post.md ├── requirements.txt ├── tasks.py └── tools.py ├── README.md └── Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro ├── LICENSE ├── README.md ├── qachat.py └── requirements.txt /Building End to End LLM and Large image model application using Gemini pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/LICENSE -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/README.md -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/app.py -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/chat.py -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/qachat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/qachat.py -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | google-generativeai 3 | python-dotenv -------------------------------------------------------------------------------- /Building End to End LLM and Large image model application using Gemini pro/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Building End to End LLM and Large image model application using Gemini pro/vision.py -------------------------------------------------------------------------------- /Chat With multiple Pdf Documents with Langchain and Google Gemini Pro/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Chat With multiple Pdf Documents with Langchain and Google Gemini Pro/app.py -------------------------------------------------------------------------------- /Chat With multiple Pdf Documents with Langchain and Google Gemini Pro/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Chat With multiple Pdf Documents with Langchain and Google Gemini Pro/requirements.txt -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/app.py -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/requirements.txt -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/us_census/acsbr-015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/us_census/acsbr-015.pdf -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/us_census/acsbr-016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/us_census/acsbr-016.pdf -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/us_census/acsbr-017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/us_census/acsbr-017.pdf -------------------------------------------------------------------------------- /End To End Document Q&A With Google Gemma/us_census/p70-178.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Document Q&A With Google Gemma/us_census/p70-178.pdf -------------------------------------------------------------------------------- /End To End Resume Application Tracking System(ATS) Using Google Gemini Pro Visio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Resume Application Tracking System(ATS) Using Google Gemini Pro Visio/app.py -------------------------------------------------------------------------------- /End To End Resume Application Tracking System(ATS) Using Google Gemini Pro Visio/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | google-generativeai 3 | python-dotenv 4 | pdf2image 5 | -------------------------------------------------------------------------------- /End To End Youtube Video Transcribe Summarizer LLM App With Google Gemini Pro/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Youtube Video Transcribe Summarizer LLM App With Google Gemini Pro/app.py -------------------------------------------------------------------------------- /End To End Youtube Video Transcribe Summarizer LLM App With Google Gemini Pro/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End To End Youtube Video Transcribe Summarizer LLM App With Google Gemini Pro/requirements.txt -------------------------------------------------------------------------------- /End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/LICENSE -------------------------------------------------------------------------------- /End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/requirements.txt -------------------------------------------------------------------------------- /End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Multi Language Invoice Extractor Project using Gemini Pro LLM Model/vision.py -------------------------------------------------------------------------------- /End to End Nutritionist Generative AI Doctor Using Google Gemini Pro Vision/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Nutritionist Generative AI Doctor Using Google Gemini Pro Vision/health.py -------------------------------------------------------------------------------- /End to End Nutritionist Generative AI Doctor Using Google Gemini Pro Vision/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Nutritionist Generative AI Doctor Using Google Gemini Pro Vision/requirements.txt -------------------------------------------------------------------------------- /End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/requirements.txt -------------------------------------------------------------------------------- /End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sql.py -------------------------------------------------------------------------------- /End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sqlite copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sqlite copy.py -------------------------------------------------------------------------------- /End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/End to End Text to SQL LLM App along with Quering SQL database using Gemini Pro/sqlite.py -------------------------------------------------------------------------------- /Exploring All Google Gemini Models Variants With Practical Demo/python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Exploring All Google Gemini Models Variants With Practical Demo/python.ipynb -------------------------------------------------------------------------------- /Finetuning With Custom Data Using Google Gemma Models/Gemma_Finetuning_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Finetuning With Custom Data Using Google Gemma Models/Gemma_Finetuning_notebook.ipynb -------------------------------------------------------------------------------- /Getting Started With CrewAI/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/agents.py -------------------------------------------------------------------------------- /Getting Started With CrewAI/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/app.py -------------------------------------------------------------------------------- /Getting Started With CrewAI/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/crew.py -------------------------------------------------------------------------------- /Getting Started With CrewAI/new-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/new-blog-post.md -------------------------------------------------------------------------------- /Getting Started With CrewAI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/requirements.txt -------------------------------------------------------------------------------- /Getting Started With CrewAI/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/task.py -------------------------------------------------------------------------------- /Getting Started With CrewAI/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Getting Started With CrewAI/tools.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/LICENSE -------------------------------------------------------------------------------- /Modified End To End Resume ATS Tracking LLM Project With Google Gemini Pro/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Modified End To End Resume ATS Tracking LLM Project With Google Gemini Pro/app.py -------------------------------------------------------------------------------- /Modified End To End Resume ATS Tracking LLM Project With Google Gemini Pro/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | PyPDF2 3 | google.generativeai 4 | python-dotenv -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/__pycache__/agents.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/__pycache__/agents.cpython-310.pyc -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/__pycache__/tasks.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/__pycache__/tasks.cpython-310.pyc -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/__pycache__/tools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/__pycache__/tools.cpython-310.pyc -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/agents.py -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/crew.py -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/new-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/new-blog-post.md -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/requirements.txt -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/tasks.py -------------------------------------------------------------------------------- /News Reporter AI Agent Using CrewAI/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/News Reporter AI Agent Using CrewAI/tools.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/README.md -------------------------------------------------------------------------------- /Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/LICENSE -------------------------------------------------------------------------------- /Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/README.md -------------------------------------------------------------------------------- /Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/qachat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Build-Gen-AI-With-Google-Gemini/HEAD/Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/qachat.py -------------------------------------------------------------------------------- /Step by Step Tutorial to Create Conversational Q&A Chatbot using Gemini Pro/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | google-generativeai 3 | python-dotenv --------------------------------------------------------------------------------