diff --git a/translate/proto/translate.proto b/translate/proto/translate.proto index 6cc73cd..d31f297 100644 --- a/translate/proto/translate.proto +++ b/translate/proto/translate.proto @@ -18,7 +18,7 @@ message Translation { string model = 3; } -// TextRequest is the basic edition request +// Basic text translation message TextRequest { // The contents to be translated string content = 1; @@ -37,5 +37,6 @@ message TextRequest { // TextResponse is the basic edition response message TextResponse { + // The translated text Translation translation = 1; }