From f7f422d0d1156e771777d1152e32b4fc3f002c26 Mon Sep 17 00:00:00 2001 From: Filip Michalsky Date: Sat, 29 Jul 2023 12:25:36 -0400 Subject: [PATCH 1/3] update readme with new video --- README.md | 11 +++++++++-- salesgpt/agents.py | 1 - 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e082519..8157dde1 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,16 @@ Please send an email to [the repo author](mailto:filipmichalsky@gmail.com). - Sales Agent can now take advantage of **tools**, such as look up products in a product catalog! -### Demo: SalesGPT Outbound Prospecting: A New Way to Sell? 🤔 +### Demo: Outbound Prospecting from Crusty AI: A New Way to Sell? 🤔 + +Crusty AI Sales Agent Phone Call Demo - Powered by SalesGPT + +
+ + + +
-https://github.com/filip-michalsky/SalesGPT/assets/31483888/2b13ba28-4e07-41dc-a8bf-4084d25247ca ## Quickstart diff --git a/salesgpt/agents.py b/salesgpt/agents.py index 192e6cdd..40543699 100644 --- a/salesgpt/agents.py +++ b/salesgpt/agents.py @@ -190,7 +190,6 @@ def _call(self, inputs: Dict[str, Any]) -> None: def from_llm(cls, llm: BaseLLM, verbose: bool = False, **kwargs) -> "SalesGPT": """Initialize the SalesGPT Controller.""" stage_analyzer_chain = StageAnalyzerChain.from_llm(llm, verbose=verbose) - print(kwargs) if ( "use_custom_prompt" in kwargs.keys() and kwargs["use_custom_prompt"] == "True" From ff5cbe9e9f9b9071404ed2804e3039a9d59e8bfc Mon Sep 17 00:00:00 2001 From: Filip Michalsky Date: Sat, 29 Jul 2023 13:45:41 -0400 Subject: [PATCH 2/3] bump version --- salesgpt/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salesgpt/version.py b/salesgpt/version.py index cddaef97..08a33bef 100644 --- a/salesgpt/version.py +++ b/salesgpt/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.0.4" +__version__ = "0.0.5" From 4672896f9db896e2126902fda4d289a8aeedd491 Mon Sep 17 00:00:00 2001 From: Filip Michalsky Date: Sat, 29 Jul 2023 13:47:58 -0400 Subject: [PATCH 3/3] up changelog --- CHANGELOG.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c8e637e9..3b71a0df 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,9 @@ Updates to the SalesGPT project: Building the world's best AI Sales Agents. +July 29, 2023 +------------- +Version 0.0.5 +- Minor update, remove unneccesary verbosity from `SalesGPT.from_llm` method. July 15, 2023 -------------