Merge pull request #7 from ArthurDanjou/copilot/rework-index-and-mcp-files

[WIP] Rework index.md and mcp.md files with new home page
This commit is contained in:
2025-12-16 17:07:14 +01:00
committed by GitHub
9 changed files with 23724 additions and 172 deletions

View File

@@ -8601,7 +8601,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;
@@ -8617,7 +8617,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 {
}