awacke1 commited on
Commit
2fe3b72
·
1 Parent(s): 3d7d415

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -144,6 +144,7 @@ def chat_with_model(prompt, document_section, model_choice='gpt-3.5-turbo'):
144
  chunk_message = chunk['choices'][0]['delta'] # extract the message
145
  collected_messages.append(chunk_message) # save the message
146
  content=chunk["choices"][0].get("delta",{}).get("content")
 
147
  st.write(f'*{content}*')
148
  # st.write(f"Full response received {chunk_time:.2f} seconds after request")
149
  full_reply_content = ''.join([m.get('content', '') for m in collected_messages])
 
144
  chunk_message = chunk['choices'][0]['delta'] # extract the message
145
  collected_messages.append(chunk_message) # save the message
146
  content=chunk["choices"][0].get("delta",{}).get("content")
147
+ content=str(content).replace('\n',' ')
148
  st.write(f'*{content}*')
149
  # st.write(f"Full response received {chunk_time:.2f} seconds after request")
150
  full_reply_content = ''.join([m.get('content', '') for m in collected_messages])