We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a465c commit 8f2063fCopy full SHA for 8f2063f
nextpy/ai/agent/userproxy_agent.py
@@ -75,4 +75,5 @@ async def a_receive_user_input(self):
75
:return: The user input.
76
:rtype: str
77
"""
78
- return input('Provide feedback to chat_manager:')
+ import asyncio
79
+ return await asyncio.to_thread(input, 'Provide feedback to chat_manager:')
0 commit comments