ysharma HF staff commited on
Commit
31c147a
1 Parent(s): 1fc0a63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -100,7 +100,7 @@ def chat_llama3_8b(message: str,
100
 
101
 
102
  # Gradio block
103
- chatbot=gr.Chatbot(height=500, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
104
 
105
  with gr.Blocks(fill_height=True, css=css) as demo:
106
 
@@ -126,8 +126,12 @@ with gr.Blocks(fill_height=True, css=css) as demo:
126
  render=False ),
127
  ],
128
  examples=[
129
- ["Write a Python function to calculate the nth fibonacci number."],
130
- ['How to setup a human base on Mars? Explain in short.']
 
 
 
 
131
  ],
132
  cache_examples=False,
133
  )
 
100
 
101
 
102
  # Gradio block
103
+ chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
104
 
105
  with gr.Blocks(fill_height=True, css=css) as demo:
106
 
 
126
  render=False ),
127
  ],
128
  examples=[
129
+ ["The odd numbers in this group add up to an even number: 15, 32, 5, 13, 82, 7, 1."],
130
+ ['How to setup a human base on Mars? Give short answer.'],
131
+ ['Explain theory of relativity to me like I’m 8 years old.'],
132
+ ['What is 9,000 * 9,000?'],
133
+ ['Write a pun-filled happy birthday message to my friend Alex.'],
134
+ ['Justify why a penguin might make a good king of the jungle.']
135
  ],
136
  cache_examples=False,
137
  )