/
githubmirror
/
AgentPilot
Обзор
Документация
Войти
/
githubmirror
/
AgentPilot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/plugins/openaiassistant/modules/vecdb_plugin.py
18 строк
493 B
jbexta
0.3.0
22 май 2024, 21:39
22 май 2024, 21:39
8b33513
Код
Авторство
О чём код?
from src.system.vectordbs import VectorDB class OpenAI_VectorDB(VectorDB): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) def create_vec_store(self, *args, **kwargs): raise NotImplementedError def list_vec_stores(self, *args, **kwargs): raise NotImplementedError def get_vec_store(self, *args, **kwargs): raise NotImplementedError def delete_vec_store(self, *args, **kwargs): raise NotImplementedError