Text-to-Meow / app.py
Scrya's picture
remove separate launch line
ecbc9c8
raw
history blame contribute delete
534 Bytes
import logging
import gradio as gr
from config import BaseConfig
from predict import inputs, outputs, predict
if __name__ == "__main__":
logging.basicConfig(format="[%(asctime)s] %(levelname)s: %(message)s")
config = BaseConfig()
app = gr.Interface(
predict,
inputs=inputs,
outputs=outputs,
title="Text-to-Meow",
description="Ever thought of whether your cat understands your words? It no longer matters! Now you get to speak in their language!",
).launch()