bardd's picture
Fix gemini-3.1-pro-high by routing to pro-low with thinkingLevel high.
4badc3b
Raw
History Blame Contribute Delete
757 Bytes
/**
* Format Converter Module
* Converts between Anthropic Messages API format and Google Generative AI format
*/
// Re-export all from each module
export * from './request-converter.js';
export * from './response-converter.js';
export * from './content-converter.js';
export * from './schema-sanitizer.js';
export * from './thinking-utils.js';
export * from './model-aliases.js';
export * from './openai-compat.js';
export * from './openai-stream.js';
export * from './reasoning-effort.js';
// Default export for backward compatibility
import { convertAnthropicToGoogle } from './request-converter.js';
import { convertGoogleToAnthropic } from './response-converter.js';
export default {
convertAnthropicToGoogle,
convertGoogleToAnthropic
};