向chatbot中添加错误信息
(chatbot:ChatBotWithCookies, history:list, a:str, b:str)
| 350 | |
| 351 | |
| 352 | def report_exception(chatbot:ChatBotWithCookies, history:list, a:str, b:str): |
| 353 | """ |
| 354 | 向chatbot中添加错误信息 |
| 355 | """ |
| 356 | chatbot.append((a, b)) |
| 357 | history.extend([a, b]) |
| 358 | |
| 359 | |
| 360 | def find_free_port()->int: |
no outgoing calls
no test coverage detected