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: push:
branches: branches:
- '**' - '**'
pull_request:
permissions: permissions:
contents: read contents: read

View File

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