File size: 406 Bytes
451756f
 
 
 
 
0d3a8ac
 
b72fad8
 
 
d672b08
 
b72fad8
7840695
0d3a8ac
b72fad8
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()