fix: Make metadata prune true by default (#1316)

<!-- .github/pull_request_template.md -->

## Description
<!-- Provide a clear description of the changes in this PR -->

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
Vasilije 2025-08-29 16:07:01 +02:00 committed by GitHub
commit 0cb1fd447c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ from cognee.infrastructure.databases.graph.get_graph_engine import get_graph_eng
from cognee.infrastructure.databases.relational import get_relational_engine
async def prune_system(graph=True, vector=True, metadata=False):
async def prune_system(graph=True, vector=True, metadata=True):
if graph:
graph_engine = await get_graph_engine()
await graph_engine.delete_graph()