Spaces:
Sleeping
Sleeping
Enabling image hints only
Browse files
app.py
CHANGED
@@ -145,12 +145,15 @@ st.title("Generative AI GeoGuesser 🌎")
|
|
145 |
|
146 |
st.markdown("### Guess the country based on hints generated by AI")
|
147 |
|
|
|
|
|
148 |
col1, col2 = st.columns([2, 1])
|
149 |
|
150 |
with col1:
|
151 |
st.session_state["hint_types"] = st.multiselect(
|
152 |
"Chose which hint types you want",
|
153 |
-
[x.value for x in HintType],
|
|
|
154 |
default=st.session_state["hint_types"],
|
155 |
)
|
156 |
|
|
|
145 |
|
146 |
st.markdown("### Guess the country based on hints generated by AI")
|
147 |
|
148 |
+
st.markdown("(Only working with image hints for performance reasons)")
|
149 |
+
|
150 |
col1, col2 = st.columns([2, 1])
|
151 |
|
152 |
with col1:
|
153 |
st.session_state["hint_types"] = st.multiselect(
|
154 |
"Chose which hint types you want",
|
155 |
+
# [x.value for x in HintType],
|
156 |
+
[HintType.IMAGE.value],
|
157 |
default=st.session_state["hint_types"],
|
158 |
)
|
159 |
|