leolaish commited on
Commit
87b49fb
·
verified ·
1 Parent(s): d03fba6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -577,13 +577,13 @@ def generate(message, temperature):
577
  delta = chunk_json["choices"][0]["delta"]
578
  content = delta["content"] if "content" in delta else ""
579
  if content != "":
580
- yield content, False
581
- except json.JSONDecodeError as e:
582
- print(f"func: generate error occurred\nchunk:{chunk}\nerror:{e}")
583
- raise e
584
- except KeyError as e:
585
- print(f"func: generate error occurred\nchunk:{chunk}\nerror:{e}")
586
- raise e
587
 
588
  def get_majority_text(data):
589
  from collections import Counter
 
577
  delta = chunk_json["choices"][0]["delta"]
578
  content = delta["content"] if "content" in delta else ""
579
  if content != "":
580
+ yield content, False
581
+ except json.JSONDecodeError as e:
582
+ print(f"func: generate error occurred\nchunk:{chunk}\nerror:{e}")
583
+ raise e
584
+ except KeyError as e:
585
+ print(f"func: generate error occurred\nchunk:{chunk}\nerror:{e}")
586
+ raise e
587
 
588
  def get_majority_text(data):
589
  from collections import Counter