Spaces:
Running
Running
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() | |