Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -17,6 +17,13 @@ with col2:
|
|
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 |
|
|
|
17 |
mode = st.radio("Choose a mode:", ["Shinobi", "Raikage"])
|
18 |
st.write(f"You selected: {mode}")
|
19 |
|
20 |
+
tab1, tab2 = st.tabs(["Shinobi", "Raikage"])
|
21 |
+
with tab1:
|
22 |
+
st.write("Shinobi Mode")
|
23 |
+
with tab2:
|
24 |
+
st.write("Raikage Mode")
|
25 |
+
|
26 |
+
|
27 |
# Retrieve the API key from Streamlit secrets
|
28 |
GOOGLE_API_KEY = st.secrets["GEMINI_API_KEY"]
|
29 |
|