12 lines
336 B
Python
12 lines
336 B
Python
|
|
"""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"]
|