We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PV-Bhat/GemForge-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
model-selector.d.ts•657 B
import { GeminiRequest } from '../interfaces/common.js';
export declare const MODELS: {
FLASH: string;
FLASH_LITE: string;
FLASH_THINKING: string;
};
/**
* Select the appropriate model ID based on tool name and arguments
* @param toolName - Name of the tool being used
* @param args - Tool arguments
* @returns Selected model ID
*/
export declare function selectToolModel(toolName: string, args: any): string;
/**
* Select the appropriate model ID based on request properties
* @param internalRequest - Request object
* @returns Selected model ID string
*/
export declare function selectModelId(internalRequest: GeminiRequest): string;