add newline

This commit is contained in:
Ashwin Bharambe 2025-07-28 21:22:11 -07:00
parent d96381e88f
commit 1a21c4b695

View file

@ -119,6 +119,7 @@ class ResponseStorage:
# Save response to JSON file
with open(response_path, "w") as f:
json.dump({"request": request, "response": serialized_response}, f, indent=2)
f.write("\n")
# Update SQLite index
with sqlite3.connect(self.db_path) as conn: