Spaces:
Running
Running
Adding markdown links to the front page
Browse files- Gradio_UI.py +6 -5
Gradio_UI.py
CHANGED
@@ -278,10 +278,11 @@ class GradioUI:
|
|
278 |
"""
|
279 |
# Content Agent
|
280 |
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
|
|
285 |
"""
|
286 |
)
|
287 |
stored_messages = gr.State([])
|
@@ -313,7 +314,7 @@ class GradioUI:
|
|
313 |
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
314 |
gr.Markdown(
|
315 |
"""
|
316 |
-
|
317 |
"""
|
318 |
)
|
319 |
|
|
|
278 |
"""
|
279 |
# Content Agent
|
280 |
|
281 |
+
This content agent can check text and classify whether or not it is polite, somewhat polite, neutral, and impolite.
|
282 |
+
[Uses Intel's new NLP model Polite Guard](https://community.intel.com/t5/Blogs/Tech-Innovation/Artificial-Intelligence-AI/Introducing-Intel-s-new-NLP-model-Polite-Guard/post/1664135)
|
283 |
+
|
284 |
+
It can also return the current time if you provide your timezone in 12 hr AM/PM format.
|
285 |
+
|
286 |
"""
|
287 |
)
|
288 |
stored_messages = gr.State([])
|
|
|
314 |
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
315 |
gr.Markdown(
|
316 |
"""
|
317 |
+
Thanks for trying it out!
|
318 |
"""
|
319 |
)
|
320 |
|