import streamlit as st from PIL import Image import hopsworks #st.title('Prediction of air quality in Reykjavik, Iceland') picture = Image.open('iceland_picture.jpg') project = hopsworks.login() with gr.Blocks() as demo: gr.Label("Prediction of air quality in Reykjavik, Iceland") gr.Textbox(label='day1') gr.Textbox(label='day2') demo.launch()