Spaces:
Runtime error
Runtime error
Dagfinn1962
commited on
Commit
•
3da0d6b
1
Parent(s):
41e7b54
Update app.py
Browse files
app.py
CHANGED
@@ -4,16 +4,16 @@ import logging
|
|
4 |
import gradio as gr
|
5 |
|
6 |
|
7 |
-
def my_function():
|
8 |
-
|
9 |
|
10 |
-
iface = gr.Interface(fn=my_function, inputs=[], outputs=[], layout="vertical")
|
11 |
|
12 |
-
with gr.Column():
|
13 |
-
gr.Textbox(label="Visible Element", placeholder="Enter text here", visible=True)
|
14 |
-
gr.Textbox(label="Hidden Element", placeholder="Enter text here", visible=False)
|
15 |
|
16 |
-
iface.launch()
|
17 |
|
18 |
from src.llm_boilers import llm_boiler
|
19 |
|
|
|
4 |
import gradio as gr
|
5 |
|
6 |
|
7 |
+
#def my_function():
|
8 |
+
# return "This is a hidden element"
|
9 |
|
10 |
+
#iface = gr.Interface(fn=my_function, inputs=[], outputs=[], layout="vertical")
|
11 |
|
12 |
+
#with gr.Column():
|
13 |
+
#gr.Textbox(label="Visible Element", placeholder="Enter text here", visible=True)
|
14 |
+
#gr.Textbox(label="Hidden Element", placeholder="Enter text here", visible=False)
|
15 |
|
16 |
+
#iface.launch()
|
17 |
|
18 |
from src.llm_boilers import llm_boiler
|
19 |
|