We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f18eee + f6d2825 commit 71bed6bCopy full SHA for 71bed6b
2 files changed
.gitignore
@@ -1,4 +1,4 @@
1
-samples
+/samples
2
extensions
3
4
# LLM models
README.md
@@ -21,7 +21,7 @@ A hybrid search engine built on SQLite with [SQLite AI](https://github.com/sqlit
21
## Installation
22
23
```bash
24
-python -m venv .venv
+python3 -m venv .venv
25
source .venv/bin/activate # On Windows: .venv\Scripts\activate
26
pip install sqlite-rag
27
```
@@ -114,11 +114,11 @@ git clone https://github.com/sqliteai/sqlite-rag.git
114
cd sqlite-rag
115
116
# Create virtual environment
117
118
119
120
# Install in development mode
121
-pip install -e .[dev]
+pip install -e '.[dev]'
122
123
## How It Works
124
0 commit comments