MaxLSB commited on
Commit
49b3d50
·
verified ·
1 Parent(s): b7b0fd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -64,18 +64,18 @@ def update_model(model_name):
64
 
65
  # Gradio UI
66
  with gr.Blocks(title="LeCarnet - Chat Interface") as demo:
67
- # Top bar with logo and title
68
- with gr.Row():
69
- with gr.Column(min_width=100):
70
- gr.Image(
71
- value="media/le-carnet.png",
72
- label="Model Logo",
73
- height=60,
74
- width=60,
75
- interactive=False
76
- )
77
- with gr.Column():
78
- gr.Markdown("# LeCarnet")
79
 
80
  # Main layout
81
  with gr.Row():
 
64
 
65
  # Gradio UI
66
  with gr.Blocks(title="LeCarnet - Chat Interface") as demo:
67
+ with gr.Row(equal_height=True):
68
+ gr.Image(
69
+ value="media/le-carnet.png",
70
+ label=None,
71
+ height=60,
72
+ width=60,
73
+ interactive=False
74
+ )
75
+ gr.Markdown(
76
+ "<h1 style='margin:0; display:inline; vertical-align:top;'>LeCarnet</h1>",
77
+ label=None
78
+ )
79
 
80
  # Main layout
81
  with gr.Row():