UNPKG

i18n-llm-translate

Version:

Automatically translates namespace-based JSON translation files across multiple languages from any source language

7 lines (6 loc) 273 B
import { EstimateEngine } from "../../engines/estimate/type"; export interface OpenRouterEstimateConfig { provider: 'openai' | (string & {}); model: string; } export declare function createOpenRouterEstimateEngine(config: OpenRouterEstimateConfig): EstimateEngine;