Skip to content

Commit

Permalink
Fix async issues with write a book flow
Browse files Browse the repository at this point in the history
  • Loading branch information
bhancockio committed Nov 1, 2024
1 parent eedce16 commit 5f0e6af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions write_a_book_with_flows/src/write_a_book_with_flows/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5f0e6af

Please sign in to comment.