Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def create_deepseek_interface():
|
|
12 |
)
|
13 |
|
14 |
# Sidebar with Model Information and Login
|
15 |
-
with gr.Sidebar(
|
16 |
gr.Markdown(
|
17 |
"""
|
18 |
## π Access Control
|
@@ -30,8 +30,7 @@ def create_deepseek_interface():
|
|
30 |
with gr.Row():
|
31 |
button = gr.LoginButton(
|
32 |
"Sign In",
|
33 |
-
variant="primary"
|
34 |
-
icon="π€"
|
35 |
)
|
36 |
|
37 |
# Model Details Section
|
@@ -45,7 +44,7 @@ def create_deepseek_interface():
|
|
45 |
)
|
46 |
|
47 |
# Main Content Area
|
48 |
-
with gr.Column(
|
49 |
# Placeholder for model interaction
|
50 |
chatbot = gr.Chatbot(
|
51 |
height=500,
|
|
|
12 |
)
|
13 |
|
14 |
# Sidebar with Model Information and Login
|
15 |
+
with gr.Sidebar():
|
16 |
gr.Markdown(
|
17 |
"""
|
18 |
## π Access Control
|
|
|
30 |
with gr.Row():
|
31 |
button = gr.LoginButton(
|
32 |
"Sign In",
|
33 |
+
variant="primary"
|
|
|
34 |
)
|
35 |
|
36 |
# Model Details Section
|
|
|
44 |
)
|
45 |
|
46 |
# Main Content Area
|
47 |
+
with gr.Column():
|
48 |
# Placeholder for model interaction
|
49 |
chatbot = gr.Chatbot(
|
50 |
height=500,
|