Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
samples
/samples
extensions

# LLM models
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A hybrid search engine built on SQLite with [SQLite AI](https://github.com/sqlit
## Installation

```bash
python -m venv .venv
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install sqlite-rag
```
Expand Down Expand Up @@ -114,11 +114,11 @@ git clone https://github.com/sqliteai/sqlite-rag.git
cd sqlite-rag

# Create virtual environment
python -m venv .venv
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate

# Install in development mode
pip install -e .[dev]
pip install -e '.[dev]'
```
## How It Works

Expand Down