Mbonea commited on
Commit
53cc68a
·
1 Parent(s): 89ebcd8

Testing initialize

Browse files
Files changed (1) hide show
  1. App/Embedding/utils/Initialize.py +13 -0
App/Embedding/utils/Initialize.py CHANGED
@@ -62,5 +62,18 @@ def search(query: str, task_id: str):
62
 
63
 
64
  def encode(temp: list[Document]):
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  docsearch.add_documents(temp)
66
  # return embeddings.embed_documents(texts = [d.page_content for d in temp])
 
62
 
63
 
64
  def encode(temp: list[Document]):
65
+ PINECONE_API_KEY = os.environ.get("PINECONE_API_KEY")
66
+ # find your environment next to the api key in pinecone console
67
+ PINECONE_ENV = os.environ.get("PINECONE_ENVIRONMENT")
68
+
69
+
70
+ index_name = "transcript-bits"
71
+ model_name = "thenlper/gte-base"
72
+ embeddings = HuggingFaceEmbeddings(model_name=model_name)
73
+
74
+
75
+ pinecone.init(api_key=PINECONE_API_KEY, environment=PINECONE_ENV)
76
+ vector_index = pinecone.Index(index_name=index_name)
77
+ docsearch = Pinecone.from_existing_index(index_name, embeddings)
78
  docsearch.add_documents(temp)
79
  # return embeddings.embed_documents(texts = [d.page_content for d in temp])