Jon Mellman

Results 3 comments of Jon Mellman

It's even worse than that - if you click on a record, click on the query input, and press command+backspace, it **deletes the record without confirmation**! Even though your focus...

I think so: ```python from langchain.agents import load_tools from langchain.agents import initialize_agent from langchain.chat_models import ChatOpenAI llm = ChatOpenAI(model='gpt-3.5-turbo',temperature=0) tools = load_tools(['human'], llm=llm) agent = initialize_agent(tools, llm, agent="chat-zero-shot-react-description", verbose=True) agent.run("Can...

I was running into this same issue. What eventually worked for me was: ``` pip3 install --upgrade pip setuptools wheel pip3 install git+https://github.com/robweber/omni-epd.git#egg=omni-epd ``` Cheers, and thanks Rob for maintaining...