burmese-gpt / space.py
zaibutcooler's picture
continuing project
19307df
raw
history blame
280 Bytes
import streamlit as st
def main():
st.title("Burmese GPT")
video_source = st.sidebar.radio("Select feature:", ("Audio Generator", "Text Predictor",))
if video_source == "Audio Generator":
pass
else:
pass
if __name__ == "__main__":
main()