소스 검색

Fix uploading chat log in --chat mode

oobabooga 3 년 전
부모
커밋
3121f4788e
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      server.py

+ 4 - 1
server.py

@@ -374,7 +374,10 @@ if args.chat or args.cai_chat:
 
         save_btn.click(save_history, inputs=[], outputs=[download])
         upload.upload(load_history, [upload], [])
-        upload.upload(redraw_html, [name1, name2], [display1])
+        if args.cai_chat:
+            upload.upload(redraw_html, [name1, name2], [display1])
+        else:
+            upload.upload(lambda : history, [], [display1])
 
 
 elif args.notebook: