Uche Ogbuji

Results 32 comments of Uche Ogbuji

Just a +1 here. I'm another one who never plans to use homebrew, and I can find M1-compatible installers for most software I use, except for jq.

@reneleonhardt sorry, I missed your response, and thanks. The problem is that jq comes with `configure.ac`, not `configure`, so your recipe doesn't work standalone. I was hoping not to have...

> Hi, versioned release like jq-1.6.tar.gz should include configure but confusingly "Source code (tar.gz)" on the release page does not, that is a packaging of the git repo. Ah. Helpful;...

Just my opinions here. I've not commit bit & am relatively new to langchain. > This replaces the usage of the insecure `exec` function with a more secure library called...

I think this is all a bit of a mess. First of all, I don't think the carrier of the document should be conflated with the content. So, for example,...

I was able to just load HTML strings by writing my own loader class, as follows. You should be able to do similar for your case. I still think `DocumentLoader`...

Noting for the record that releases are indeed reliably synced to PyPI, which TYBF is the most important spot: https://pypi.org/project/langchain/#history

The default SotU doc does have some non-ASCII chars. You can check pretty easily: ```shell $ python -c "import chardet; print(chardet.detect(open('source_documents/state_of_the_union.txt', 'rb').read()))" {'encoding': 'utf-8', 'confidence': 0.99, 'language': ''} ``` I...

@andyjphu nailed it. Anyone was free to make a framework allowing any generative pretrained transformer (GPT) to be used privately (i.e. yes, in an air-gapped environment). Anyone would have been...

> I think privateGPT is great. Check out our version, which includes full UI and GPU support, among everything else privateGPT has: https://github.com/h2oai/h2ogpt . This looks cool, but I do...