The OpenAI Translate Data Connector enables you to use ChatGPT to translate text between languages.
This Data Connector extends the functionality of the OpenAI Data Connector.
Once this and the OpenAI Data Connector have been installed and added to a Form, you can access this Data Connector in the Form's server event scripts using: connectors.verjio.openai
.
openai.translate
translates a piece of text into another language. This includes languages that use non-Latin alphabets.
Code example:
var result = connectors.verjio.openai.translate(
'The Apollo 17 astronauts were the last people to walk on the moon.',
'Urdu'
);
For comprehensive information on how to use and develop applications with this Data Connector please refer to the Support section.
The Installation section has instructions on installing it into your Workspace.
Complete JavaScript API documentation for this Data Connector can be found in the Documentation section.