@pandi2352/gemini-ocr 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -56,7 +56,7 @@ async function processSingleFile(input, options) {
|
|
|
56
56
|
if (!options.apiKey)
|
|
57
57
|
throw new Error('Gemini API key is required.');
|
|
58
58
|
const gemini = new llm_1.GeminiClient(options.apiKey, logger);
|
|
59
|
-
const modelName = options.model || 'gemini-
|
|
59
|
+
const modelName = options.model || 'gemini-2.5-flash';
|
|
60
60
|
// Input Processing
|
|
61
61
|
const inputHandler = new input_handler_1.InputHandler(logger);
|
|
62
62
|
const normalized = await inputHandler.processInput(input);
|