From 66cf3e851ea69e6adbb7809f0c4c4ff6f6c7df79 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Wed, 31 Dec 2025 15:06:53 -0600 Subject: [PATCH] chore: change default model to openai/gpt-4o-mini --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 699f1bc..0fb86c3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,7 +11,7 @@ import express, { Request, Response } from 'express'; import { ToolHandlers } from './tool-handlers.js'; // Define the default model to use when none is specified -const DEFAULT_MODEL = 'qwen/qwen2.5-vl-32b-instruct:free'; +const DEFAULT_MODEL = 'openai/gpt-4o-mini'; interface ServerOptions { apiKey?: string;