YingxuHe's picture
Update app.py
d672b08 verified
raw
history blame contribute delete
406 Bytes
import os
import streamlit as st
import streamlit.components.v1 as components
from pages import *
def main():
## Set Streamlit configuration
st.set_page_config(page_title='MERaLiON-AudioLLM', page_icon = "πŸ”₯", layout='wide')
st.markdown('<style>' + open('./style/sidebar_style.css').read() + '</style>', unsafe_allow_html=True)
audio_llm()
if __name__ == '__main__':
main()