Spaces:
Running
Running
Update Gradio_UI.py
Browse files- Gradio_UI.py +5 -2
Gradio_UI.py
CHANGED
@@ -278,13 +278,16 @@ class GradioUI:
|
|
278 |
"""
|
279 |
# Content Agent
|
280 |
|
281 |
-
|
|
|
|
|
282 |
|
283 |
* Checks text and classify whether or not it is polite, somewhat polite, neutral, and impolite.
|
284 |
-
|
285 |
|
286 |
* Returns the current time if provided with a timezone.
|
287 |
|
|
|
288 |
"""
|
289 |
)
|
290 |
stored_messages = gr.State([])
|
|
|
278 |
"""
|
279 |
# Content Agent
|
280 |
|
281 |
+
|
282 |
+
Content agent helps users classify text. It can be used to determining whether language
|
283 |
+
is polite.
|
284 |
|
285 |
* Checks text and classify whether or not it is polite, somewhat polite, neutral, and impolite.
|
286 |
+
Uses Intel's [Polite Guard](https://community.intel.com/t5/Blogs/Tech-Innovation/Artificial-Intelligence-AI/Introducing-Intel-s-new-NLP-model-Polite-Guard/post/1664135) NLP model.
|
287 |
|
288 |
* Returns the current time if provided with a timezone.
|
289 |
|
290 |
+
|
291 |
"""
|
292 |
)
|
293 |
stored_messages = gr.State([])
|