Files
LangBot/pkg/vector/vdb.py
2025-07-15 22:09:10 +08:00

8 lines
89 B
Python

from __future__ import annotations
import abc
class VectorDatabase(abc.ABC):
pass