Andrew Chen Wang
Andrew Chen Wang
@oliverbutler I forgot, the scripts are right here: https://github.com/joinbloomapp/stock-market-game/tree/main/packages/scripts/src Feel free to take a gander!
Any reproducible project I could take a look at?
Turns out #220 is discovering that the tables are still being cached.
Happy to commit to this. Based on previous experience with Redis and Django, a standalone package isn't needed, and this package would only need to include aiohttp as a dependency....
#146 resolves this issue. Please go test it, thanks. Usage (notice the `a` prefix, used in CPython lib, Django, and other libs): ```python import openai openai.api_key = "sk-..." async def...
@danbf Recommend you also manually control the aiohttp session: ```python import openai from aiohttp import ClientSession openai.aiosession.set(ClientSession()) # At the end of your program, close the http session await openai.aiosession.get().close()...
I would go with whatever openai-python has (ie my PR) since there are constant improvements to the repo, it's the official one, and all the examples online utilize this package....
I'm on Intel, not M1, but it's possible you could try to install from source? ``` brew install ffmpeg cmake git clone --recursive https://github.com/dmlc/decord cd decord mkdir build && cd...
If you install from source, you need to change the source code itself because you likely have an incompatible ffmpeg (v5 instead of v4).
Running: ``` rtx settings set not_found_auto_install false rtx Unknown setting: not_found_auto_install rtx Run with --verbose or RTX_VERBOSE=1 for more information ``` ` Unknown setting: not_found_auto_install` > However, I'm curious why...