Adam Pelyhe
Adam Pelyhe
Hello! I am building an ai assistant, with the help of langchain's ConversationRetrievalChain. I built a FastAPI endpoint where users can ask questions from the ai. I store the previous...
Hi! I am working with AgentExecutors, which are being created with the create_llama_chat_agent() function. The relevant part of the code looks like this: ``` llm = OpenAI(temperature=0, model_name="gpt-3.5-turbo") return create_llama_chat_agent(...
### Issue Stream with AgentExecutors I am running my AgentExecutor with the agent: "conversational-react-description" to get back responses. How can I stream the responses using the same agent?
### Issue you'd like to raise. I created an AgentExecutor with the ConversationalChatAgent and I could pass a system message as I initialize the agent executor. Is it possible to...