以前、Microsoft Translate API を用いた Slack 翻訳コマンドの実装という記事を書いたのですが
自動要約&ニューラルネット翻訳で海外の記事を読みやすくするSlackBotという記事からリンク貼っていただき気づきました。
CATEGORY
にgeneralnn
を設定するとニューラルネット翻訳。
なるほどです。。。
以下修正しました。
- var translate_url = "http://api.microsofttranslator.com/v2/Http.svc/Translate?from=" + from + "&to=" + to + "&text=" + encodeURIComponent(text);
+ var translate_url = "http://api.microsofttranslator.com/v2/Http.svc/Translate?from=" + from + "&to=" + to + "&category=generalnn&text=" + encodeURIComponent(text);
修正前
修正後
おお
(追記でよかったのですが。。。)