FergusFettes

Results 31 comments of FergusFettes

Would be great if this was in the 'development' section of the README.

Also having this issue on Ubuntu 20.04, running regolith (i3). Tried both building from source and installing with cargo to no avail. However on the same computer it works when...

I'd also like basic regex search facility. I tried searching for `\d\{4,\}` to find longer numbers on the page, no dice. Thx!

also looking forward to a working raspberry pi install I was going to chip in that `mount`ing seemed to mirror fine for me (I set up a hyperdrive in a...

For a little context, I'm using tmux in my docker image to make it easy to send keys to and occasionally kill a badly-behaving python2 process that I have given...

Aha! This explains the errors I was getting on the OpenAI endpoint: ``` InvalidRequestError: you must provide a model parameter ``` after using GooseAI! This should be upgraded to a...

I also just tried this out with the alacritty branch, same result: ``` Please mention device attribute codes: ^[[?6c ```

Yes, I should have mentioned also. For completions sake, here is the PR: https://github.com/alacritty/alacritty/pull/4763

Well yeah, you can do that just with ``` from langchain.chains.llm import LLMChain from langchain.llms.openai import OpenAI from langchain.prompts.prompt import PromptTemplate llm = OpenAI(temperature=0, model="gpt-3.5-turbo") template = """ You are...

I guess with async and a for loop you could roll your own batching yeah :). Might just mean you would hit rate limits faster though.