Mike Bee
Mike Bee
### Description Thank you for sharing this interesting software. I tried to do a clean install on Pop!_OS 20.04 using your automated tool. Pip failed because of dependency conflicts. `...
This install fails with python 3.8. It works with 3.6. A quick mention will help people out.
Change from tqdm import tqdm_notebook as tqdm to from tqdm.notebook import tqdm
The import syntax for tqdm has changed. The older syntax results in an error.
I'm using VScode's Jupyter notebook feature, and although my code runs fine, there are dozens of Pylance errors. I'm going over the Huggingface Transformers Course on their website. For example...
How can I uninstall this? brew uninstall iglance isn't working. Thanks.
ollama
Is there a way to connect to a model this way? This code is so easy, but I don't know where to insert it. from langchain.llms import Ollama ollama =...
**Describe the feature** I want to use a local model like llama2. The code is very simple. from langchain.llms import Ollama ollama = Ollama(base_url='http://localhost:11434', model="llama2") response = ollama(prompt) I don't...
I can't tell which agent is running. I see different colors depending on which agent is running, but the agent name isn't printed out. Is there a switch for this?
I wrote this code to chunk streaming into sentences. If you want to use it to enhance your streaming api call, please do. import nltk from langchain_community.llms import Ollama #...