Compare commits

..

No commits in common. "ba5e4119cb7764a0cf8655e6669b58051ca4293f" and "bf1e2daa765e3290a9ceeefd75451ca2165ee31b" have entirely different histories.

5 changed files with 2 additions and 6 deletions

View File

@ -67,8 +67,6 @@ class LlamaCppClient(GenAIClient):
if base_url is None:
return None
else:
base_url = base_url.replace("/v1", "") # Strip /v1 if included in base_url
configured_model = self.genai_config.model

View File

@ -207,7 +207,6 @@
"th": "ไทย (Thai)",
"ca": "Català (Catalan)",
"hr": "Hrvatski (Croatian)",
"bs": "Bosanski (Bosnian)",
"sr": "Српски (Serbian)",
"sl": "Slovenščina (Slovenian)",
"lt": "Lietuvių (Lithuanian)",

View File

@ -52,11 +52,12 @@ export function ObjectFieldTemplate(props: ObjectFieldTemplateProps) {
} = props;
const formContext = registry?.formContext as ConfigFormContext | undefined;
// Check if this is a root-level object
const isRoot = registry?.rootSchema === schema;
const overrides = formContext?.overrides;
const baselineFormData = formContext?.baselineFormData;
const hiddenFields = formContext?.hiddenFields;
const fieldPath = props.fieldPathId.path;
const isRoot = fieldPath.length === 0;
const restartRequired = formContext?.restartRequired;
const defaultRequiresRestart = formContext?.requiresRestart ?? true;

View File

@ -38,7 +38,6 @@ const localeMap: Record<string, () => Promise<Locale>> = {
th: () => import("date-fns/locale/th").then((module) => module.th),
ca: () => import("date-fns/locale/ca").then((module) => module.ca),
hr: () => import("date-fns/locale/hr").then((module) => module.hr),
bs: () => import("date-fns/locale/bs").then((module) => module.bs),
sl: () => import("date-fns/locale/sl").then((module) => module.sl),
};

View File

@ -29,7 +29,6 @@ export const supportedLanguageKeys = [
"tr",
"pl",
"hr",
"bs",
"sk",
"sl",
"lt",