timxieICN
timxieICN
any update on this feature/PR? Thanks.
Does anyone have any good solutions?
@AshminJayson - there is: https://github.com/langchain-ai/langchain/blob/master/libs/langchain/langchain/chains/conversational_retrieval/base.py#L65
There's a parameter called `rephrase_question` and you can set it to False: https://github.com/langchain-ai/langchain/blob/master/libs/langchain/langchain/chains/conversational_retrieval/base.py#L65
Have the same issue with AWS Elasticache (Redis Cluster) running on engine v7.0 and `redis==4.5.3`
Hi guys - any update on security improvement? Perhaps `wasm compilation` per https://github.com/hwchase17/langchain/issues/1026#issuecomment-1565685308
any update on this PR?
Thanks @pprados - I took a quick look at your codes - looks great. ~~However, I did notice your implementation on `QAWithReferencesAndVerbatimsChain` deviates quite a bit from the rest of...
@pprados - also, what's the technical reason why verbatim only works for `chain_type='map_reduce'`?
@pprados - I tried to run your code by refactoring it into our existing workflow, as follows: ``` query_executor = RetrievalQAWithReferencesAndVerbatimsChain.from_llm( llm=AzureChatOpenAI(temperature=0), retriever=OpenSearchVectorStore, memory=..., chain_type="map_reduce" ) ``` I noticed: 1....