Skip to content

Commit

Permalink
Update streamlit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chourmovs authored Oct 14, 2024
1 parent c8dac78 commit b078461
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions webapp/streamlit.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@
st.session_state.console_output = "Démarrage de l'analyse Blissify...\n"
sse_url = "http://localhost:3000/blissify-update"
response = requests.get(sse_url, stream=True)

# Create an empty container for the console output
console_output_container = st.empty()

for line in response.iter_lines():
if line:
Expand Down

0 comments on commit b078461

Please sign in to comment.