From 01685d6eb9d50e77320cbaa2721fe6b8cf1fed6a Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 16 Apr 2024 22:46:25 -0400 Subject: [PATCH] update guestbook --- tests/flows/test_sign_guestbook.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/flows/test_sign_guestbook.py b/tests/flows/test_sign_guestbook.py index 4321bf79..b3ac7479 100644 --- a/tests/flows/test_sign_guestbook.py +++ b/tests/flows/test_sign_guestbook.py @@ -1,5 +1,4 @@ -from control_flow import Agent, run_ai -from control_flow.core.flow import ai_flow +from control_flow import Agent, ai_flow, run_ai # define assistants @@ -34,7 +33,7 @@ def guestbook_flow(): sign their names for the task to be complete. You can read the sign to see if that has happened yet. You can not sign for another assistant. """, - assistants=[a, b, c], + agents=[a, b, c], tools=[sign, view_guestbook], )