Spaces:
Runtime error
Runtime error
AlbertoFH98
commited on
Commit
·
e90fae7
1
Parent(s):
758f33e
Update app.py
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ RESPUESTA: """
|
|
190 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
191 |
with st.chat_message("assistant"):
|
192 |
if 'GPT' not in genre:
|
193 |
-
llm_response
|
194 |
llm_response = utils.process_llm_response(llm_response, nlp)
|
195 |
st.markdown(llm_response)
|
196 |
start_time_str_list = []; start_time_seconds_list = []; end_time_seconds_list = []
|
|
|
190 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
191 |
with st.chat_message("assistant"):
|
192 |
if 'GPT' not in genre:
|
193 |
+
llm_response = qa_chain(prompt)
|
194 |
llm_response = utils.process_llm_response(llm_response, nlp)
|
195 |
st.markdown(llm_response)
|
196 |
start_time_str_list = []; start_time_seconds_list = []; end_time_seconds_list = []
|