Jon Mellman

Results 6 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...

+1 for solving this issue. It seems strange to claim JavaScript support without code completions or snippets. I spent a while installing Polyglot and troubleshooting .NET SDK issues only to...

+1, exact same issue here. Attaching [log.txt](https://github.com/mudler/LocalAI/files/13447237/log.txt).

Looks like this is resolved because v1.10.0a2 consumes `databricks-sdk==0.46.0`, is that right ([source](https://github.com/databricks/dbt-databricks/blob/v1.10.0a2/pyproject.toml#L25))? Do you know when v1.10 will be released?