This commit is contained in:
Timothy Jaeryang Baek
2026-03-17 17:58:01 -05:00
parent fcf7208352
commit de3317e26b
220 changed files with 17200 additions and 22836 deletions

View File

@@ -8,7 +8,6 @@ from open_webui.config import (
class Vector:
@staticmethod
def get_vector(vector_type: str) -> VectorDBBase:
"""
@@ -82,7 +81,7 @@ class Vector:
return WeaviateClient()
case _:
raise ValueError(f"Unsupported vector type: {vector_type}")
raise ValueError(f'Unsupported vector type: {vector_type}')
VECTOR_DB_CLIENT = Vector.get_vector(VECTOR_DB)