From baedf654158e54aefc783c7c21d90d93a7dc5042 Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Thu, 30 Oct 2025 16:31:55 +0200 Subject: [PATCH] Fix typo, thanks @bd_mkt --- docs/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python.md b/docs/python.md index 3bd93d00..bf1bdbce 100644 --- a/docs/python.md +++ b/docs/python.md @@ -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 ```