proxy后向兼容,修复部分报错

This commit is contained in:
LINSTCL
2023-03-03 15:20:42 +08:00
parent c57642bd4e
commit c23d114094
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -45,8 +45,9 @@ class ModelRequest():
def request(self, **kwargs):
if self.proxy != None: #异步请求
loop = asyncio.new_event_loop()
self.runtime = threading.Thread(
target=asyncio.run,
target=loop.run_until_complete,
args=(self.__a_request__(**kwargs),)
)
self.runtime.start()