You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Chat**|`phi3:mini`|~2.3GB | 4GB | Low-resource systems |
30
+
31
+
> **Recommendation**: Use `nomic-embed-text` for embeddings and `qwen3:14b` for chat if your system supports it. For lower-spec systems, try `mistral:latest` or `phi3:mini`.
32
+
33
+
### Prerequisites (Required for Both Installation Methods)
34
+
35
+
**1. Install Ollama** (for local AI models):
36
+
```bash
37
+
# macOS
38
+
brew install ollama
39
+
40
+
# Or download from https://ollama.com
41
+
```
42
+
43
+
**2. Start Ollama and install required models**:
44
+
```bash
45
+
ollama serve
46
+
47
+
# Install embedding model (required)
48
+
ollama pull nomic-embed-text
49
+
50
+
# Install a chat model (see recommendations above)
51
+
ollama pull qwen3:14b
52
+
```
53
+
54
+
### Installation Options
55
+
56
+
Choose your preferred installation method:
40
57
41
-
### Installation
58
+
### Option 1: Direct Installation
59
+
60
+
**Additional Prerequisites:**
61
+
- Python 3.8+
62
+
63
+
**Installation Steps:**
42
64
43
65
1.**Clone the repository**:
44
66
```bash
@@ -64,6 +86,26 @@ Ragadoc is a privacy-first Streamlit application that lets you chat with your do
64
86
65
87
4.**Open your browser** to `http://localhost:8501`
0 commit comments