pull/55/head
Kye 2 years ago
parent 358d1ea146
commit bb1cb08040

@ -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