Merge pull request #11 from ArthurDanjou/fix_activity

fix: supprimer les commentaires eslint inutiles dans la configuration…
This commit is contained in:
2025-12-18 21:52:06 +01:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -4,7 +4,6 @@ on:
push:
branches:
- '**'
pull_request:
permissions:
contents: read

View File

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