mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-19 12:21:46 +03:00
ba123fe716
* fix(shareBrain): prevent access duplication in db * feat: remove unused function * fix(linter): update types
21 lines
631 B
Python
21 lines
631 B
Python
from uuid import UUID
|
|
|
|
from models.settings import get_embeddings, get_supabase_client
|
|
from vectorstore.supabase import CustomSupabaseVectorStore
|
|
|
|
|
|
def get_question_context_from_brain(brain_id: UUID, question: str) -> str:
|
|
supabase_client = get_supabase_client()
|
|
embeddings = get_embeddings()
|
|
|
|
vector_store = CustomSupabaseVectorStore(
|
|
supabase_client,
|
|
embeddings,
|
|
table_name="vectors",
|
|
brain_id=str(brain_id),
|
|
)
|
|
documents = vector_store.similarity_search(question)
|
|
|
|
# aggregate all the documents into one string
|
|
return "\n".join([doc.page_content for doc in documents])
|