eaglelandsonce commited on
Commit
1a0f69c
·
verified ·
1 Parent(s): bddf6d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -300,7 +300,8 @@ with tab1:
300
  # Run the crewai process
301
  result = crewai_process(input_topic)
302
  # Display the result
303
- st.session_state.text_block = st.text_area("Output", value=result, height=300)
 
304
 
305
  # Tab 2: Data Visualization
306
  with tab2:
 
300
  # Run the crewai process
301
  result = crewai_process(input_topic)
302
  # Display the result
303
+ st.session_state.text_block = result
304
+ st.text_area("Output", value=st.session_state.text_block, height=300)
305
 
306
  # Tab 2: Data Visualization
307
  with tab2: