Mo Alraddadi

Results 16 comments of Mo Alraddadi

I would like this feature as well

Can we approve this pull request please. It would be nice to have a location picker.

Can we merge this please?

Same issue. Any advice?

@ShantanuNair This is great but are you having any issues with chat history? I am using this setup ``` memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True) qa = ConversationalRetrievalChain.from_llm(ChatOpenAI(temperature=0.7, model_name="gpt-4"), vectorstore.as_retriever(), memory=memory, chain_type='stuff',...

I am still struggling. It does not remember anything in the chat history. What am I doing wrong? Here is my code: ``` memory = ConversationBufferMemory( memory_key='chat_history', return_messages=True, output_key='answer') chain...

@ronak91 I ran into the same issue. I did some modifications to this library. I added a property called `forceLTR` which will enforce the direction from left to right even...