This commit is contained in:
dogcraft 2025-03-23 07:26:53 +08:00
parent 789e0a022e
commit 42f846214c
No known key found for this signature in database
GPG Key ID: 23087E69E76F9682
1 changed files with 22 additions and 0 deletions

View File

@ -8370,6 +8370,17 @@ export type operations = {
/** @enum {string} */
federation: 'all' | 'specified' | 'none';
federationHosts: string[];
enableLlmTranslator: boolean;
enableLlmTranslatorRedisCache: boolean;
llmTranslatorRedisCacheTtl: number;
llmTranslatorBaseUrl: string | null;
llmTranslatorApiKey: string | null;
llmTranslatorModel: string | null;
llmTranslatorTemperature: number | null;
llmTranslatorTopP: number | null;
llmTranslatorMaxTokens: number | null;
llmTranslatorSysPrompt: string | null;
llmTranslatorUserPrompt: string | null;
};
};
};
@ -10706,6 +10717,17 @@ export type operations = {
/** @enum {string} */
federation?: 'all' | 'none' | 'specified';
federationHosts?: string[];
enableLlmTranslator?: boolean;
enableLlmTranslatorRedisCache?: boolean;
llmTranslatorRedisCacheTtl?: number;
llmTranslatorBaseUrl?: string | null;
llmTranslatorApiKey?: string | null;
llmTranslatorModel?: string | null;
llmTranslatorTemperature?: number | null;
llmTranslatorTopP?: number | null;
llmTranslatorMaxTokens?: number | null;
llmTranslatorSysPrompt?: string | null;
llmTranslatorUserPrompt?: string | null;
};
};
};