update comments

This commit is contained in:
Asim Aslam
2021-12-10 10:38:11 +00:00
parent 8b48ea58a4
commit b970be2cd7

View File

@@ -18,7 +18,7 @@ message Translation {
string model = 3; string model = 3;
} }
// TextRequest is the basic edition request // Basic text translation
message TextRequest { message TextRequest {
// The contents to be translated // The contents to be translated
string content = 1; string content = 1;
@@ -37,5 +37,6 @@ message TextRequest {
// TextResponse is the basic edition response // TextResponse is the basic edition response
message TextResponse { message TextResponse {
// The translated text
Translation translation = 1; Translation translation = 1;
} }