yetessam commited on
Commit
e8b3d80
·
verified ·
1 Parent(s): ebc0cfc

Adding markdown links to the front page

Browse files
Files changed (1) hide show
  1. Gradio_UI.py +6 -5
Gradio_UI.py CHANGED
@@ -278,10 +278,11 @@ class GradioUI:
278
  """
279
  # Content Agent
280
 
281
- If you specify your timezone, I can fetch the current local time.
282
-
283
- If you provide me with text, I can check to see whether the content is considered polite or not.
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
- THANK YOU!
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