sebastianseck
Results
2
comments of
sebastianseck
``` retriever = vectorstore.as_retriever(search_kwargs=dict(k=1)) memory = VectorStoreRetrieverMemory(retriever=retriever) LLMChain(llm=llm, prompt=prompt, verbose=True, memory=memory) ```
Yes, same here. I can't seem to stop my ChatBots (local LLMs with huggingface_pipelines) from generating my parts of the conversation and haven't found any way to declare a stop...