An open API service indexing awesome lists of open source software.

https://github.com/mcaimi/llm-frontend

A Frontend Application to the RAG Demo
https://github.com/mcaimi/llm-frontend

chromadb demo-app langchain-python learning-by-doing llm-inference mistral-7b ollama-client rag wip

Last synced: 4 months ago
JSON representation

A Frontend Application to the RAG Demo

Awesome Lists containing this project

README

        

# Retrieval Augmented Web Frontend

This is a RAG Web Application written using Gradio and FastAPI.
It exposes a way to chat with an LLM while augmenting the response with precise data fetched from a Vector DB.

Technologies used:

- ChromaDB as the Vector Store
- Langchain with Integrations
- Ollama
- Mistral LLM
- Gradio
- Python 3.12

![gradio_app](assets/gradio_app.png)

## Run Locally

The application runs locally by launching it via the `fastapi` cli command:

```bash
# development mode
$ fastapi dev

# production mode
$ fastapi run
```