nazneen commited on
Commit
0adb712
1 Parent(s): 32f2a41

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -81,8 +81,16 @@ async def judge_reliability(input_style, document, conversation, claim, question
81
 
82
  # Create the interface using gr.Blocks
83
  with gr.Blocks() as demo:
 
 
 
 
 
 
 
 
84
  with gr.Row():
85
- input_style_dropdown = gr.Dropdown(label="Input Style", choices=["Conv", "NLI", "QA format"], value="Conv", visible=True)
86
 
87
  with gr.Row():
88
  document_input = gr.Textbox(label="Document", lines=5, visible=True, value="Alex is a good boy. He stays in California")
 
81
 
82
  # Create the interface using gr.Blocks
83
  with gr.Blocks() as demo:
84
+ gr.Markdown(
85
+ """
86
+ <p style='text-align: center;color:white'>
87
+ Test Collinear Veritas and compare with Lynx 8B using the sample conversations below or type your own.
88
+ Collinear Veritas can work with any input formats including NLI, QA, and dialog.
89
+ </p>
90
+ """
91
+ )
92
  with gr.Row():
93
+ input_style_dropdown = gr.Dropdown(label="Input Style", choices=["Dialog", "NLI", "QA format"], value="Dialog", visible=True)
94
 
95
  with gr.Row():
96
  document_input = gr.Textbox(label="Document", lines=5, visible=True, value="Alex is a good boy. He stays in California")