feat: ajouter la configuration de déploiement pour Cloudflare Workers et mettre à jour les dépendances

This commit is contained in:
2025-12-18 14:33:16 +01:00
parent 2fd36d32cf
commit 545e6a9280
4 changed files with 75 additions and 37 deletions

View File

@@ -8610,7 +8610,7 @@ type AIGatewayHeaders = {
[key: string]: string | number | boolean | object;
};
type AIGatewayUniversalRequest = {
provider: AIGatewayProviders | string;
provider: AIGatewayProviders | string; // eslint-disable-line
endpoint: string;
headers: Partial<AIGatewayHeaders>;
query: unknown;
@@ -8626,7 +8626,7 @@ declare abstract class AiGateway {
gateway?: UniversalGatewayOptions;
extraHeaders?: object;
}): Promise<Response>;
getUrl(provider?: AIGatewayProviders | string): Promise<string>;
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
}
interface AutoRAGInternalError extends Error {
}