Skip to content

Commit 8f2063f

Browse files
Update nextpy/ai/agent/userproxy_agent.py
using async way of receiving user input Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 77a465c commit 8f2063f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nextpy/ai/agent/userproxy_agent.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,5 @@ async def a_receive_user_input(self):
7575
:return: The user input.
7676
:rtype: str
7777
"""
78-
return input('Provide feedback to chat_manager:')
78+
import asyncio
79+
return await asyncio.to_thread(input, 'Provide feedback to chat_manager:')

0 commit comments

Comments
 (0)