Files
ai-rpg/app/migrations/init_qdrant.py

12 lines
336 B
Python
Raw Permalink Normal View History

2026-06-20 19:13:05 +03:00
"""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"]