- # @description:
- # @author: licanglong
- # @date: 2025/12/23 14:43
- from dataclasses import dataclass
- @dataclass(frozen=True)
- class VectorStoreCollection:
- RULE_EMBED_STORE = "rule_embed_store"
- CASE_EMBED_STORE = "case_embed_store"
- MERCHANTS_EMBED_STORE = "merchants_embed_store"
- EDGES_EMBED_STORE = "edges_embed_store"
|