Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -952,7 +952,7 @@ def create_gradio_interface():
|
|
952 |
return f"Hello {name}, welcome to the Gradio app!"
|
953 |
|
954 |
with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
955 |
-
state = gr.State({'authenticated':
|
956 |
if user_info:
|
957 |
gr.Markdown(f"### Hello, {user_info['name']}! Welcome to the Gradio App")
|
958 |
name = gr.Textbox(label="Enter your name")
|
|
|
952 |
return f"Hello {name}, welcome to the Gradio app!"
|
953 |
|
954 |
with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
955 |
+
state = gr.State({'authenticated': True})
|
956 |
if user_info:
|
957 |
gr.Markdown(f"### Hello, {user_info['name']}! Welcome to the Gradio App")
|
958 |
name = gr.Textbox(label="Enter your name")
|