Skip to content

Commit 91e3317

Browse files
update minimum required capacities for GPT models in checkquota.sh; remove premature satisfaction guard logging in human_approval_manager.py
1 parent 1ab8138 commit 91e3317

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

infra/scripts/checkquota.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ echo "✅ Azure subscription set successfully."
2424

2525
# Define models and their minimum required capacities
2626
declare -A MIN_CAPACITY=(
27-
["OpenAI.GlobalStandard.gpt-5.4-mini"]="${GPT_5_4_MINI_MIN_CAPACITY:-0}"
28-
["OpenAI.GlobalStandard.gpt-5.4"]="${GPT_5_4_MIN_CAPACITY}"
27+
["OpenAI.GlobalStandard.gpt-5.4-mini"]="${GPT_5_4_MINI_MIN_CAPACITY:-100}"
28+
["OpenAI.GlobalStandard.gpt-5.4"]="${GPT_5_4_MIN_CAPACITY:-150}"
2929
)
3030

3131
VALID_REGION=""

src/backend/v4/orchestration/human_approval_manager.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,6 @@ async def create_progress_ledger(self, magentic_context: MagenticContext):
275275
guard_round_budget,
276276
uncalled,
277277
)
278-
if uncalled and within_budget:
279-
logger.warning(
280-
"Premature satisfaction guard exhausted its round budget (%d) with "
281-
"agent(s) still marked uncalled: %s. Allowing termination to avoid an "
282-
"infinite loop (likely an author_name/participant-name mismatch).",
283-
guard_round_budget,
284-
uncalled,
285-
)
286278
if uncalled and within_budget:
287279
next_agent = uncalled[0]
288280
logger.info(

0 commit comments

Comments
 (0)