2023-05-22 09:39:55 +03:00
|
|
|
from langchain.embeddings.openai import OpenAIEmbeddings
|
|
|
|
from langchain.schema import Document
|
2023-06-19 23:55:42 +03:00
|
|
|
from llm.brainpicking import BrainPicking, BrainSettings
|
2023-06-11 00:59:16 +03:00
|
|
|
from llm.summarization import llm_evaluate_summaries, llm_summerize
|
2023-05-22 09:39:55 +03:00
|
|
|
from logger import get_logger
|
2023-06-11 00:59:16 +03:00
|
|
|
from models.chats import ChatMessage
|
2023-06-19 23:46:25 +03:00
|
|
|
from models.settings import BrainSettings, CommonsDep
|
2023-06-19 22:15:35 +03:00
|
|
|
from pydantic import BaseModel
|
2023-05-22 09:39:55 +03:00
|
|
|
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
2023-06-19 22:15:35 +03:00
|
|
|
class Neurons(BaseModel):
|
|
|
|
|
|
|
|
commons: CommonsDep
|
|
|
|
settings = BrainSettings()
|
|
|
|
|
|
|
|
def create_vector(self, user_id, doc, user_openai_api_key=None):
|
|
|
|
logger.info(f"Creating vector for document")
|
|
|
|
logger.info(f"Document: {doc}")
|
|
|
|
if user_openai_api_key:
|
|
|
|
self.commons['documents_vector_store']._embedding = OpenAIEmbeddings(openai_api_key=user_openai_api_key)
|
|
|
|
try:
|
|
|
|
sids = self.commons['documents_vector_store'].add_documents([doc])
|
|
|
|
if sids and len(sids) > 0:
|
|
|
|
self.commons['supabase'].table("vectors").update({"user_id": user_id}).match({"id": sids[0]}).execute()
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Error creating vector for document {e}")
|
|
|
|
|
|
|
|
def create_embedding(self, content):
|
|
|
|
return self.commons['embeddings'].embed_query(content)
|
|
|
|
|
|
|
|
def similarity_search(self, query, table='match_summaries', top_k=5, threshold=0.5):
|
|
|
|
query_embedding = self.create_embedding(query)
|
|
|
|
summaries = self.commons['supabase'].rpc(
|
|
|
|
table, {'query_embedding': query_embedding,
|
|
|
|
'match_count': top_k, 'match_threshold': threshold}
|
|
|
|
).execute()
|
|
|
|
return summaries.data
|
|
|
|
|
|
|
|
|
2023-06-17 00:36:53 +03:00
|
|
|
def create_summary(commons: CommonsDep, document_id, content, metadata):
|
2023-05-22 09:39:55 +03:00
|
|
|
logger.info(f"Summarizing document {content[:100]}")
|
|
|
|
summary = llm_summerize(content)
|
|
|
|
logger.info(f"Summary: {summary}")
|
|
|
|
metadata['document_id'] = document_id
|
|
|
|
summary_doc_with_metadata = Document(
|
|
|
|
page_content=summary, metadata=metadata)
|
2023-06-17 00:36:53 +03:00
|
|
|
sids = commons['summaries_vector_store'].add_documents(
|
2023-05-22 09:39:55 +03:00
|
|
|
[summary_doc_with_metadata])
|
|
|
|
if sids and len(sids) > 0:
|
2023-06-17 00:36:53 +03:00
|
|
|
commons['supabase'].table("summaries").update(
|
2023-05-22 09:39:55 +03:00
|
|
|
{"document_id": document_id}).match({"id": sids[0]}).execute()
|