Skip to content

Commit

Permalink
v2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed May 5, 2024
1 parent 5a9f39e commit 3126f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cookbook/assistants/movie_assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ class MovieScript(BaseModel):
movie_assistant = Assistant(
description="You help write movie scripts.",
output_model=MovieScript,
debug_mode=True,
# debug_mode=True,
)
pprint(movie_assistant.run("New York"))
2 changes: 1 addition & 1 deletion phi/assistant/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class Assistant(BaseModel):
# Metadata associated with the assistant tasks
task_data: Optional[Dict[str, Any]] = None

# -*- Assistant Workflow
# -*- Assistant Team
team: Optional[List["Assistant"]] = None
# When the assistant is part of a team, this is the role of the assistant in the team
role: Optional[str] = None
Expand Down

0 comments on commit 3126f8d

Please sign in to comment.