mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
14 lines
221 B
Python
14 lines
221 B
Python
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
|