
LlamaParse: Simplifying File Parsing for Enhanced Efficiency
Parsers are the backbone of retrieval augmented generation (RAG) apps. Parsers extract information from user-given documents and make it available to be fed into RAG apps. A variety of parsers are available for all formats of files and many are being developed and enhanced regularly. In this article, we’ll take a closer look at an […]

Safeguarding Sensitive Data: A Guide to PII Masking with LlamaIndex in Python
Understanding PII (Personally Identifiable Information) What is PII? Personally Identifiable Information (PII) refers to any information that can be used to identify an individual. This can be anything like names, addresses, social security numbers, credit card details, and more. Protecting PII is crucial to prevent unauthorized access and maintain user privacy. Example of PII: Consider […]

How to Debug LlamaIndex 🦙 better?
What is LlamaIndex🦙? LlamaIndex is a data framework which helps to interact with your custom knowledge such as your local documents using Large Language model (LLM). It has gain immense popularity among developers as it only takes 4-5 lines of code to query your local documents. If you’re new to the world of LLamaIndex, we […]

How to Build LLM apps using Chainlit
Rapid LLM app development is now achievable with Chainlit, the feature-packed Python library. Its intuitive user interface and comprehensive features have sparked widespread interest, which are give below: In this article we are going to create a chainlit application which will be using llamaIndex at its core for the LLM app. Requirements To get started […]

Chat with Docs – Project
In this tutorial, we are going to learn about a project ChatwithDocs which let’s you interact with your Documents in just few steps. Large Langauge Models (LLM) have started a whole new revolution in Artificial Industry. There are loads of new applications being developed on LLMs on a daily basis. The only grey area that […]

How to use ChatGPT with Rasa
In this tutorial, we will learn how to use ChatGPT with Rasa. ChatGPT is a Large Language Model (LLM) created by OpenAI which started the whole new wave in Artificial Industry. Whereas Rasa is one such open-source framework that allows developers to build, improve, and deploy tailor made chatbots that can understand and respond to […]

How to build your Chatbot using Custom Knowledge Base with LlamaIndex, OpenAI and Streamlit
Large Language Models( LLM ) such as OpenAI/Google Bard has made life of everyone better whether a developer/content writer/social media manger or normal users. You can build anything using LLM nowadays. There are certain areas where LLMs lacks and they are not having knowledge to specific domains. For example: Companies documentations, Questions on PDFs etc. […]

Build Chatbot using GPT-4 and Streamlit in Python
In this article we are going to create chatbot using Streamlit and GPT-4. In our previous article Creating Your Own ChatGPT: A Step-by-Step Guide Using GPT-4 in Python, We have used HTML file to render our chatbot UI. In this tutorial, we are not going to use html/js/css. Our entire code will be in python. […]

How to use Streamlit in Python
For any data scientist, representation of data becomes an important part in their daily life. Being able to see the WHAT/HOW/WHY of data gives more clear picture about the data. For better understanding check out the following images, one where we are seeing out data in a dataframe and in the next image see the […]