apehex
Remove useless arg.
801b1f8
raw
history blame contribute delete
492 Bytes
import gradio
import psaiops.common.style
import psaiops.common.tokenizer
import psaiops.combine.app as app
# META #########################################################################
_TOKENIZER = psaiops.common.tokenizer.get_tokenizer(name=app.MODEL)
# MAIN #########################################################################
demo = app.create_app(tabulate=app.update_table_data(tokenizer=_TOKENIZER))
demo.launch(theme=gradio.themes.Soft(), css=psaiops.common.style.BUTTON)