From ee2fb6460b7cf79c36b57b23d98b6bf7dc7b9301 Mon Sep 17 00:00:00 2001 From: Kevin Mesiab Date: Wed, 6 Mar 2024 08:04:24 -0800 Subject: [PATCH] Add live site to readme Include url for the deployed site in the readme. --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 53ccedf..7947968 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,20 @@ sentiment analysis and Named Entity Recognition (NER), designed to enhance your applications with the capability to understand and interpret the emotional and factual content of text data. +## Try It Out! + +MoodMarkerAPI is deployed at https://langtool.net + +* https://langtool.net/sentiment +* https://langtool.net/ner +* https://langtool.net/nouns + +```bash +curl --request POST \ + --url https://langtool.net/sentiment \ + --data 'text=Were no strangers to love. You know the rules and so do I (Do I) ยท Never gonna give you up. Never gonna let you down' +``` + ## ๐Ÿš€ Analyze Sentiment To perform sentiment analysis, use the curl command as follows: @@ -173,4 +187,4 @@ cd terraform && tf init && tf apply ``` See the ./terraform/README.md for more information on the -AWS infrastructure deployment. \ No newline at end of file +AWS infrastructure deployment.