Alvaro Mateos

Results 8 comments of Alvaro Mateos

What kind of error are you getting?

It seems to be a problem restoring nuget packages. Please, refer to the following documentation for package restore troubleshooting: [https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore-troubleshooting](https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore-troubleshooting) You can also try to remove the current project and...

Did you try cleaning the nuget cache? [https://docs.microsoft.com/en-us/nuget/consume-packages/managing-the-global-packages-and-cache-folders](https://docs.microsoft.com/en-us/nuget/consume-packages/managing-the-global-packages-and-cache-folders) ![Clean nuget cache](https://docs.microsoft.com/en-us/nuget/consume-packages/media/options-clear-caches.png)

As you know, OpenAI v1.0 is a total rewrite of the library with many breaking changes. The more impact changes I've observed include: - You must instantiate a client, instead...

> @Alvaromah I get the below error when I try to run this. _Not_ running openai 1.0 > > ```shell > ERROR:root:Message can't be converted into a valid ChatCompletion message....

I made some changes in the streaming implementation to support more scenarios. However, this version is not compatible with OpenAI v1.0. I am preparing another PR for dev/v0.2

Created PR #491 for dev/v0.2 tested on openai v1.0.0b3

Hi!, I've just created PR #465 to introduce streaming support in a straightforward and non-intrusive manner. Usage: ```python llm_config={ "config_list": config_list, # Enable, disable streaming (defaults to False) "stream": True,...