From 5d9f755e613a6756918bdc21db35dc3a73dd4f09 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Mon, 2 Feb 2026 21:37:12 -0600 Subject: [PATCH] Fix database path configuration - use relative path './facts.db' instead of 'facts.db' --- factsdb/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factsdb/config.py b/factsdb/config.py index 4cce70d..266272a 100644 --- a/factsdb/config.py +++ b/factsdb/config.py @@ -10,7 +10,7 @@ from typing import Optional @dataclass class DatabaseConfig: """Database configuration""" - path: str = "facts.db" + path: str = "./facts.db" @dataclass class AIEndpointConfig: