|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
|
from swarms import Agent
|
|
|
|
|
from swarms.utils.function_caller_model import OpenAIFunctionCaller
|
|
|
|
|
from swarms.utils.litellm_wrapper import LiteLLM
|
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
from swarms.structs.conversation import Conversation
|
|
|
|
|
|
|
|
|
@ -180,8 +180,9 @@ Maintain a warm, friendly, and authentic presence while ensuring all interaction
|
|
|
|
|
# Initialize Agents using swarms
|
|
|
|
|
########################################
|
|
|
|
|
|
|
|
|
|
model = OpenAIFunctionCaller(
|
|
|
|
|
base_model=CallLog,
|
|
|
|
|
model = LiteLLM(
|
|
|
|
|
model_name="gpt-4o",
|
|
|
|
|
response_format=CallLog,
|
|
|
|
|
system_prompt=MASTER_AGENT_SYS_PROMPT,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|