- Add POST /api/llm/providers/fetch-models route with LLMClient.fetch_models() - Add target_column to TranslationJob model/schema/service/orchestrator - Fix SQL Lab execute: truncate client_id to 11 chars (varchar(11)) - Switch SQL Lab to sync mode (runAsync: false) — no Celery workers - Fix polling: unwrap nested result from Superset query API - Fix ClickHouse timestamp: normalize float timestamps to YYYY-MM-DD
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
// #region RootLayoutConfig:Module [TYPE Function]
|
|
/**
|
|
* @PURPOSE: Root layout configuration (SPA mode)
|
|
* @LAYER: Infra
|
|
*/
|
|
export const ssr = false;
|
|
export const prerender = false;
|
|
// #endregion RootLayoutConfig:Module
|