Yuvalamitay commited on
Commit
db4cb4b
·
verified ·
1 Parent(s): 4169664

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -106,10 +106,10 @@ chat_theme = gr.themes.Soft(
106
 
107
  with gr.Blocks(theme=chat_theme) as chatbot:
108
  with gr.Row():
109
- with gr.Column():
110
  gr.Markdown("""# TV Bot from RecoNext""")
111
  gr.Markdown("""### Hey! I’m your TV bot \nI help you find your next favorite TV show based on your age and taste. Just tell me what you're into!""")
112
- with gr.Column():
113
  gr.Image(
114
  value="reconext_logo.png",
115
  show_label=False,
@@ -117,6 +117,7 @@ with gr.Blocks(theme=chat_theme) as chatbot:
117
  show_download_button = False)
118
  with gr.Row():
119
  streaming_platforms = gr.CheckboxGroup(['Paramount+', 'HBO Max','Netflix', 'Prime Video', 'Hulu','Disney+'], label ='Only include from: ', info= 'Choose one or more')
 
120
  gr.ChatInterface(
121
  fn = respond,
122
  additional_inputs = [streaming_platforms],
 
106
 
107
  with gr.Blocks(theme=chat_theme) as chatbot:
108
  with gr.Row():
109
+ with gr.Column(size=3):
110
  gr.Markdown("""# TV Bot from RecoNext""")
111
  gr.Markdown("""### Hey! I’m your TV bot \nI help you find your next favorite TV show based on your age and taste. Just tell me what you're into!""")
112
+ with gr.Column(size=1):
113
  gr.Image(
114
  value="reconext_logo.png",
115
  show_label=False,
 
117
  show_download_button = False)
118
  with gr.Row():
119
  streaming_platforms = gr.CheckboxGroup(['Paramount+', 'HBO Max','Netflix', 'Prime Video', 'Hulu','Disney+'], label ='Only include from: ', info= 'Choose one or more')
120
+ with gr.Row():
121
  gr.ChatInterface(
122
  fn = respond,
123
  additional_inputs = [streaming_platforms],