Skip to content

Commit

Permalink
feat(cookbooks): model changed to gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedantsahai18 committed Oct 10, 2024
1 parent a96d1a5 commit a300068
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cookbooks/05-Basic_Agent_Creation_and_Interaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
agent_id=AGENT_UUID,
name=name,
about=about,
model="gpt-4-turbo",
model="gpt-4o",
)

print(f"Agent created with ID: {agent.id}")
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/06-Designing_Multi-Step_Tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
agent_id=AGENT_UUID,
name=name,
about=about,
model="gpt-4-turbo",
model="gpt-4o",
)

# Add a web search tool to the agent
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/07-Integrating_External_Tools_and_APIs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
agent_id=AGENT_UUID,
name=name,
about=about,
model="gpt-4-turbo",
model="gpt-4o",
)

# Defining a Task with various step types
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/08-Managing_Persistent_Sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
agent_id=AGENT_UUID,
name="Session Manager",
about="An AI agent specialized in managing persistent sessions and context.",
model="gpt-4-turbo",
model="gpt-4o",
)

# Defining a task for managing user context
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/09-User_Management_and_Personalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
agent_id=AGENT_UUID,
name="Personalization Assistant",
about="An AI agent specialized in user management and personalized content recommendations.",
model="gpt-4-turbo",
model="gpt-4o",
)

# Defining a task for user registration and profile creation
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/11-Advanced_Chat_Interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
agent_id=AGENT_UUID,
name="Advanced Chat Assistant",
about="An AI agent capable of handling complex conversations with context management and external integrations.",
model="gpt-4-turbo",
model="gpt-4o",
)

# Add a web search tool to the agent
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/12-Monitoring_Task_Executions.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
agent_id=AGENT_UUID,
name="Task Execution Monitor",
about="An AI agent designed to monitor and manage complex task executions.",
model="gpt-4-turbo",
model="gpt-4o",
)

# Defining a multi-step task that simulates a complex workflow
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/13-Error_Handling_and_Recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
agent_id=AGENT_UUID,
name="Error Handler",
about="An AI agent specialized in demonstrating error handling and recovery mechanisms.",
model="gpt-4-turbo",
model="gpt-4o",
)

# Defining a task with potential errors and recovery mechanisms
Expand Down

0 comments on commit a300068

Please sign in to comment.