Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def main():
|
|
8 |
|
9 |
with st.form("text_field"):
|
10 |
file = st.file_uploader("Upload image", type=["jpg", "png"] )
|
11 |
-
img = Image.open(
|
12 |
image = st.image(img)
|
13 |
text_input = st.text_input("Enter some question :")
|
14 |
# clicked==True only when the button is clicked
|
|
|
8 |
|
9 |
with st.form("text_field"):
|
10 |
file = st.file_uploader("Upload image", type=["jpg", "png"] )
|
11 |
+
img = Image.open(file)
|
12 |
image = st.image(img)
|
13 |
text_input = st.text_input("Enter some question :")
|
14 |
# clicked==True only when the button is clicked
|