import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"sourceLanguage",
"string",
{
displayName: "Source language",
subtitle: "The source language of the text",
placeholder: "ru"
},
""
)
.field(
"targetLanguage",
"string",
{
displayName: "Target language",
subtitle: "The target language to translate",
placeholder: "en"
},
"en"
)
.field(
"model",
"string",
{
displayName: "Translate model",
subtitle: "Model for translate text",
placeholder: "google/gemma-2-2b-it"
},
""
)
.build();