Bill Chambers
Bill Chambers
@PhilipMay , I hit this issue too. One problem that might come up I believe with this implementation is the following query. ``` "SELECT * FROM blah_table where x='F' ```...
Thanks so much for doing this. Can you please make a copy of everything and put it in a new folder under the language? e.g., `/korean/code/....` in the root folder?
Still a bug in ``` import langchain langchain.__version__ '0.0.251' ``` Another workaround is... ```py def get_qa_with_sources_chain(): llm = ChatOpenAI(model_name="gpt-4", temperature=0) retriever = load_retriever() history = [] model = ConversationalRetrievalChain.from_llm( llm=llm,...
Small reproduction: ``` from langchain import LLMChain, OpenAI, PromptTemplate from langchain.memory import ConversationBufferWindowMemory x = LLMChain( llm=ChatOpenAI(temperature=0.95), prompt=PromptTemplate( input_variables=["input_1", "input_2", "input_3", "history"], template=""" {input_1} {input_2} {history} Client: {input_3} AI:""", ),...
Thank you! Will give this a try and will open a PR for the docs too. Appreciate your help! On Sat, May 4, 2024 at 15:20 arnavsinghvi11 ***@***.***> wrote: >...
Ok, this is much clearer to me. As I mentioned, I am happy to help out with the docs. @arnavsinghvi11 , may I make a proposal here (then subsequently implement...
The functools partial just changes the `backtracker` function so that you can modify the number of retries. That's just a python thing. You don't need to set it otherwise. @lebsral
This is complete On Mon, May 20, 2024 at 03:23 Omar Khattab ***@***.***> wrote: > Hey all, is this complete or pending something? > > — > Reply to this...
Is one better than the other? For some reason, I can't get the `async_mode=True` to work. I get an error about accessing `conversation` which works just fine in not async...