vinhnx90 commited on
Commit
d036875
1 Parent(s): e698d82

Fix runtime error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -112,7 +112,7 @@ if uploaded_files:
112
 
113
  if user_query := st.chat_input(
114
  placeholder="Ask me anything!",
115
- disabled=(not openai_api_key and not result_retriever),
116
  ):
117
  st.chat_message("user").write(user_query)
118
 
 
112
 
113
  if user_query := st.chat_input(
114
  placeholder="Ask me anything!",
115
+ disabled=(not openai_api_key),
116
  ):
117
  st.chat_message("user").write(user_query)
118