minichain-story / app.py
srush's picture
Upload with huggingface_hub
8de99db
raw
history blame contribute delete
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])