Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cli_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def run(self, user_input):


# Runs the CLI agent example using the provided Nexus package ID.
def run_cli_cluster_example(client, package_id, model_id, mode_owner_cap):
def run_cli_cluster_example(client, package_id, model_id, model_owner_cap):
cluster_name, cluster_description = get_user_input_for_cluster()

num_agents = int(input("How many agents would you like to define? "))
Expand Down
4 changes: 2 additions & 2 deletions examples/ig_post_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def run(self):


# Runs the Instagram Post Planner example using the provided Nexus package ID.
def run_ig_post_planner_example(client, package_id, model_id, mode_owner_cap):
def run_ig_post_planner_example(client, package_id, model_id, model_owner_cap):
print("## Welcome to the Instagram Post Planner")
print("-------------------------------")
product_website = input(
Expand All @@ -196,7 +196,7 @@ def run_ig_post_planner_example(client, package_id, model_id, mode_owner_cap):
)

planner = InstagramPostPlanner(
client, package_id, model_id, mode_owner_cap, product_website, product_details
client, package_id, model_id, model_owner_cap, product_website, product_details
)
result = planner.run()

Expand Down
4 changes: 2 additions & 2 deletions examples/trip_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def run(self):


# Runs the Trip Planner example using the provided Nexus package ID.
def run_trip_planner_example(client, package_id, model_id, mode_owner_cap):
def run_trip_planner_example(client, package_id, model_id, model_owner_cap):
print(f"{Fore.CYAN}## Welcome to Trip Planner using Nexus{Style.RESET_ALL}")
print(f"{Fore.YELLOW}-------------------------------{Style.RESET_ALL}")

Expand All @@ -190,7 +190,7 @@ def run_trip_planner_example(client, package_id, model_id, mode_owner_cap):
client,
package_id,
model_id,
mode_owner_cap,
model_owner_cap,
origin,
cities,
date_range,
Expand Down