fix: reduce default minimum token threshold from 10000 to 1000

This commit is contained in:
enesgules 2025-09-05 13:53:29 +03:00
parent d3c5a23c93
commit 87306c876a

View File

@ -12,7 +12,7 @@ import { SSEServerTransport } from "@modelcontextprotocol/sdk/server/sse.js";
import { Command } from "commander";
import { IncomingMessage } from "http";
const DEFAULT_MINIMUM_TOKENS = 10000;
const DEFAULT_MINIMUM_TOKENS = 1000;
// Parse CLI arguments using commander
const program = new Command()