Skip to content

Releases: filip-michalsky/SalesGPT

SalesGPT v0.1.2

25 Mar 01:48
2103aa3
Compare
Choose a tag to compare

Added ability of SalesGPT to close sales via integration to Stripe

SalesGPT v0.1.1

05 Feb 20:58
bc6cda0
Compare
Choose a tag to compare

Version 0.1.1

  • updated compatibility to match LangChain 0.1 including examples
  • WIP of the website and API documentation.

SalesGPT v0.1.0

10 Dec 21:15
Compare
Choose a tag to compare

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

25 Nov 14:36
6a5dec9
Compare
Choose a tag to compare

This release ensures compatibility with openai>=1.0.0 which was a source of many bugs for streaming use cases!

Simplified streaming, bug fixes

04 Oct 15:18
80dc70d
Compare
Choose a tag to compare
  • 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

08 Sep 18:21
dc376b2
Compare
Choose a tag to compare
Merge pull request #52 from filip-michalsky/update_docs_and_tests

Update docs and tests

SalesGPT v0.0.6

23 Aug 19:43
5457a19
Compare
Choose a tag to compare

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

29 Jul 17:55
dc80a2e
Compare
Choose a tag to compare

Minor update with reduction and more control of verbosity of main SalesGPT.from_llm method

SalesGPT v0.0.4

15 Jul 13:53
9365bee
Compare
Choose a tag to compare

SalesGPT now has access to tools, such as Product Knowledge Base.

SalesGPT v0.0.3

06 Jul 13:57
3077a01
Compare
Choose a tag to compare

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.