Update app.py
Browse files
app.py
CHANGED
|
@@ -42,6 +42,10 @@ if __name__ == "__main__":
|
|
| 42 |
|
| 43 |
# 03. Gradio UI elements
|
| 44 |
with gr.Blocks() as grBlocks_SentenceSimilarity__MCP_Server:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
with gr.Row():
|
| 46 |
grTextBox_Input_1 = gr.Textbox(label="Text Panel 1", lines=20)
|
| 47 |
grTextBox_Input_2 = gr.Textbox(label="Text Panel 2", lines=20)
|
|
|
|
| 42 |
|
| 43 |
# 03. Gradio UI elements
|
| 44 |
with gr.Blocks() as grBlocks_SentenceSimilarity__MCP_Server:
|
| 45 |
+
gr.Markdown("# Sentence-BERT (sBERT) for Text Similarity using HF Inference Server")
|
| 46 |
+
gr.Markdown("### This MCP-Server works for MCP-Client https://huggingface.co/spaces/Agents-MCP-Hackathon/MCP-Client_SyntheticText_Similarity")
|
| 47 |
+
gr.Markdown("This application calculates sBERT Similarity Score between two Texts")
|
| 48 |
+
|
| 49 |
with gr.Row():
|
| 50 |
grTextBox_Input_1 = gr.Textbox(label="Text Panel 1", lines=20)
|
| 51 |
grTextBox_Input_2 = gr.Textbox(label="Text Panel 2", lines=20)
|