Skip to content

Commit

Permalink
Merge pull request #24 from filip-michalsky/readme-update
Browse files Browse the repository at this point in the history
update readme with new video and remove verbosity from SalesGPT init method
  • Loading branch information
filip-michalsky authored Jul 29, 2023
2 parents b100605 + 4672896 commit dc80a2e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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
-------------
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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? 🤔

<i>Crusty AI Sales Agent Phone Call Demo - Powered by SalesGPT</i>

<div>
<a href="https://www.loom.com/share/f0fac42954904471b266980e4948b07d">
<img style="max-width:300px;" src="https://cdn.loom.com/sessions/thumbnails/f0fac42954904471b266980e4948b07d-with-play.gif">
</a>
</div>

https://github.com/filip-michalsky/SalesGPT/assets/31483888/2b13ba28-4e07-41dc-a8bf-4084d25247ca

## Quickstart

Expand Down
1 change: 0 additions & 1 deletion salesgpt/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion salesgpt/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "0.0.4"
__version__ = "0.0.5"

0 comments on commit dc80a2e

Please sign in to comment.