src / config.ts
import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"marketauxApiKey",
"string",
{
displayName: "Marketaux API Key",
placeholder: "Enter your Marketaux API Token",
hint: "Required to fetch market news. Get your API key from marketaux.com",
},
""
)
.build();
src / config.ts
import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"marketauxApiKey",
"string",
{
displayName: "Marketaux API Key",
placeholder: "Enter your Marketaux API Token",
hint: "Required to fetch market news. Get your API key from marketaux.com",
},
""
)
.build();