diff --git a/README.md b/README.md
index 4a1697c..25f18f9 100644
--- a/README.md
+++ b/README.md
@@ -1,230 +1,79 @@
-
+# LocalMind
-

+LocalMind is a privacy-focused, local-first AI chat application that runs entirely on your machine. It uses Ollama for local LLM inference, supports RAG (Retrieval-Augmented Generation), and provides a modern web interface.
-# LocalMind v2.0
-### Offline AI Assistant - Chat with Your Documents. Privately.
+## Features
-**No cloud. No API key. No data leaks. Runs 100% on your machine.**
+- ๐ค **Local AI**: Runs models locally using Ollama โ no data leaves your machine
+- ๐ฌ **Chat Interface**: Clean, responsive UI for conversations
+- ๐ **RAG Support**: Upload documents and ask questions about them
+- ๐ **Plugin System**: Extend functionality with custom plugins
+- ๐ค **Export**: Export conversations in various formats
+- ๐จ **Customizable**: Adjust settings to your preferences
-[](https://python.org)
-[](https://fastapi.tiangolo.com)
-[](https://react.dev)
-[](https://ollama.ai)
-[](LICENSE)
-[](https://ssoc.dev)
-[](CONTRIBUTING.md)
-
-
-
-[Quick Start](#quick-start) ยท [Features](#features) ยท [Tech Stack](#tech-stack) ยท [Contributing](#contributing) ยท [Screenshots](#screenshots)
-
----
+## Quick Start
-
+### Prerequisites
-## What's New in v2.0
+- [Docker](https://docs.docker.com/get-docker/) & [Docker Compose](https://docs.docker.com/compose/install/)
+- [Ollama](https://ollama.com/download) (for local LLM)
-| Feature | Description |
-|---------|-------------|
-| Streaming Responses | See AI reply token-by-token in real time |
-| Plugin System | Calculator, Word Counter, JSON Formatter, Code Runner, Summarizer |
-| 8 Languages | English, Hindi, Tamil, Telugu, Kannada, French, German, Spanish |
-| Export Chats | Download conversations as Markdown, JSON, or TXT |
-| Session Manager | Full CRUD - create, rename, search, delete chat sessions |
-| Settings Panel | Temperature, RAG chunks, model, theme, language |
-| Docker v2 | Health checks, persistent volumes, nginx reverse proxy |
-| 30+ Tests | Full pytest suite with mocked Ollama |
+### Setup
----
+1. **Clone the repository**
+ ```bash
+ git clone https://github.com/imDarshanGK/localmind.git
+ cd localmind
+ ```
-## All Features
+2. **Set up environment variables**
+ ```bash
+ cp .env.example .env
+ cp frontend/.env.example frontend/.env
+ ```
-| Feature | Status |
-|---------|--------|
-| Fully Offline (Ollama) | Included |
-| PDF / TXT / CSV / DOCX / MD / HTML upload | Included |
-| RAG โ Chat with Documents | Included |
-| Streaming Responses (SSE) | Included |
-| Multi-Model (Llama3, Mistral, Phi3, Gemma, DeepSeek) | Included |
-| 8 UI Languages | Included |
-| Chat History (SQLite) | Included |
-| Session Manager (CRUD) | Included |
-| Session Search | Included |
-| Plugin System (6 plugins) | Included |
-| Export (MD / JSON / TXT) | Included |
-| Settings Panel | Included |
-| Docker Compose | Included |
-| 30+ Tests | Included |
-| Zero telemetry | Included |
+3. **Pull a model (optional but recommended)**
+ ```bash
+ ollama pull llama3.2
+ ```
----
+4. **Start the application**
+ ```bash
+ docker compose up --build
+ ```
-## ๐ Tech Stack
+5. **Access the app**
+ - Frontend: [http://localhost:3000](http://localhost:3000)
+ - Backend API: [http://localhost:8000](http://localhost:8000)
-```
-โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
-โ LocalMind v2.0 โ
-โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
-โ Frontend โ React 18 + Tailwind + Vite โ
-โ Backend โ Python 3.11 + FastAPI โ
-โ AI Engine โ Ollama (local LLM) โ
-โ RAG โ LangChain + ChromaDB โ
-โ Embeddings โ sentence-transformers (local) โ
-โ Database โ SQLite (100% local) โ
-โ Streaming โ Server-Sent Events (SSE) โ
-โ Deploy โ Docker Compose + nginx โ
-โ Testing โ pytest + TestClient โ
-โโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
-```
+## Development
----
-
-## Quick Start
-
-### Option 1 - Docker (Recommended, 3 commands)
+### Backend
```bash
-# 1. Pull a model (one-time, ~4GB)
-ollama pull llama3
-
-# 2. Clone and start
-git clone https://github.com/yourusername/localmind.git
-cd localmind && docker compose up
-
-# 3. Open browser
-open http://localhost:3000
-```
-
-### Option 2 - Manual Setup
-
-```bash
-git clone https://github.com/yourusername/localmind.git
-cd localmind
-
-# Backend
cd backend
-python -m venv venv && source venv/bin/activate
+python -m venv venv
+source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
-cp ../.env.example ../.env
-uvicorn app:app --reload --port 8000
-
-# Frontend (new terminal)
-cd frontend
-npm install && npm run dev
-# Open http://localhost:3000
+python app.py
```
-**Prerequisites:** [Python 3.11+](https://python.org) | [Node 18+](https://nodejs.org) | [Ollama](https://ollama.ai) | [Docker](https://docker.com)
-
-### Render Deploy
-
-If you deploy on Render, set the frontend build to use `VITE_API_BASE_URL` and configure the backend with `CORS_ORIGINS`.
+### Frontend
```bash
-# backend service envs
-OLLAMA_HOST=http://