def on_app_load()

in app/app.py [0:0]


    def on_app_load():
        global LANGUAGES
        LANGUAGES = load_languages()
        language_choices = list(LANGUAGES.keys())
        
        return str(uuid.uuid4()), gr.Dropdown(choices=language_choices, value=language_choices[0])