minichain / story /app.py
srush's picture
srush HF staff
Upload with huggingface_hub
2becd91
raw
history blame
225 Bytes
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])