@@ -799,10 +799,10 @@ public record TextResourceContents( // @formatter:off
799799 @ JsonInclude (JsonInclude .Include .NON_ABSENT )
800800 @ JsonIgnoreProperties (ignoreUnknown = true )
801801 public record BlobResourceContents ( // @formatter:off
802- @ JsonProperty ("uri" ) String uri ,
803- @ JsonProperty ("mimeType" ) String mimeType ,
804- @ JsonProperty ("blob" ) String blob ) implements ResourceContents {
805- } // @formatter:on
802+ @ JsonProperty ("uri" ) String uri ,
803+ @ JsonProperty ("mimeType" ) String mimeType ,
804+ @ JsonProperty ("blob" ) String blob ) implements ResourceContents { // @formatter:on
805+ }
806806
807807 // ---------------------------
808808 // Prompt Interfaces
@@ -1425,12 +1425,11 @@ public CreateMessageRequest(List<SamplingMessage> messages, ModelPreferences mod
14251425
14261426 public enum ContextInclusionStrategy {
14271427
1428- @ JsonProperty ("none" )
1429- NONE , @ JsonProperty ("thisServer" )
1430- THIS_SERVER , @ JsonProperty ("allServers" )
1431- ALL_SERVERS
1432-
1433- }
1428+ // @formatter:off
1429+ @ JsonProperty ("none" ) NONE ,
1430+ @ JsonProperty ("thisServer" ) THIS_SERVER ,
1431+ @ JsonProperty ("allServers" )ALL_SERVERS
1432+ } // @formatter:on
14341433
14351434 public static Builder builder () {
14361435 return new Builder ();
@@ -1527,7 +1526,7 @@ public record CreateMessageResult( // @formatter:off
15271526
15281527 public enum StopReason {
15291528
1530- // @formatter:off
1529+ // @formatter:off
15311530 @ JsonProperty ("endTurn" ) END_TURN ("endTurn" ),
15321531 @ JsonProperty ("stopSequence" ) STOP_SEQUENCE ("stopSequence" ),
15331532 @ JsonProperty ("maxTokens" ) MAX_TOKENS ("maxTokens" ),
0 commit comments