Introduction to Datasources

Data Sources are the second fundamental building block of the LLMate platform, designed to empower your workflows and apps with contextually relevant information. Unlike traditional direct-match keyword searches, LLMate's Data Sources utilize semantic search, fundamentally changing how you retrieve and utilize data within your AI applications.

We use RAG for facilitating your Datasources. Here's what it means:

Retrieval-Augmented Generation (RAG) is a hybrid AI model that combines the powers of two key components in NLP:

  1. Retrieval: This is a mechanism that searches a vast database of pre-existing texts to find the most relevant information in response to a query. Unlike traditional search algorithms that only fetch exact matches, the retrieval system used in RAG employs sophisticated machine learning techniques to understand the query contextually and find the best match even if the wording is different.

  2. Augmented Generation: The second component is a generative AI model, like GPT (Generative Pretrained Transformer). Once the relevant information is retrieved, this generative model takes over to craft a coherent and contextually relevant answer by synthesizing the retrieved information with its pre-trained knowledge.

In a SaaS service offering RAG, you would typically interact with an API that abstracts away all the complexities. You send it a query, and the service utilizes its retrieval system to find the most relevant information from a dataset, and then the generative model creates a human-like, informative response.

Last updated