Cesar Romero
Cesar Romero
Now it doesn't work anymore the followers option.
Same here. Using the google colab version: `OutOfMemoryError: CUDA out of memory. Tried to allocate 7.82 GiB (GPU 0; 39.59 GiB total capacity; 31.21 GiB already allocated; 3.17 GiB free;...
> Setting the environment variable `KMP_DUPLICATE_LIB_OK=TRUE` as proposed does indeed resolve the symptom and audio generation then works as intended, but the underlying issue should be fixed code-wise nevertheless. Where...
Same here. Using windows 11. Thanks for creating the issue.
I'm encountering the same problem. From what I see of the link @D80-Sheffield has provided is that the CUDA's available is 11.8, when I have CUDA 12.2 and an NVIDIA...
Still not working... I followed the steps. Created a file inside the parent bark folder and added the piece of code @D80-Sheffield provided. After trying to run it I got...
Ok, have also no idea if it is possible to get it meanwhile it is generating the text or until it is completely finished. Will have to test it and...
Wrote to the Langchain Discord server to see if someone came to the solution. To me it seems super useful and the one that gets it will get a lot...
This could make the trick: ``` from langchain.chat_models import ChatOpenAI llm = ChatOpenAI() generator = llm.stream("Hi there") ``` it'll stream "AIMessageChunk"'s in this case so you could make it ```...