eloijoub
Results
1
comments of
eloijoub
With the following code ```python index_name = 'test' docsearch = Pinecone.from_existing_index(index_name, embeddings,text_key = 'content') llm = OpenAI(model_name = "gpt-3.5-turbo",temperature=0) param_similarity=dict(k=3,search_type="similarity") retriever = docsearch.as_retriever(search_kwargs=param_similarity) qa_chain = load_qa_with_sources_chain( llm = llm, chain_type...