Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -14,6 +14,9 @@ with col1:
|
|
| 14 |
with col2:
|
| 15 |
raikage_selected = st.button("⚡ Raikage")
|
| 16 |
|
|
|
|
|
|
|
|
|
|
| 17 |
# Retrieve the API key from Streamlit secrets
|
| 18 |
GOOGLE_API_KEY = st.secrets["GEMINI_API_KEY"]
|
| 19 |
|
|
|
|
| 14 |
with col2:
|
| 15 |
raikage_selected = st.button("⚡ Raikage")
|
| 16 |
|
| 17 |
+
mode = st.radio("Choose a mode:", ["Shinobi", "Raikage"])
|
| 18 |
+
st.write(f"You selected: {mode}")
|
| 19 |
+
|
| 20 |
# Retrieve the API key from Streamlit secrets
|
| 21 |
GOOGLE_API_KEY = st.secrets["GEMINI_API_KEY"]
|
| 22 |
|