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
Copy file name to clipboardExpand all lines: README.md
+21-10Lines changed: 21 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Skardi lets AI agents and applications query files, databases, data lakes, and v
33
33
-**Vector search** — Native KNN similarity search via Lance integration
34
34
-**S3 support** — Read CSV, Parquet, and Lance files directly from S3
35
35
-**Docker ready** — Ship as a container with your config files mounted at runtime
36
-
-**ONNX inference** — Run ONNX model predictions inline in SQL via the `onnx_predict` UDF
36
+
-**ONNX inference** — Run ONNX model predictions inline in SQL via the `onnx_predict` UDF (requires `--features onnx`)
37
37
38
38
## Table of Contents
39
39
@@ -345,7 +345,7 @@ export PG_USER="myuser"
345
345
export PG_PASSWORD="mypassword"
346
346
```
347
347
348
-
For detailed setup, CRUD examples, and federated queries, see [demo/postgres/POSTGRES_DEMO.md](demo/postgres/POSTGRES_DEMO.md).
348
+
For detailed setup, CRUD examples, and federated queries, see [demo/postgres/README.md](demo/postgres/README.md).
349
349
350
350
### MySQL
351
351
@@ -366,7 +366,7 @@ export MYSQL_USER="myuser"
366
366
export MYSQL_PASSWORD="mypassword"
367
367
```
368
368
369
-
For detailed setup, CRUD examples, and federated queries, see [demo/mysql/MYSQL_DEMO.md](demo/mysql/MYSQL_DEMO.md).
369
+
For detailed setup, CRUD examples, and federated queries, see [demo/mysql/README.md](demo/mysql/README.md).
370
370
371
371
### SQLite
372
372
@@ -388,7 +388,7 @@ SQLite requires no credentials — just the path to the database file.
388
388
skardi query --sql "SELECT * FROM './data/my_database.db.users'"
389
389
```
390
390
391
-
For detailed setup, CRUD examples, and federated queries, see [demo/sqlite/SQLITE_DEMO.md](demo/sqlite/SQLITE_DEMO.md).
391
+
For detailed setup, CRUD examples, and federated queries, see [demo/sqlite/README.md](demo/sqlite/README.md).
392
392
393
393
### MongoDB
394
394
@@ -411,7 +411,7 @@ export MONGO_USER="myuser"
411
411
export MONGO_PASS="mypassword"
412
412
```
413
413
414
-
For detailed setup, CRUD examples, and federated queries, see [demo/mongo/MONGO_DEMO.md](demo/mongo/MONGO_DEMO.md).
414
+
For detailed setup, CRUD examples, and federated queries, see [demo/mongo/README.md](demo/mongo/README.md).
415
415
416
416
### Redis
417
417
@@ -429,7 +429,7 @@ Full CRUD support with point lookups (O(1) via direct key construction), full sc
429
429
430
430
Redis keys follow the pattern `{key_space}:{table}:{key_column_value}`, where `key_column` is extracted from the key suffix and exposed as a SQL column. For initially empty tables, use the `columns` option to declare the schema upfront so INSERT operations work immediately.
431
431
432
-
For detailed setup, CRUD examples, and federated queries, see [demo/redis/REDIS_DEMO.md](demo/redis/REDIS_DEMO.md).
432
+
For detailed setup, CRUD examples, and federated queries, see [demo/redis/README.md](demo/redis/README.md).
0 commit comments