natechenette commited on
Commit
8c2c5ae
·
verified ·
1 Parent(s): 6b1ad61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -286,16 +286,16 @@ def chat_with_weather(message, history):
286
 
287
  # Create the Gradio interface
288
  with gr.Blocks(title="Weather Model Comparison") as demo:
289
- gr.Markdown("# 🌤️ Weather Model Comparison")
290
- gr.Markdown("Compare your fine-tuned weather model with ChatGPT responses")
291
 
292
  with gr.Row():
293
  with gr.Column():
294
- gr.Markdown("### Your Weather Model")
295
- weather_output = gr.Textbox(label="Weather Model Response", lines=5)
296
 
297
  with gr.Column():
298
- gr.Markdown("### ChatGPT Response")
299
  chatgpt_output = gr.Textbox(label="ChatGPT Response", lines=5)
300
 
301
  with gr.Row():
@@ -316,7 +316,7 @@ with gr.Blocks(title="Weather Model Comparison") as demo:
316
  gr.Examples(
317
  examples=examples,
318
  inputs=input_text,
319
- label="Example queries"
320
  )
321
 
322
  # Handle the chat
 
286
 
287
  # Create the Gradio interface
288
  with gr.Blocks(title="Weather Model Comparison") as demo:
289
+ gr.Markdown("# nateAI - Weather")
290
+ gr.Markdown("Compare responses from nateAI to ChatGPT")
291
 
292
  with gr.Row():
293
  with gr.Column():
294
+ gr.Markdown("### nateAI")
295
+ weather_output = gr.Textbox(label="nateAI Response", lines=5)
296
 
297
  with gr.Column():
298
+ gr.Markdown("### gpt-4o-mini")
299
  chatgpt_output = gr.Textbox(label="ChatGPT Response", lines=5)
300
 
301
  with gr.Row():
 
316
  gr.Examples(
317
  examples=examples,
318
  inputs=input_text,
319
+ label="Examples"
320
  )
321
 
322
  # Handle the chat