mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-03 20:44:36 +00:00
8 lines
89 B
Python
8 lines
89 B
Python
from __future__ import annotations
|
|
|
|
import abc
|
|
|
|
|
|
class VectorDatabase(abc.ABC):
|
|
pass
|