This commit is contained in:
Mikan
2026-06-20 19:13:05 +03:00
parent 32575e217e
commit 8514c63ec6
193 changed files with 22105 additions and 11660 deletions

View File

@@ -0,0 +1,11 @@
"""Qdrant collection initializer — runs on application startup.
Creates the `entities` and `story_entries` collections with payload indexes
on `world_id` (and per-collection secondary indexes).
"""
from __future__ import annotations
from app.core.qdrant_client import init_qdrant_collections
__all__ = ["init_qdrant_collections"]