miaoge commited on
Commit
23ebbfc
Β·
verified Β·
1 Parent(s): 86cb57d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -12,7 +12,7 @@ def create_deepseek_interface():
12
  )
13
 
14
  # Sidebar with Model Information and Login
15
- with gr.Sidebar(variant="compact"):
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(variant="panel"):
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,