agency / app.py
Zai
huggingface sync
6afffd7
raw
history blame
No virus
244 Bytes
import streamlit as st
def main():
st.title("Agency xD")
feature = st.sidebar.radio(
"Select feature:",
(
"Feature One",
"Feature Two",
),
)
if __name__ == "__main__":
main()