4lli39421 commited on
Commit
ee61e04
·
verified ·
1 Parent(s): 78cc306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -99,7 +99,8 @@ if st.button("Get Response"):
99
  model_entry = model_map[model_choice]
100
  answer = query_model(model_entry, user_question)
101
  st.markdown("### 🧠 Response:")
102
- st.markdown(f"```text\n{answer}\n```")
 
103
  except Exception as e:
104
  st.error(f"❌ Error: {e}")
105
 
 
99
  model_entry = model_map[model_choice]
100
  answer = query_model(model_entry, user_question)
101
  st.markdown("### 🧠 Response:")
102
+ st.text_area("💬 Response from FinGPT:", value=answer, height=200, disabled=True)
103
+
104
  except Exception as e:
105
  st.error(f"❌ Error: {e}")
106