Просмотр исходного кода

适配外部机器人[新增聊天接口]

liangxunge месяцев назад: 2
Родитель
Сommit
fef42b3062
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      api/controllers/service_api/app/completion.py

+ 2 - 2
api/controllers/service_api/app/completion.py

@@ -1,11 +1,11 @@
 import json
 import logging
-from typing import Generator
+from collections.abc import Generator
 
 import requests
 from flask import request
 from flask_restful import Resource, reqparse  # type: ignore
-from werkzeug.exceptions import InternalServerError, NotFound, BadRequest
+from werkzeug.exceptions import BadRequest, InternalServerError, NotFound
 
 import services
 from controllers.service_api import api