update examples

This commit is contained in:
Asim Aslam
2021-06-02 11:57:47 +01:00
parent 9d16ec71de
commit 4d12230338
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
"title": "Analyze a piece of text",
"description": "Analyze and score a piece of text",
"request": {
"text": "whoa this is cool"
"text": "this is amazing"
},
"response": {
"score": 1

View File

@@ -17,7 +17,7 @@ message Request {
}
message Response {
// The score of the text
// The score of the text {positive is 1, negative is 0}
double score = 1;
}