Custom MT
To open Custom MT:
From Launcher: Menubar -> Translator -> Double Click on the MT Engine
From Settings: Settings -> MT Engines -> Click on the MT Engine

Configuration
Write the Custom MT code using the JSON object structure format
configVersion:
number
name:
string
title:
string
description:
string
version:
string
icon:
object
default:
string
schema:
array[]
formBuilder:
array[]
lang:
object
source:
array[]
target:
array[]
request:
object
components:
object
{
"configVersion": 3,
"name": "openai",
"title": "OpenAI",
"description": "Translate natural language text",
"version": "1.0",
"icon": {
"default": "openai.png"
},
"schema": [],
"formBuilder": [],
"lang": {
"source": [
{ "name": "Japanese", "value": "japanese"}
],
"target": [
{"name": "English", "value": "english"}
]
},
"request": {
"method": "http_post"
},
"components": {}
}
Last updated