Nguyen Quang Thiep
Nguyen Quang Thiep
Hello, I would like to use OpenAIAssistantRunnable with langgraph, but I faced an error. I create an assistant as following: `assistant = OpenAIAssistantRunnable.create_assistant( name=name, instructions=instructions, tools=tools, model="gpt-4-1106-preview", assistant_id="asst_kqRc9iTKmgv3j5Usr0ulcYSf", streaming=True )`...
**Describe the bug** I add Action on User message which user inputted, but Action does not display **To Reproduce** ```python @cl.on_message async def on_message(message: cl.Message): message.actions = [ cl.Action( name="human_action_button",...