mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 23:06:03 +00:00
chore: stash
This commit is contained in:
0
pkg/vector/__init__.py
Normal file
0
pkg/vector/__init__.py
Normal file
13
pkg/vector/mgr.py
Normal file
13
pkg/vector/mgr.py
Normal 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
pkg/vector/vdb.py
Normal file
7
pkg/vector/vdb.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import abc
|
||||
|
||||
|
||||
class VectorDatabase(abc.ABC):
|
||||
pass
|
||||
Reference in New Issue
Block a user