bump max model calls to 50

This commit is contained in:
Ramnique Singh 2026-07-22 00:00:09 +05:30
parent ed97392557
commit 1de932c7ba
2 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ import { ReasoningEffort } from "./models.js";
export type JsonValue = z.infer<ReturnType<typeof z.json>>;
export const DEFAULT_MAX_MODEL_CALLS = 20;
export const DEFAULT_MAX_MODEL_CALLS = 50;
export const MODEL_CALL_LIMIT_ERROR_CODE = "model-call-limit";
// ---------------------------------------------------------------------------