From 34c13dd130ee979033c285b6891aa783da31e32c Mon Sep 17 00:00:00 2001 From: Sunwu Park <52268188+sunwupark@users.noreply.github.com> Date: Wed, 29 May 2024 11:53:30 +0900 Subject: [PATCH] fix: fixed typo in step-class.mdx --- api-reference/step-class.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/step-class.mdx b/api-reference/step-class.mdx index 8d5ea91..0dd634b 100644 --- a/api-reference/step-class.mdx +++ b/api-reference/step-class.mdx @@ -40,7 +40,7 @@ The `Step` class is a Python Context Manager that can be used to create steps in import chainlit as cl @cl.on_message -async def main():e +async def main(): async with cl.Step(name="Test") as step: # Step is sent as soon as the context manager is entered step.input = "hello"