patrick oleary

Results 9 comments of patrick oleary

Ahh I see so if i used emailAddress in the dict for dump ``` data = {"name": "Mike", "emailAddress": "[email protected]", "i-d": 123} ``` then it would behave the same. I...

People always find a way to use things "not how they were designed" :-) The use case I'm using it for is to thame an API from a BI tool...

@psaban20 I just managed to get this to work with the button you've got by adding a reference to the table, the reason you're getting this.download doesn't exist is that...

I just released a logger for langchain that works with CrewAI, it might help you https://github.com/thevgergroup/langchain-logger

Can confirm this is happening, my docker instances are starting to fail using python:3.11-slim ```Dockerfile RUN poetry config virtualenvs.create false RUN poetry install --no-dev ``` is now creating a .venv...

@neersighted if this is a different topic could you point me to the correct one? Appreciate the discord invite but bugs should be discussed on issue tickets, discord is a...

Can you update the MAC OS readme to indicate mps support isn't available https://github.com/h2oai/h2ogpt/blob/main/docs/README_MACOS.md Spent a while trying to figure out why it wasn't using any GPU

Hey @dlstadther what can I do to help move this forward? I'm not sure what to look at to increase the code cov test

The workaround works, just make sure that you do your uninstall after you've done your requirements install ```Dockerfile RUN pip install -r requirements.txt RUN pip uninstall -y opencv-python opencv-contrib-python &&...