The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of OpenAI, reference main (110b63), with Swift 6.2 (beta) for macOS (SPM) on 25 Jun 2025 07:08:05 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/m1guelpf/swift-openai-responses.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/m1guelpf/swift-openai-responses
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 110b63e Fix (#13)
Cloned https://github.com/m1guelpf/swift-openai-responses.git
Revision (git rev-parse @):
110b63eb4141bb01e630f0f662399b66432fa04f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/m1guelpf/swift-openai-responses.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/m1guelpf/swift-openai-responses.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:53:53: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 51 |
 52 |         // Setup folder
 53 |         let genFolder = context.pluginWorkDirectory.appending(["ProtocolGen"])
    |                                                     `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 54 |         try FileManager.default.createDirectory(
 55 |             atPath: genFolder.string, withIntermediateDirectories: true
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:55:31: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 53 |         let genFolder = context.pluginWorkDirectory.appending(["ProtocolGen"])
 54 |         try FileManager.default.createDirectory(
 55 |             atPath: genFolder.string, withIntermediateDirectories: true
    |                               `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 56 |         )
 57 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:63:37: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 61 |             return target.sourceFiles(withSuffix: "swift").map { file in
 62 |                 let moduleName = target.moduleName
 63 |                 let fileName = file.path.stem
    |                                     |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                     `- note: use 'url' instead
 64 |                 let genFileName = "\(moduleName)-\(fileName)-gen.json"
 65 |                 let genFile = genFolder.appending([genFileName])
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:63:42: warning: 'stem' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 61 |             return target.sourceFiles(withSuffix: "swift").map { file in
 62 |                 let moduleName = target.moduleName
 63 |                 let fileName = file.path.stem
    |                                          `- warning: 'stem' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 64 |                 let genFileName = "\(moduleName)-\(fileName)-gen.json"
 65 |                 let genFile = genFolder.appending([genFileName])
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:65:41: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 63 |                 let fileName = file.path.stem
 64 |                 let genFileName = "\(moduleName)-\(fileName)-gen.json"
 65 |                 let genFile = genFolder.appending([genFileName])
    |                                         `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 66 |                 intermFiles.append(genFile)
 67 |                 return Command.buildCommand(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:67:32: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 65 |                 let genFile = genFolder.appending([genFileName])
 66 |                 intermFiles.append(genFile)
 67 |                 return Command.buildCommand(
    |                                `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 68 |                     displayName: """
 69 |                         Parse source file "\(fileName)" in module "\(moduleName)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:71:38: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 69 |                         Parse source file "\(fileName)" in module "\(moduleName)"
 70 |                         """,
 71 |                     executable: tool.path,
    |                                      |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                      `- note: use 'url' instead
 72 |                     arguments: [
 73 |                         "parse",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:74:30: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 72 |                     arguments: [
 73 |                         "parse",
 74 |                         file.path.string,
    |                              |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                              `- note: use 'url' instead
 75 |                         "--output",
 76 |                         genFile.string,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:74:35: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 72 |                     arguments: [
 73 |                         "parse",
 74 |                         file.path.string,
    |                                   `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 75 |                         "--output",
 76 |                         genFile.string,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:76:33: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 74 |                         file.path.string,
 75 |                         "--output",
 76 |                         genFile.string,
    |                                 `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 77 |                     ],
 78 |                     inputFiles: [file.path],
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:78:39: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 76 |                         genFile.string,
 77 |                     ],
 78 |                     inputFiles: [file.path],
    |                                       |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                       `- note: use 'url' instead
 79 |                     outputFiles: [genFile]
 80 |                 )
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:87:33: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 85 |         let moduleName = target.moduleName
 86 |         let genFileName = "\(moduleName)+ProtocolHelperCoders.swift"
 87 |         let genPath = genFolder.appending(genFileName)
    |                                 `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 88 |         var genArgs = ["generate", "--output", genPath.string]
 89 |         for `import` in imports {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:88:56: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 86 |         let genFileName = "\(moduleName)+ProtocolHelperCoders.swift"
 87 |         let genPath = genFolder.appending(genFileName)
 88 |         var genArgs = ["generate", "--output", genPath.string]
    |                                                        `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 89 |         for `import` in imports {
 90 |             genArgs.append(contentsOf: ["--module", `import`])
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:93:33: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 91 |         }
 92 |         for file in intermFiles {
 93 |             genArgs.append(file.string)
    |                                 `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 94 |         }
 95 |         buildCommands.append(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:96:14: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 94 |         }
 95 |         buildCommands.append(
 96 |             .buildCommand(
    |              `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 97 |                 displayName: """
 98 |                     Generate protocol decoding/encoding syntax for "\(moduleName)"
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:100:34: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 98 |                     Generate protocol decoding/encoding syntax for "\(moduleName)"
 99 |                     """,
100 |                 executable: tool.path,
    |                                  |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                  `- note: use 'url' instead
101 |                 arguments: genArgs,
102 |                 inputFiles: intermFiles,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/SourceTarget/SwiftPackageTarget.swift:67:42: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
65 |     func configPath(named name: String) throws -> String? {
66 |         let fileManager = FileManager.default
67 |         let directory = module.directory.string
   |                                          `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
68 |         let contents = try fileManager.contentsOfDirectory(atPath: directory)
69 |         let file = contents.first { file in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/SourceTarget/SwiftPackageTarget.swift:70:24: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
68 |         let contents = try fileManager.contentsOfDirectory(atPath: directory)
69 |         let file = contents.first { file in
70 |             let path = Path(file)
   |                        `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
71 |             return name.lowercased()
72 |                 == path.stem
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/SourceTarget/SwiftPackageTarget.swift:72:25: warning: 'stem' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
70 |             let path = Path(file)
71 |             return name.lowercased()
72 |                 == path.stem
   |                         `- warning: 'stem' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
73 |                 .components(separatedBy: .alphanumerics.inverted)
74 |                 .joined(separator: "")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/SourceTarget/SwiftPackageTarget.swift:78:33: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
76 |         }
77 |         guard let file else { return nil }
78 |         return module.directory.appending([file]).string
   |                                 `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
79 |     }
80 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/SourceTarget/SwiftPackageTarget.swift:78:51: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
76 |         }
77 |         guard let file else { return nil }
78 |         return module.directory.appending([file]).string
   |                                                   `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
79 |     }
80 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin MetaProtocolCodable
[2/2] Compiling plugin GenerateManual
Building for debugging...
[2/29] Write sources
[23/29] Compiling _SwiftSyntaxCShims dummy.c
[24/29] Write swift-version-1EA4D86E10B52AF.txt
[26/49] Compiling SwiftSyntax600 Empty.swift
[27/49] Emitting module SwiftSyntax600
[28/49] Compiling SwiftSyntax510 Empty.swift
[29/49] Emitting module SwiftSyntax510
[30/49] Emitting module SwiftSyntax509
[31/49] Compiling SwiftSyntax509 Empty.swift
[32/49] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[33/49] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[34/50] Compiling InternalCollectionsUtilities Debugging.swift
[35/50] Compiling InternalCollectionsUtilities Descriptions.swift
[36/50] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[37/50] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[38/115] Compiling SwiftSyntax Convenience.swift
[39/115] Compiling SwiftSyntax CustomTraits.swift
[40/115] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[41/115] Compiling SwiftSyntax Assert.swift
[42/115] Compiling SwiftSyntax AbsolutePosition.swift
[43/115] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[44/115] Emitting module InternalCollectionsUtilities
[45/115] Compiling SwiftSyntax BumpPtrAllocator.swift
[46/115] Compiling SwiftSyntax CommonAncestor.swift
[47/171] Compiling OrderedCollections OrderedSet+Codable.swift
[48/171] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[49/171] Compiling OrderedCollections OrderedSet+Descriptions.swift
[50/171] Compiling OrderedCollections OrderedSet+Diffing.swift
[51/171] Compiling OrderedCollections OrderedSet+Equatable.swift
[52/171] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[53/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[54/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[55/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[56/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[57/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[58/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[59/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[60/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[61/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[62/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[63/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[64/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[65/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[66/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[67/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[68/177] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[69/177] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[70/177] Compiling OrderedCollections OrderedSet+Sendable.swift
[71/177] Compiling OrderedCollections _Hashtable+Header.swift
[72/177] Compiling OrderedCollections OrderedDictionary+Codable.swift
[73/177] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[74/177] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[75/177] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[76/177] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[77/177] Compiling OrderedCollections OrderedSet+Hashable.swift
[78/177] Compiling OrderedCollections OrderedSet+Initializers.swift
[79/177] Compiling OrderedCollections OrderedSet+Insertions.swift
[80/177] Compiling OrderedCollections OrderedSet+Invariants.swift
[81/177] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[82/177] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[83/177] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[84/177] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[85/177] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[86/177] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[87/177] Compiling OrderedCollections OrderedDictionary+Values.swift
[88/177] Compiling OrderedCollections OrderedDictionary.swift
[89/177] Compiling OrderedCollections OrderedDictionary+Elements.swift
[90/177] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[91/177] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[92/177] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[93/177] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[94/177] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[95/177] Compiling OrderedCollections _HashTable+Bucket.swift
[96/177] Compiling OrderedCollections _HashTable+BucketIterator.swift
[97/177] Compiling OrderedCollections _HashTable+Constants.swift
[98/177] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[99/177] Compiling OrderedCollections _HashTable+Testing.swift
[100/177] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[101/177] Compiling OrderedCollections _HashTable.swift
[102/177] Compiling OrderedCollections OrderedSet+SubSequence.swift
[103/177] Compiling OrderedCollections OrderedSet+Testing.swift
[104/177] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[105/177] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[106/177] Compiling OrderedCollections OrderedSet.swift
[107/177] Compiling OrderedCollections _UnsafeBitset.swift
[108/177] Emitting module OrderedCollections
[121/184] Compiling SwiftSyntax SyntaxIdentifier.swift
[122/184] Compiling SwiftSyntax SyntaxNodeFactory.swift
[123/184] Compiling SwiftSyntax SyntaxNodeStructure.swift
[124/184] Emitting module SwiftSyntax
[174/184] Compiling SwiftSyntax SyntaxNodesD.swift
[175/184] Compiling SwiftSyntax SyntaxNodesEF.swift
[176/184] Compiling SwiftSyntax SyntaxNodesGHI.swift
[177/184] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[178/184] Compiling SwiftSyntax SyntaxNodesOP.swift
[179/184] Compiling SwiftSyntax SyntaxNodesQRS.swift
[180/184] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[181/242] Compiling SwiftDiagnostics Message.swift
[182/243] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[183/243] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[184/243] Compiling SwiftDiagnostics Note.swift
[185/243] Compiling SwiftDiagnostics FixIt.swift
[186/243] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[187/243] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[188/243] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[189/243] Emitting module SwiftDiagnostics
[190/243] Compiling SwiftDiagnostics Diagnostic.swift
[191/243] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[192/243] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[193/243] Compiling SwiftDiagnostics Convenience.swift
[194/243] Compiling SwiftBasicFormat Syntax+Extensions.swift
[195/243] Emitting module SwiftBasicFormat
[196/243] Compiling SwiftBasicFormat InferIndentation.swift
[197/243] Compiling SwiftBasicFormat BasicFormat.swift
[198/243] Compiling SwiftParser TopLevel.swift
[199/243] Compiling SwiftParser TriviaParser.swift
[200/243] Compiling SwiftParser Types.swift
[201/243] Compiling SwiftParser ExperimentalFeatures.swift
[202/247] Compiling SwiftParser UnicodeScalarExtensions.swift
[203/247] Compiling SwiftParser Lookahead.swift
[204/247] Compiling SwiftParser LoopProgressCondition.swift
[205/247] Compiling SwiftParser Modifiers.swift
[206/247] Compiling SwiftParser Names.swift
[207/247] Compiling SwiftParser TokenConsumer.swift
[208/247] Compiling SwiftParser TokenPrecedence.swift
[209/247] Compiling SwiftParser TokenSpec.swift
[210/247] Compiling SwiftParser TokenSpecSet.swift
[211/247] Compiling SwiftParser StringLiterals.swift
[212/247] Compiling SwiftParser SwiftParserCompatibility.swift
[213/247] Compiling SwiftParser SwiftVersion.swift
[214/247] Compiling SwiftParser SyntaxUtils.swift
[215/247] Compiling SwiftParser Nominals.swift
[216/247] Compiling SwiftParser Parameters.swift
[217/247] Compiling SwiftParser ParseSourceFile.swift
[218/247] Compiling SwiftParser Parser.swift
[219/247] Compiling SwiftParser Patterns.swift
[220/247] Compiling SwiftParser Recovery.swift
[221/247] Compiling SwiftParser Specifiers.swift
[222/247] Compiling SwiftParser Statements.swift
[223/247] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[224/247] Compiling SwiftParser Attributes.swift
[225/247] Compiling SwiftParser Availability.swift
[226/247] Compiling SwiftParser CharacterInfo.swift
[227/247] Compiling SwiftParser CollectionNodes+Parsable.swift
[228/247] Compiling SwiftParser Declarations.swift
[229/247] Emitting module SwiftParser
[230/247] Compiling SwiftParser Cursor.swift
[231/247] Compiling SwiftParser Lexeme.swift
[232/247] Compiling SwiftParser LexemeSequence.swift
[233/247] Compiling SwiftParser Lexer.swift
[234/247] Compiling SwiftParser RegexLiteralLexer.swift
[235/247] Compiling SwiftParser Directives.swift
[236/247] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[237/247] Compiling SwiftParser Expressions.swift
[238/247] Compiling SwiftParser IncrementalParseTransition.swift
[239/247] Compiling SwiftParser IsValidIdentifier.swift
[240/247] Compiling SwiftParser IsLexerClassified.swift
[241/247] Compiling SwiftParser LayoutNodes+Parsable.swift
[242/247] Compiling SwiftParser Parser+TokenSpecSet.swift
[243/247] Compiling SwiftParser TokenSpecStaticMembers.swift
[244/270] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[245/271] Compiling SwiftOperators PrecedenceGroup.swift
[246/272] Compiling SwiftOperators OperatorTable.swift
[247/272] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[248/272] Compiling SwiftParserDiagnostics PresenceUtils.swift
[249/272] Compiling SwiftOperators SyntaxSynthesis.swift
[250/272] Compiling SwiftOperators PrecedenceGraph.swift
[251/272] Compiling SwiftOperators OperatorTable+Semantics.swift
[252/272] Compiling SwiftOperators OperatorTable+Defaults.swift
[253/272] Compiling SwiftOperators OperatorError.swift
[254/272] Compiling SwiftOperators OperatorError+Diagnostics.swift
[255/272] Compiling SwiftOperators Operator.swift
[256/272] Emitting module SwiftOperators
[257/272] Compiling SwiftOperators OperatorTable+Folding.swift
[258/272] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[259/272] Compiling SwiftParserDiagnostics Utils.swift
[260/272] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[261/272] Compiling SwiftParserDiagnostics MissingNodesError.swift
[262/272] Compiling SwiftParserDiagnostics MissingTokenError.swift
[263/272] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[264/272] Emitting module SwiftParserDiagnostics
[265/272] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[266/272] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[267/272] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[268/272] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[269/287] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[270/287] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[271/287] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[272/288] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[273/288] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[274/288] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[275/288] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[276/288] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[277/288] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[278/288] Compiling SwiftSyntaxBuilder Indenter.swift
[279/288] Compiling SwiftSyntaxBuilder ListBuilder.swift
[280/288] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[281/288] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[282/288] Emitting module SwiftSyntaxBuilder
[283/288] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[284/288] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[285/306] Compiling SwiftSyntaxMacros AttachedMacro.swift
[286/306] Compiling SwiftSyntaxMacros BodyMacro.swift
[287/307] Compiling SwiftSyntaxMacros Macro.swift
[288/307] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[289/307] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[290/307] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[291/307] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[292/307] Compiling SwiftSyntaxMacros Macro+Format.swift
[293/307] Compiling SwiftSyntaxMacros PreambleMacro.swift
[294/307] Compiling SwiftSyntaxMacros MemberMacro.swift
[295/307] Compiling SwiftSyntaxMacros PeerMacro.swift
[296/307] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[297/307] Compiling SwiftSyntaxMacros AccessorMacro.swift
[298/307] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[299/307] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[300/307] Emitting module SwiftSyntaxMacros
[301/307] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[302/307] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[303/307] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[304/401] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[305/401] Compiling PluginCore DiagnosticProducer.swift
[306/401] Compiling PluginCore DuplicateUsage.swift
[307/401] Compiling PluginCore GroupedVariableDeclaration.swift
[308/401] Compiling PluginCore InvalidCombination.swift
[309/401] Compiling PluginCore InvalidDeclaration.swift
[310/401] Compiling PluginCore MetaCodableMessage.swift
[311/401] Compiling PluginCore StaticVariableDeclaration.swift
[312/401] Compiling PluginCore UninitializedVariableDecl.swift
[313/401] Compiling PluginCore AttributeExpander.swift
[314/410] Compiling PluginCore DeclModifiersGenerator.swift
[315/410] Compiling PluginCore Options.swift
[316/410] Compiling PluginCore ComposedVariable.swift
[317/410] Compiling PluginCore ConditionalCodingVariable.swift
[318/410] Compiling PluginCore AssociatedVariable.swift
[319/410] Compiling PluginCore BasicAssociatedVariable.swift
[320/410] Compiling PluginCore BasicEnumCaseVariable.swift
[321/410] Compiling PluginCore EnumCaseVariable.swift
[322/410] Compiling PluginCore AdjacentlyTaggableSwitcher.swift
[323/410] Compiling PluginCore MemberInit+Expansion.swift
[324/410] Compiling PluginCore MemberInit.swift
[325/410] Compiling PluginCore PeerAttribute.swift
[326/410] Compiling PluginCore AggregatedDiagnosticProducer.swift
[327/410] Compiling PluginCore CombinedUsage.swift
[328/410] Compiling PluginCore ArgumentCountCondition.swift
[329/410] Compiling PluginCore DeclarationCondition.swift
[330/410] Compiling PluginCore DiagnosticCondition.swift
[331/410] Compiling PluginCore ConditionalDiagnosticProducer.swift
[332/410] Compiling PluginCore CodedAs.swift
[333/410] Compiling PluginCore CodedBy.swift
[334/410] Compiling PluginCore Default.swift
[335/410] Compiling PluginCore IgnoreCoding.swift
[336/410] Compiling PluginCore IgnoreDecoding.swift
[337/410] Compiling PluginCore IgnoreEncoding.swift
[338/410] Compiling PluginCore CodedAt.swift
[339/410] Compiling PluginCore CodedIn.swift
[340/410] Compiling PluginCore ContentAt.swift
[341/410] Compiling PluginCore KeyPathProvider.swift
[342/410] Compiling PluginCore AttributableDeclSyntax.swift
[343/410] Compiling PluginCore Attribute.swift
[344/410] Compiling PluginCore Codable+Expansion.swift
[345/410] Compiling PluginCore Codable.swift
[346/410] Compiling PluginCore CodingKeyTransformer.swift
[347/410] Compiling PluginCore CodingKeys.swift
[348/410] Compiling PluginCore Strategy.swift
[349/410] Compiling PluginCore IgnoreCodingInitialized.swift
[350/410] Compiling PluginCore Inherits.swift
[351/410] Compiling PluginCore UnTagged.swift
[352/410] Emitting module PluginCore
[353/410] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[354/410] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[355/410] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[356/410] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[357/410] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[358/410] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[359/410] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[360/410] Emitting module SwiftSyntaxMacroExpansion
[361/410] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[362/410] Compiling PluginCore AdjacentlyTaggedEnumSwitcher.swift
[363/410] Compiling PluginCore AnyEnumSwitcher.swift
[364/410] Compiling PluginCore EnumSwitcherVariable.swift
[365/410] Compiling PluginCore ExternallyTaggedEnumSwitcher.swift
[366/410] Compiling PluginCore InternallyTaggedEnumSwitcher.swift
[367/410] Compiling PluginCore TaggedEnumSwitcherVariable.swift
[368/410] Compiling PluginCore UnTaggedEnumSwitcher.swift
[369/410] Compiling PluginCore AnyInitialization.swift
[370/410] Compiling PluginCore AnyRequiredVariableInitialization.swift
[371/410] Compiling PluginCore PropertyVariableTreeNode+Generated.swift
[372/410] Compiling PluginCore PropertyVariableTreeNode.swift
[373/410] Compiling PluginCore AssociatedDeclSyntax.swift
[374/410] Compiling PluginCore EnumCaseVariableDeclSyntax.swift
[375/410] Compiling PluginCore MemberGroupSyntax.swift
[376/410] Compiling PluginCore PropertyDeclSyntax.swift
[377/410] Compiling PluginCore VariableSyntax.swift
[378/410] Compiling PluginCore ActorVariable.swift
[379/410] Compiling PluginCore ClassVariable.swift
[380/422] Compiling PluginCore BasicPropertyVariable.swift
[381/422] Compiling PluginCore DecodingFallback.swift
[382/422] Compiling PluginCore DefaultValueVariable.swift
[383/422] Compiling PluginCore HelperCodedVariable.swift
[384/422] Compiling PluginCore InitializationVariable.swift
[385/422] Compiling PluginCore KeyedVariable.swift
[386/422] Compiling PluginCore PropertyVariable.swift
[387/422] Compiling PluginCore PropertyVariableTreeNode+CodingData.swift
[388/422] Compiling PluginCore PropertyVariableTreeNode+CodingLocation.swift
[389/422] Compiling PluginCore IgnoredInitialization.swift
[390/422] Compiling PluginCore MemberwiseInitGenerator.swift
[391/422] Compiling PluginCore OptionalInitialization.swift
[392/422] Compiling PluginCore RequiredInitialization.swift
[393/422] Compiling PluginCore RequiredInitializationWithDefaultValue.swift
[394/422] Compiling PluginCore RequiredVariableInitialization.swift
[395/422] Compiling PluginCore VariableInitialization.swift
[396/422] Compiling PluginCore AliasedPropertyVariable.swift
[397/422] Compiling PluginCore AnyPropertyVariable.swift
[398/422] Compiling PluginCore Case.swift
[399/422] Compiling PluginCore CodingKeysMap.swift
[400/422] Compiling PluginCore Key.swift
[401/422] Compiling PluginCore ConstraintGenerator.swift
[402/422] Compiling PluginCore Registration.swift
[403/422] Compiling PluginCore EnumVariable.swift
[404/422] Compiling PluginCore MemberGroup.swift
[405/422] Compiling PluginCore TypeVariable.swift
[406/422] Compiling PluginCore Variable.swift
[407/422] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[408/423] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[409/423] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[410/423] Emitting module SwiftCompilerPluginMessageHandling
[411/423] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[412/423] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[413/423] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[414/423] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[415/423] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[416/423] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[417/423] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[418/423] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[419/423] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[420/425] Emitting module SwiftCompilerPlugin
[421/425] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[422/428] Compiling MacroPlugin Plugin.swift
[423/428] Emitting module MacroPlugin
[424/428] Compiling MacroPlugin Definitions.swift
[424/428] Write Objects.LinkFileList
[425/428] Linking MacroPlugin-tool
[427/446] Compiling MetaCodable IgnoreCoding.swift
[428/447] Compiling MetaCodable ContentAt.swift
[429/447] Compiling MetaCodable Default.swift
[430/447] Compiling MetaCodable IgnoreCodingInitialized.swift
[431/447] Compiling MetaCodable UnTagged.swift
[432/447] Compiling MetaCodable CodedBy.swift
[433/447] Compiling MetaCodable CodedIn.swift
[434/447] Compiling MetaCodable DynamicCodable.swift
[435/447] Compiling MetaCodable DynamicCodableIdentifier+CodingKey.swift
[436/447] Compiling MetaCodable DynamicCodableIdentifier+Expressible.swift
[437/447] Compiling MetaCodable DynamicCodableIdentifier.swift
[438/447] Compiling MetaCodable HelperCoder.swift
[439/447] Compiling MetaCodable LossySequence.swift
[440/447] Compiling MetaCodable CodedAs.swift
[441/447] Compiling MetaCodable CodedAt.swift
[442/447] Compiling MetaCodable Codable.swift
[443/447] Compiling MetaCodable CodingKeys.swift
[444/447] Emitting module MetaCodable
[445/447] Compiling MetaCodable MemberInit.swift
[446/460] Compiling HelperCoders String.swift
[447/460] Compiling HelperCoders Bool.swift
[448/461] Compiling HelperCoders SequenceCoder.swift
[449/461] Compiling HelperCoders SequenceCoderConfiguration.swift
[450/461] Compiling HelperCoders Number.swift
[451/461] Compiling HelperCoders NonConformingCoder.swift
[452/461] Compiling HelperCoders PropertyWrapperCoder.swift
[453/461] Compiling HelperCoders DefaultSequenceElementCoding.swift
[454/461] Emitting module HelperCoders
[455/461] Compiling HelperCoders Base64Coder.swift
[456/461] Compiling HelperCoders ConditionalCoder.swift
[457/461] Compiling HelperCoders DateCoder.swift
[458/461] Compiling HelperCoders Since1970DateCoder.swift
[459/461] Compiling HelperCoders ValueCoder.swift
[460/475] Compiling OpenAI File.swift
macro expansion @Codable:42:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Input.swift:137:2: note: expanded code originates here
 42 | 	@Codable @UnTagged public enum Content: Equatable, Hashable, Sendable {
 43 | 		/// Text, image, or audio input to the model, used to generate a response. Can also contain previous assistant responses.
 44 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum ContentItem: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'ContentItem' here
 45 | 			/// The detail level of the image sent to the model.
 46 | 			public enum ImageDetail: String, CaseIterable, Equatable, Hashable, Codable, Sendable {
    :
135 | 		self = .list(items)
136 | 	}
137 | }
    +--- macro expansion @Codable --------------------------------------
    |40 | extension Input.Content.ContentItem: Encodable {
    |41 |     public func encode(to encoder: any Encoder) throws {
    |42 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |43 |         var typeContainer = container
    |44 |         switch self {
    +-------------------------------------------------------------------
138 |
139 | // MARK: - Text helpers
macro expansion @Codable:32:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Input.swift:137:2: note: expanded code originates here
 19 | 	}
 20 |
 21 | 	@Codable @CodedAt("type") public enum ListItem: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'ListItem' here
 22 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 23 | 		///
    :
135 | 		self = .list(items)
136 | 	}
137 | }
    +--- macro expansion @Codable --------------------------------------
    |30 | extension Input.ListItem: Encodable {
    |31 |     public func encode(to encoder: any Encoder) throws {
    |32 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |33 |         var typeContainer = container
    |34 |         switch self {
    +-------------------------------------------------------------------
138 |
139 | // MARK: - Text helpers
[461/475] Compiling OpenAI Input.swift
macro expansion @Codable:42:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Input.swift:137:2: note: expanded code originates here
 42 | 	@Codable @UnTagged public enum Content: Equatable, Hashable, Sendable {
 43 | 		/// Text, image, or audio input to the model, used to generate a response. Can also contain previous assistant responses.
 44 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum ContentItem: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'ContentItem' here
 45 | 			/// The detail level of the image sent to the model.
 46 | 			public enum ImageDetail: String, CaseIterable, Equatable, Hashable, Codable, Sendable {
    :
135 | 		self = .list(items)
136 | 	}
137 | }
    +--- macro expansion @Codable --------------------------------------
    |40 | extension Input.Content.ContentItem: Encodable {
    |41 |     public func encode(to encoder: any Encoder) throws {
    |42 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |43 |         var typeContainer = container
    |44 |         switch self {
    +-------------------------------------------------------------------
138 |
139 | // MARK: - Text helpers
macro expansion @Codable:32:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Input.swift:137:2: note: expanded code originates here
 19 | 	}
 20 |
 21 | 	@Codable @CodedAt("type") public enum ListItem: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'ListItem' here
 22 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 23 | 		///
    :
135 | 		self = .list(items)
136 | 	}
137 | }
    +--- macro expansion @Codable --------------------------------------
    |30 | extension Input.ListItem: Encodable {
    |31 |     public func encode(to encoder: any Encoder) throws {
    |32 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |33 |         var typeContainer = container
    |34 |         switch self {
    +-------------------------------------------------------------------
138 |
139 | // MARK: - Text helpers
[462/476] Compiling OpenAI Tool.swift
macro expansion @Codable:35:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Tool.swift:428:2: note: expanded code originates here
  7 | /// - **Built-in tools**: Tools that are provided by OpenAI that extend the model's capabilities, like [web search](https://platform.openai.com/docs/guides/tools-web-search) or [file search](https://platform.openai.com/docs/guides/tools-file-search). Learn more about [built-in tools](https://platform.openai.com/docs/guides/tools).
  8 | /// - **Function calls (custom tools)**: Functions that are defined by you, enabling the model to call your own code. Learn more about [function calling](https://platform.openai.com/docs/guides/function-calling).
  9 | @Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Tool: Equatable, Hashable, Sendable {
    | `- note: in expansion of macro 'Codable' on enum 'Tool' here
 10 | 	public enum Choice: Equatable, Hashable, Sendable {
 11 | 		case none
    :
426 | 	@CodedAs("web_search_preview")
427 | 	case webSearch(WebSearch)
428 | }
    +--- macro expansion @Codable --------------------------------------
    |33 | extension Tool: Encodable {
    |34 |     public func encode(to encoder: any Encoder) throws {
    |35 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |36 |         var typeContainer = container
    |37 |         switch self {
    +-------------------------------------------------------------------
429 |
430 | public extension Tool {
[463/476] Compiling OpenAI MultiPartData.swift
[464/476] Compiling OpenAI Response.swift
[465/476] Compiling OpenAI Request.swift
[466/476] Compiling OpenAI OpenAI.swift
[467/476] Compiling OpenAI Model.swift
[468/476] Compiling OpenAI Item.swift
macro expansion @Codable:24:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
584 | 	public struct Reasoning: Equatable, Hashable, Codable, Sendable {
585 | 		/// Reasoning text contents.
586 | 		@Codable @CodedAt("type") public enum Summary: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Summary' here
587 | 			/// A short summary of the reasoning used by the model when generating the response.
588 | 			@CodedAs("summary_text")
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |22 | extension Item.Reasoning.Summary: Encodable {
    |23 |     public func encode(to encoder: any Encoder) throws {
    |24 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |25 |         var typeContainer = container
    |26 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:74:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
367 | 		///
368 | 		/// See the [computer action guide](https://platform.openai.com/docs/guides/tools-computer-use) for more information.
369 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Action: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Action' here
370 | 			/// A click action.
371 | 			///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    | 72 | extension Item.ComputerToolCall.Action: Encodable {
    | 73 |     public func encode(to encoder: any Encoder) throws {
    | 74 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |    |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    | 75 |         var typeContainer = container
    | 76 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:31:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 75 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
 76 | 		/// The content of the output message.
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Content' here
 78 | 			/// An annotation of the text output.
 79 | 			@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Annotation: Equatable, Hashable, Sendable {
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |29 | extension Item.Output.Content: Encodable {
    |30 |     public func encode(to encoder: any Encoder) throws {
    |31 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |32 |         var typeContainer = container
    |33 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:11:14: warning: literal value is already handled by previous pattern; consider removing it
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
  9 | 	///
 10 | 	/// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
 11 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Input: Equatable, Hashable, Sendable {
    |  |- note: in expansion of macro 'Codable' on enum 'Input' here
    |  `- note: in expansion of macro 'Codable' on enum 'Input' here
 12 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 13 | 		///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    | 5 |         type = try container.decode(String.self, forKey: CodingKeys.type)
    | 6 |         switch type {
    | 7 |         case "message":
    |   |              `- note: first occurrence of identical literal pattern is here
    | 8 |             let _0: Message.Input
    | 9 |             _0 = try Message.Input(from: decoder)
    |10 |             self = .inputMessage(_0)
    |11 |         case "message":
    |   |              `- warning: literal value is already handled by previous pattern; consider removing it
    |12 |             let _0: Message.Output
    |13 |             _0 = try Message.Output(from: decoder)
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:55:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
  9 | 	///
 10 | 	/// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
 11 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Input: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Input' here
 12 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 13 | 		///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |53 | extension Item.Input: Encodable {
    |54 |     public func encode(to encoder: any Encoder) throws {
    |55 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |56 |         var typeContainer = container
    |57 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:44:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
 78 | 			/// An annotation of the text output.
 79 | 			@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Annotation: Equatable, Hashable, Sendable {
    |    `- note: in expansion of macro 'Codable' on enum 'Annotation' here
 80 | 				/// A citation to a file.
 81 | 				///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |42 | extension Item.Output.Content.Annotation: Encodable {
    |43 |     public func encode(to encoder: any Encoder) throws {
    |44 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |45 |         var typeContainer = container
    |46 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:43:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 73 |
 74 | 	/// Content items generated by the model.
 75 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Output' here
 76 | 		/// The content of the output message.
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |41 | extension Item.Output: Encodable {
    |42 |     public func encode(to encoder: any Encoder) throws {
    |43 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |44 |         var typeContainer = container
    |45 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:26:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
533 | 	@Codable @CodingKeys(.snake_case) public struct ComputerToolCallOutput: Equatable, Hashable, Sendable {
534 | 		/// A computer screenshot image used with the computer use tool.
535 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Output' here
536 | 			/// A computer screenshot image used with the computer use tool.
537 | 			/// - Parameter fileId: The identifier of an uploaded file that contains the screenshot.
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |24 | extension Item.ComputerToolCallOutput.Output: Encodable {
    |25 |     public func encode(to encoder: any Encoder) throws {
    |26 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |27 |         var typeContainer = container
    |28 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
[469/476] Compiling OpenAI Message.swift
macro expansion @Codable:24:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
584 | 	public struct Reasoning: Equatable, Hashable, Codable, Sendable {
585 | 		/// Reasoning text contents.
586 | 		@Codable @CodedAt("type") public enum Summary: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Summary' here
587 | 			/// A short summary of the reasoning used by the model when generating the response.
588 | 			@CodedAs("summary_text")
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |22 | extension Item.Reasoning.Summary: Encodable {
    |23 |     public func encode(to encoder: any Encoder) throws {
    |24 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |25 |         var typeContainer = container
    |26 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:74:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
367 | 		///
368 | 		/// See the [computer action guide](https://platform.openai.com/docs/guides/tools-computer-use) for more information.
369 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Action: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Action' here
370 | 			/// A click action.
371 | 			///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    | 72 | extension Item.ComputerToolCall.Action: Encodable {
    | 73 |     public func encode(to encoder: any Encoder) throws {
    | 74 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |    |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    | 75 |         var typeContainer = container
    | 76 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:31:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 75 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
 76 | 		/// The content of the output message.
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Content' here
 78 | 			/// An annotation of the text output.
 79 | 			@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Annotation: Equatable, Hashable, Sendable {
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |29 | extension Item.Output.Content: Encodable {
    |30 |     public func encode(to encoder: any Encoder) throws {
    |31 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |32 |         var typeContainer = container
    |33 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:11:14: warning: literal value is already handled by previous pattern; consider removing it
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
  9 | 	///
 10 | 	/// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
 11 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Input: Equatable, Hashable, Sendable {
    |  |- note: in expansion of macro 'Codable' on enum 'Input' here
    |  `- note: in expansion of macro 'Codable' on enum 'Input' here
 12 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 13 | 		///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    | 5 |         type = try container.decode(String.self, forKey: CodingKeys.type)
    | 6 |         switch type {
    | 7 |         case "message":
    |   |              `- note: first occurrence of identical literal pattern is here
    | 8 |             let _0: Message.Input
    | 9 |             _0 = try Message.Input(from: decoder)
    |10 |             self = .inputMessage(_0)
    |11 |         case "message":
    |   |              `- warning: literal value is already handled by previous pattern; consider removing it
    |12 |             let _0: Message.Output
    |13 |             _0 = try Message.Output(from: decoder)
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:55:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
  9 | 	///
 10 | 	/// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
 11 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Input: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Input' here
 12 | 		/// A message input to the model with a role indicating instruction following hierarchy.
 13 | 		///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |53 | extension Item.Input: Encodable {
    |54 |     public func encode(to encoder: any Encoder) throws {
    |55 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |56 |         var typeContainer = container
    |57 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:44:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
 78 | 			/// An annotation of the text output.
 79 | 			@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Annotation: Equatable, Hashable, Sendable {
    |    `- note: in expansion of macro 'Codable' on enum 'Annotation' here
 80 | 				/// A citation to a file.
 81 | 				///
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |42 | extension Item.Output.Content.Annotation: Encodable {
    |43 |     public func encode(to encoder: any Encoder) throws {
    |44 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |45 |         var typeContainer = container
    |46 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:43:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
 73 |
 74 | 	/// Content items generated by the model.
 75 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Output' here
 76 | 		/// The content of the output message.
 77 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Content: Equatable, Hashable, Sendable {
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |41 | extension Item.Output: Encodable {
    |42 |     public func encode(to encoder: any Encoder) throws {
    |43 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |44 |         var typeContainer = container
    |45 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
macro expansion @Codable:26:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Item.swift:622:2: note: expanded code originates here
533 | 	@Codable @CodingKeys(.snake_case) public struct ComputerToolCallOutput: Equatable, Hashable, Sendable {
534 | 		/// A computer screenshot image used with the computer use tool.
535 | 		@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Output: Equatable, Hashable, Sendable {
    |   `- note: in expansion of macro 'Codable' on enum 'Output' here
536 | 			/// A computer screenshot image used with the computer use tool.
537 | 			/// - Parameter fileId: The identifier of an uploaded file that contains the screenshot.
    :
620 | 	case input(Input)
621 | 	case output(Output)
622 | }
    +--- macro expansion @Codable --------------------------------------
    |24 | extension Item.ComputerToolCallOutput.Output: Encodable {
    |25 |     public func encode(to encoder: any Encoder) throws {
    |26 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |27 |         var typeContainer = container
    |28 |         switch self {
    +-------------------------------------------------------------------
623 |
624 | // MARK: - Item.Input Creating helpers
[470/476] Compiling OpenAI Config.swift
macro expansion @Codable:34:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Config.swift:84:2: note: expanded code originates here
 49 | public struct TextConfig: Equatable, Hashable, Codable, Sendable {
 50 | 	/// An object specifying the format that the model must output.
 51 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Format: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Format' here
 52 | 		/// Used to generate text responses.
 53 | 		case text
    :
 82 | 		self.format = format
 83 | 	}
 84 | }
    +--- macro expansion @Codable --------------------------------------
    |32 | extension TextConfig.Format: Encodable {
    |33 |     public func encode(to encoder: any Encoder) throws {
    |34 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |35 |         var typeContainer = container
    |36 |         switch self {
    +-------------------------------------------------------------------
 85 |
 86 | /// The truncation strategy to use for the model response.
macro expansion @Codable:202:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Event.swift:239:2: note: expanded code originates here
  3 |
  4 | /// A streaming event emitted by the Responses API
  5 | @Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Event: Equatable, Sendable {
    | `- note: in expansion of macro 'Codable' on enum 'Event' here
  6 | 	/// An event that is emitted when a response is created.
  7 | 	///
    :
237 | 	@CodedAs("error")
238 | 	case error(error: Response.Error)
239 | }
    +--- macro expansion @Codable --------------------------------------
    |200 | extension Event: Encodable {
    |201 |     public func encode(to encoder: any Encoder) throws {
    |202 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |    |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |203 |         var typeContainer = container
    |204 |         switch self {
    +-------------------------------------------------------------------
240 |
[471/476] Compiling OpenAI Event.swift
macro expansion @Codable:34:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Config.swift:84:2: note: expanded code originates here
 49 | public struct TextConfig: Equatable, Hashable, Codable, Sendable {
 50 | 	/// An object specifying the format that the model must output.
 51 | 	@Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Format: Equatable, Hashable, Sendable {
    |  `- note: in expansion of macro 'Codable' on enum 'Format' here
 52 | 		/// Used to generate text responses.
 53 | 		case text
    :
 82 | 		self.format = format
 83 | 	}
 84 | }
    +--- macro expansion @Codable --------------------------------------
    |32 | extension TextConfig.Format: Encodable {
    |33 |     public func encode(to encoder: any Encoder) throws {
    |34 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |   |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |35 |         var typeContainer = container
    |36 |         switch self {
    +-------------------------------------------------------------------
 85 |
 86 | /// The truncation strategy to use for the model response.
macro expansion @Codable:202:13: warning: variable 'container' was never mutated; consider changing to 'let' constant
`- /Users/admin/builder/spi-builder-workspace/src/Models/Event.swift:239:2: note: expanded code originates here
  3 |
  4 | /// A streaming event emitted by the Responses API
  5 | @Codable @CodedAt("type") @CodingKeys(.snake_case) public enum Event: Equatable, Sendable {
    | `- note: in expansion of macro 'Codable' on enum 'Event' here
  6 | 	/// An event that is emitted when a response is created.
  7 | 	///
    :
237 | 	@CodedAs("error")
238 | 	case error(error: Response.Error)
239 | }
    +--- macro expansion @Codable --------------------------------------
    |200 | extension Event: Encodable {
    |201 |     public func encode(to encoder: any Encoder) throws {
    |202 |         var container = encoder.container(keyedBy: CodingKeys.self)
    |    |             `- warning: variable 'container' was never mutated; consider changing to 'let' constant
    |203 |         var typeContainer = container
    |204 |         switch self {
    +-------------------------------------------------------------------
240 |
[472/476] Compiling OpenAI Conversation.swift
[473/476] Compiling OpenAI AsyncBytes+collect.swift
[474/476] Emitting module OpenAI
[474/476] Write Objects.LinkFileList
[475/476] Archiving libOpenAI.a
Build complete! (52.33s)
Fetching https://github.com/SwiftyLab/MetaCodable.git
[1/54093] Fetching metacodable
Fetched https://github.com/SwiftyLab/MetaCodable.git from cache (3.38s)
Computing version for https://github.com/SwiftyLab/MetaCodable.git
Computed https://github.com/SwiftyLab/MetaCodable.git at 1.4.0 (6.59s)
Fetching https://github.com/swiftlang/swift-syntax.git
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/apple/swift-collections.git
[1/16650] Fetching swift-collections
[501/32030] Fetching swift-collections, swift-argument-parser
[28035/102981] Fetching swift-collections, swift-argument-parser, swift-syntax
Fetched https://github.com/apple/swift-argument-parser.git from cache (4.03s)
Fetched https://github.com/apple/swift-collections.git from cache (4.03s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (4.03s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (4.52s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (2.09s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.52s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 600.0.1
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.5.1
Creating working copy for https://github.com/SwiftyLab/MetaCodable.git
Working copy of https://github.com/SwiftyLab/MetaCodable.git resolved at 1.4.0
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.0.9.909-MacroSupport-macos_aarch64.zip
Build complete.
{
  "dependencies" : [
    {
      "identity" : "metacodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftyLab/MetaCodable.git"
    }
  ],
  "manifest_display_name" : "OpenAI",
  "name" : "OpenAI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "OpenAI",
      "targets" : [
        "OpenAI"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OpenAI",
      "module_type" : "SwiftTarget",
      "name" : "OpenAI",
      "path" : "src",
      "product_dependencies" : [
        "MetaCodable",
        "HelperCoders"
      ],
      "product_memberships" : [
        "OpenAI"
      ],
      "sources" : [
        "Conversation.swift",
        "Extensions/AsyncBytes+collect.swift",
        "Models/Config.swift",
        "Models/Event.swift",
        "Models/File.swift",
        "Models/Input.swift",
        "Models/Item.swift",
        "Models/Message.swift",
        "Models/Model.swift",
        "Models/Request.swift",
        "Models/Response.swift",
        "Models/Tool.swift",
        "OpenAI.swift",
        "Support/MultiPartData.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.