Releases: rogeriochaves/langstream
Releases · rogeriochaves/langstream
v0.3.1
Exposes the OpenAI instance being used through OpenAIChatStream.client()
v0.3.0
This releases updates the implementation of OpenAI, LiteLLM and GPT4All for their latest versions, there are no breaking changes for LangStream since LangStream API wraps them entirely, except for the removal of the stream
parameter on GPT4All, since it's no longer necessary to disable it to get replicate and others to work properly.
v0.2.0
This release makes LLM implementation as optional dependencies, fixing #11, it might be a breaking change for you
Now, if you want to use langstream with say, OpenAI, you need to install the openai
package separately, if you want to use with gpt4all
or litellm
, then you also need to install their packages separately, and so on
v0.1.8
v0.1.7
v0.1.6
v0.1.5
v0.1.4
v0.1.3
v0.1.2
- Add
name
key to OpenAIChatMessage and OpenAIChatDelta, as it is necessary for function calls and storing it back on memory - thanks rbdixon on Discord!