Fix typo, thanks @bd_mkt

This commit is contained in:
Yiorgis Gozadinos 2025-10-30 16:31:55 +02:00
parent a7fd41d24f
commit baedf65415
No known key found for this signature in database

View file

@ -9,7 +9,7 @@ from pathlib import Path
from haiku.rag.client import HaikuRAG
# Use as async context manager (recommended)
async with HaikuRAG("path/to/database.lancedb") as client:
async with HaikuRAG("Path(path/to/database.lancedb")) as client:
# Your code here
pass
```