Spaces:
Runtime error
Runtime error
from asyncio import gather | |
def outline(): | |
return "What is the outline?" | |
async def story(bot: Bot): | |
calls = [bot(outline()), bot(characters())] | |
outline, characters = gather([calls]) | |