devve1 commited on
Commit
9ee751c
1 Parent(s): cefac05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -436,7 +436,7 @@ if __name__ == '__main__':
436
  if 'chat_id' not in st.session_state:
437
  st.session_state.chat_id = st.selectbox(
438
  label='Choose a conversation',
439
- options=['New Chat'] + list(conversations.keys()),
440
  format_func=lambda x: conversations.get(x, 'New Chat'),
441
  placeholder='New Chat',
442
  )
 
436
  if 'chat_id' not in st.session_state:
437
  st.session_state.chat_id = st.selectbox(
438
  label='Choose a conversation',
439
+ options=[None] + list(conversations.keys()),
440
  format_func=lambda x: conversations.get(x, 'New Chat'),
441
  placeholder='New Chat',
442
  )