diff --git a/scripts/export_markdown.py b/scripts/export_markdown.py index d51b5cb..6773512 100644 --- a/scripts/export_markdown.py +++ b/scripts/export_markdown.py @@ -181,10 +181,12 @@ def main(): out_dir = Path(args.out).resolve() out_dir.mkdir(parents=True, exist_ok=True) + # korrekt cfg = QdrantConfig.from_env(prefix=args.prefix) client = get_client(cfg) cols = collection_names(args.prefix) + notes = fetch_all_notes(client, cols["notes"], args.note_id) if not notes: print("Keine Notes in Qdrant gefunden (Filter zu streng?).")