chore: stash

This commit is contained in:
Junyan Qin
2025-07-15 22:09:10 +08:00
parent 199164fc4b
commit 67bc065ccd
15 changed files with 508 additions and 338 deletions
View File
+13
View File
@@ -0,0 +1,13 @@
from __future__ import annotations
from ..core import app
class VectorDBManager:
ap: app.Application
def __init__(self, ap: app.Application):
self.ap = ap
async def initialize(self):
pass
+7
View File
@@ -0,0 +1,7 @@
from __future__ import annotations
import abc
class VectorDatabase(abc.ABC):
pass