Releases: filip-michalsky/SalesGPT
Releases · filip-michalsky/SalesGPT
SalesGPT v0.1.2
Added ability of SalesGPT to close sales via integration to Stripe
SalesGPT v0.1.1
Version 0.1.1
- updated compatibility to match LangChain 0.1 including examples
- WIP of the website and API documentation.
SalesGPT v0.1.0
Version 0.1.0
- Migrated dependency management to Poetry.
- added makefile for easy installation and testing.
- expanded compatibility for python 3.8, 3.9, 3.10, and 3.11
- detailed installation + contribution instructions
SalesGPT v0.0.9
This release ensures compatibility with openai>=1.0.0 which was a source of many bugs for streaming use cases!
Simplified streaming, bug fixes
- Improved streaming endpoint, now accessible with simple
stream=True
kwarg. - Fixed dependency issues with
pydantic
version. - Removed the duplicate calling of
model_name
. - Improved docstrings.
- Split
requirements.txt
into dev and production requirements.
Integration of SalesGPT with LiteLLM - use any closed/open source model
Merge pull request #52 from filip-michalsky/update_docs_and_tests Update docs and tests
SalesGPT v0.0.6
Bug fixes.
Allow asynchronous streaming generators:
model_name = MODEL_NAME
async def my_async_stream(*args, **kwargs):
astream_generator = await sales_agent.astep(
return_streaming_generator=True, model_name=model_name
)
async for chunk in astream_generator:
# do async work
SalesGPT v0.0.5
Minor update with reduction and more control of verbosity of main SalesGPT.from_llm method
SalesGPT v0.0.4
SalesGPT now has access to tools, such as Product Knowledge Base.
SalesGPT v0.0.3
Update SalesGPT streaming to allow to change model name. This can help with streaming from GPT 3.5 with different context lengths or GPT-4. Need to add abstraction to support other LLM providers as does langchain
.