Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -111,6 +111,8 @@ if __name__ == "__main__":
|
|
111 |
discord_client = MyClient(intents=intents)
|
112 |
discord_client.run(discord_token)
|
113 |
|
114 |
-
#
|
115 |
-
|
116 |
-
|
|
|
|
|
|
111 |
discord_client = MyClient(intents=intents)
|
112 |
discord_client.run(discord_token)
|
113 |
|
114 |
+
# Gradio μΈν°νμ΄μ€ μ€μ
|
115 |
+
iface = gr.Interface(fn=my_model_function, inputs="text", outputs="image")
|
116 |
+
|
117 |
+
# μΈν°νμ΄μ€ μ€ν, μ€λ₯ 보μ¬μ£Όλ μ΅μ
νμ±ν
|
118 |
+
iface.launch(show_error=True)
|