Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
iface = gr.Interface(fn=deine_funktion, inputs=dein_input, outputs=dein_output)
|
5 |
-
iface.theme = './style.css'
|
6 |
-
iface.launch()
|
7 |
-
|
8 |
title = "Prompt Dich weiter mit Einfach.Prompt"
|
9 |
description = """
|
10 |
<p>
|
@@ -26,4 +22,5 @@ def generate_prompt(prompt):
|
|
26 |
interface = gr.Interface(fn=generate_prompt, inputs="text", outputs="text", title="💯 Einfach.Prompt Generator 💯 made with ",
|
27 |
description="Wunsch prompt eingeben z.b. Web Designer und einen prompt für Chat.GPT erstellen lassen")
|
28 |
|
|
|
29 |
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
|
|
|
|
|
|
|
|
4 |
title = "Prompt Dich weiter mit Einfach.Prompt"
|
5 |
description = """
|
6 |
<p>
|
|
|
22 |
interface = gr.Interface(fn=generate_prompt, inputs="text", outputs="text", title="💯 Einfach.Prompt Generator 💯 made with ",
|
23 |
description="Wunsch prompt eingeben z.b. Web Designer und einen prompt für Chat.GPT erstellen lassen")
|
24 |
|
25 |
+
interface.theme = './style.css' # Fügen Sie den Pfad zu Ihrer CSS-Datei hinzu
|
26 |
interface.launch()
|