You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ./runtime/prompty/prompty/openai/executer.py, invoke_async () method is declared with async def, but it calls the synchronous method self.invoke(data) without an await.
This does not make the operation asynchronous.