Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
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=["
|
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")
|