使用模型翻译文本(V3 Beta 版)
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],[],[],[],null,["# Translate text with model (V3 Beta)\n\nTranslate text with model.\n\nCode sample\n-----------\n\n### Node.js\n\n\nBefore trying this sample, follow the Node.js setup instructions in the\n[Cloud Translation quickstart using\nclient libraries](/translate/docs/quickstart-client-libraries).\n\n\nFor more information, see the\n[Cloud Translation Node.js API\nreference documentation](/nodejs/docs/reference/translate/latest).\n\n\nTo authenticate to Cloud Translation, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n /**\n * TODO(developer): Uncomment these variables before running the sample.\n */\n // const projectId = 'YOUR_PROJECT_ID';\n // const location = 'global';\n // const modelId = 'YOUR_MODEL_ID';\n\n // Imports the Google Cloud Translation library\n const {TranslationServiceClient} = require('https://cloud.google.com/nodejs/docs/reference/translate/latest/overview.html').v3beta1;\n const automl = require('https://cloud.google.com/nodejs/docs/reference/automl/latest/overview.html');\n\n // Instantiates a client\n const translationClient = new https://cloud.google.com/nodejs/docs/reference/translate/latest/overview.html();\n const autoMLClient = new automl.https://cloud.google.com/nodejs/docs/reference/automl/latest/overview.html();\n async function translateTextWithModel() {\n const model = autoMLClient.modelPath(projectId, location, modelId);\n // Construct request\n const request = {\n parent: translationClient.locationPath(projectId, location),\n contents: [text],\n mimeType: 'text/plain', // mime types: text/plain, text/html\n sourceLanguageCode: 'en-US',\n targetLanguageCode: 'ja',\n model: model,\n };\n\n // Run request\n const [response] = await translationClient.translateText(request);\n\n for (const translation of response.translations) {\n console.log(`Translated Content: ${translation.translatedText}`);\n }\n }\n\n translateTextWithModel();\n\nWhat's next\n-----------\n\n\nTo search and filter code samples for other Google Cloud products, see the\n[Google Cloud sample browser](/docs/samples?product=translate)."]]