Former-commit-id: 0a60307a9a37ab9b4eed1494cedadd57b2fb604a
pull/160/head
Kye 2 years ago
parent a8f1607f13
commit 09e0c5712e

@ -17,7 +17,7 @@
#agents
from swarms.swarms.profitpilot import ProfitPilot
from swarms.aot import AoTAgent
from swarms.agents.profitpilot import ProfitPilot
from swarms.agents.aot import AoTAgent
from swarms.agents.multi_modal_agent import MultiModalVisualAgent
from swarms.agents.omni_modal_agent import OmniModalAgent

@ -316,7 +316,7 @@ Previous conversation history:
"""
class SalesGPT(Chain, BaseModel):
class ProfitPilot(Chain, BaseModel):
"""Controller model for the Sales Agent."""
conversation_history: List[str] = []
@ -513,7 +513,7 @@ config = dict(
product_catalog="sample_product_catalog.txt",
)
sales_agent = SalesGPT.from_llm(llm, verbose=False, **config)
sales_agent = ProfitPilot.from_llm(llm, verbose=False, **config)
# init sales agent
sales_agent.seed_agent()

Loading…
Cancel
Save