ysharma HF staff commited on
Commit
8239465
1 Parent(s): 44987aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -15
app.py CHANGED
@@ -1,20 +1,8 @@
1
- import random
2
  import gradio as gr
3
 
4
- def alternatingly_agree(message, history):
5
- if len(history) % 2 == 0:
6
- return f"Yes, I do think that '{message}'"
7
- else:
8
- return "I don't think so"
9
-
10
- placeholder = """
11
- <img src="gemma_lockup_vertical_full-color_rgb.png" style="width:40%">
12
- <b>CodeGemma-7B-IT</b>
13
- """
14
-
15
- #chat = gr.Chatbot(placeholder=placeholder)
16
  with gr.Blocks() as demo:
17
- gr.Image(value="gemma_lockup_vertical_full-color_rgb.png")
18
- #gr.ChatInterface(alternatingly_agree, chatbot=chat, fill_height=True )
 
19
 
20
  demo.launch()
 
 
1
  import gradio as gr
2
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  with gr.Blocks() as demo:
4
+ with gr.Row():
5
+ gr.Image(value="gemma_lockup_vertical_full-color_rgb.png")
6
+ gr.Image(value="Meta_lockup_positive primary_RGB.png")
7
 
8
  demo.launch()