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
SQLite RAG comes preconfigured to work with the **Embedding Gemma** model. When you add a document or text, it automatically creates a new database (if one does not already exist) and uses default settings, so you can get started immediately without manual setup.
36
38
37
39
```bash
38
40
# Initialize sqliterag.sqlite database and add documents
41
+
sqlite-rag add-text "Artificial intelligence (AI) enables machines to learn from data"
42
+
39
43
sqlite-rag add /path/to/documents --recursive
40
44
41
45
# Search your documents
42
-
sqlite-rag search "your search query"
46
+
sqlite-rag search "explain AI"
43
47
44
48
# Interactive mode
45
49
sqlite-rag
@@ -61,24 +65,23 @@ sqlite-rag --help
61
65
Settings are stored in the database and should be set before adding any documents.
62
66
63
67
```bash
64
-
# Interactive configuration
65
-
sqlite-rag configure
68
+
# View available configuration options
69
+
sqlite-rag configure --help
70
+
71
+
sqlite-rag configure --model-path ./mymodels/path
66
72
67
73
# View current settings
68
74
sqlite-rag settings
69
-
70
-
# View available configuration options
71
-
sqlite-rag configure --help
72
75
```
73
76
74
-
To use a different database path, use the global `--database` option:
77
+
To use a different database filename, use the global `--database` option:
0 commit comments