The whole hunk
from line 659, old and new numbered
/
lines
from line 659
659659 "agent": {
660660 "type": "agent_with_overrides",
661661 "id": "$AGENT_ID",
662 "model": {"id": "claude-opus-5", "inference_geo": "us"}
662 "model": {"id": "claude-opus-5-5", "inference_geo": "us"}
663663 },
664664 "environment_id": "$ENVIRONMENT_ID"
665665 }
from line 675
675675 type: agent_with_overrides
676676 id: $AGENT_ID
677677 model:
678 id: claude-opus-5
678 id: claude-opus-5-5
679679 inference_geo: us
680680 environment_id: $ENVIRONMENT_ID
681681 YAML
from line 689
689689 "type": "agent_with_overrides",
690690 "id": agent.id,
691691 # Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
692 "model": {"id": "claude-opus-5", "inference_geo": "us"},
692 "model": {"id": "claude-opus-5-5", "inference_geo": "us"},
693693 },
694694 environment_id=environment.id,
695695 )
from line 702
702702 type: "agent_with_overrides",
703703 id: agent.id,
704704 // Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
705 model: { id: "claude-opus-5", inference_geo: "us" }
705 model: { id: "claude-opus-5-5", inference_geo: "us" }
706706 },
707707 environment_id: environment.id
708708 });
from line 719
719719 // Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
720720 Model = new BetaManagedAgentsModelConfigParams
721721 {
722 ID = BetaManagedAgentsModel.ClaudeOpus5,
722 ID = BetaManagedAgentsModel.ClaudeOpus5_5,
723723 InferenceGeo = "us",
724724 },
725725 },
from line 736
736736 ID: agent.ID,
737737 // Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
738738 Model: anthropic.BetaManagedAgentsModelConfigParams{
739 ID: anthropic.BetaManagedAgentsModelClaudeOpus5,
739 ID: anthropic.BetaManagedAgentsModelClaudeOpus5_5,
740740 InferenceGeo: anthropic.String("us"),
741741 },
742742 },
from line 756
756756 .id(agent.id())
757757 // Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
758758 .model(BetaManagedAgentsModelConfigParams.builder()
759 .id(BetaManagedAgentsModel.CLAUDE_OPUS_5)
759 .id(BetaManagedAgentsModel.CLAUDE_OPUS_5_5)
760760 .inferenceGeo("us")
761761 .build())
762762 .build())
from line 772
772772 type: 'agent_with_overrides',
773773 // Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
774774 model: BetaManagedAgentsModelConfigParams::with(
775 id: 'claude-opus-5',
775 id: 'claude-opus-5-5',
776776 inferenceGeo: 'us',
777777 ),
778778 ),
from line 787
787787 type: :agent_with_overrides,
788788 id: agent.id,
789789 # Replaces the agent's `model` in full: restate `id`, add `inference_geo` to pin.
790 model: {id: "claude-opus-5", inference_geo: "us"}
790 model: {id: "claude-opus-5-5", inference_geo: "us"}
791791 },
792792 environment_id: environment.id
793793 )