Spaces:
Runtime error
Runtime error
File size: 225 Bytes
8de99db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from asyncio import gather
@simple
def outline():
return "What is the outline?"
@composite
async def story(bot: Bot):
calls = [bot(outline()), bot(characters())]
outline, characters = gather([calls])
|