From 5f0e6af721917c73f0c3fa5406abac18ae70e7a0 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Fri, 1 Nov 2024 10:39:15 -0400 Subject: [PATCH] Fix async issues with write a book flow --- write_a_book_with_flows/src/write_a_book_with_flows/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/write_a_book_with_flows/src/write_a_book_with_flows/main.py b/write_a_book_with_flows/src/write_a_book_with_flows/main.py index a785a9d8..19a325b9 100644 --- a/write_a_book_with_flows/src/write_a_book_with_flows/main.py +++ b/write_a_book_with_flows/src/write_a_book_with_flows/main.py @@ -54,10 +54,10 @@ async def write_chapters(self): tasks = [] async def write_single_chapter(chapter_outline): - output = await ( + output = ( WriteBookChapterCrew() .crew() - .kickoff_async( + .kickoff( inputs={ "goal": self.state.goal, "topic": self.state.topic,