leolaish commited on
Commit
0d4014c
·
verified ·
1 Parent(s): d592437

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -565,8 +565,8 @@ def generate(message, temperature):
565
 
566
  # The reason why the library method is not used here is that if an error occurs,
567
  # the returned data will not be a stream, and using the official library will result in an error.
568
- for chunk in str(response).encode():
569
- chunk = chunk.decode("utf-8")
570
  data_chunks = parse_data_chunk(chunk)
571
  try:
572
  for data_chunk in data_chunks:
 
565
 
566
  # The reason why the library method is not used here is that if an error occurs,
567
  # the returned data will not be a stream, and using the official library will result in an error.
568
+ for chunk in response:
569
+ chunk = chunk.decode("utf-8") if isinstance(chunk, bytes) else chunk
570
  data_chunks = parse_data_chunk(chunk)
571
  try:
572
  for data_chunk in data_chunks: