Build Information
Successful build of OpenAI, reference main (110b63
), with Swift 6.0 for macOS (SPM) on 25 Jun 2025 07:05:38 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.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.0
Building package at path: $PWD
https://github.com/m1guelpf/swift-openai-responses.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin GenerateManual
/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`.
51 |
52 | // Setup folder
53 | let genFolder = context.pluginWorkDirectory.appending(["ProtocolGen"])
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
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`.
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`.
56 | )
57 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/MetaCodable/Plugins/MetaProtocolCodable/Plugin.swift:63:37: warning: 'path' is deprecated: renamed to 'url'
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'
| `- 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`.
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`.
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`.
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`.
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`.
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`.
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'
69 | Parse source file "\(fileName)" in module "\(moduleName)"
70 | """,
71 | executable: tool.path,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- 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'
72 | arguments: [
73 | "parse",
74 | file.path.string,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- 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`.
72 | arguments: [
73 | "parse",
74 | file.path.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
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`.
74 | file.path.string,
75 | "--output",
76 | genFile.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
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'
76 | genFile.string,
77 | ],
78 | inputFiles: [file.path],
| |- warning: 'path' is deprecated: renamed to 'url'
| `- 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`.
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`.
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`.
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`.
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`.
91 | }
92 | for file in intermFiles {
93 | genArgs.append(file.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
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`.
94 | }
95 | buildCommands.append(
96 | .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
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'
98 | Generate protocol decoding/encoding syntax for "\(moduleName)"
99 | """,
100 | executable: tool.path,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
101 | arguments: genArgs,
102 | inputFiles: intermFiles,
/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`.
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`.
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`.
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`.
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`.
70 | let path = Path(file)
71 | return name.lowercased()
72 | == path.stem
| `- warning: 'stem' is deprecated: Use `URL` type instead of `Path`.
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`.
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`.
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`.
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`.
79 | }
80 | }
[2/2] Compiling plugin MetaProtocolCodable
Building for debugging...
[2/29] Write sources
[23/29] Compiling _SwiftSyntaxCShims dummy.c
[24/29] Write swift-version-5BDAB9E9C0126B9D.txt
[26/49] Emitting module SwiftSyntax510
[27/49] Compiling SwiftSyntax510 Empty.swift
[28/49] Compiling SwiftSyntax509 Empty.swift
[29/49] Emitting module SwiftSyntax509
[30/49] Emitting module SwiftSyntax600
[31/49] Compiling SwiftSyntax600 Empty.swift
[32/49] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[33/49] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[34/50] Compiling InternalCollectionsUtilities Descriptions.swift
[35/50] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[36/50] Compiling InternalCollectionsUtilities Debugging.swift
[37/50] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[38/50] Compiling InternalCollectionsUtilities UInt+reversed.swift
[39/50] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[40/50] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[41/50] Emitting module InternalCollectionsUtilities
[42/50] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[43/50] Compiling InternalCollectionsUtilities Integer rank.swift
[44/50] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[45/50] Compiling InternalCollectionsUtilities _SortedCollection.swift
[46/50] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[47/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[48/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[49/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[50/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[51/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[52/171] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[53/171] Compiling OrderedCollections OrderedSet+Codable.swift
[54/171] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[55/171] Compiling OrderedCollections OrderedSet+Descriptions.swift
[56/171] Compiling OrderedCollections OrderedSet+Diffing.swift
[57/171] Compiling OrderedCollections OrderedSet+Equatable.swift
[58/171] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[59/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[60/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[61/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[62/177] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[63/177] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[64/177] Compiling OrderedCollections OrderedSet+Sendable.swift
[65/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[66/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[67/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[68/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[69/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[70/177] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[71/177] Compiling OrderedCollections OrderedDictionary+Elements.swift
[72/177] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[73/177] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[74/177] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[75/177] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[76/177] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[77/177] Compiling OrderedCollections _Hashtable+Header.swift
[78/177] Compiling OrderedCollections OrderedDictionary+Codable.swift
[79/177] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[80/177] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[81/177] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[82/177] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[83/177] Compiling OrderedCollections OrderedSet+Hashable.swift
[84/177] Compiling OrderedCollections OrderedSet+Initializers.swift
[85/177] Compiling OrderedCollections OrderedSet+Insertions.swift
[86/177] Compiling OrderedCollections OrderedSet+Invariants.swift
[87/177] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[88/177] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[89/177] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[90/177] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[91/177] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[92/177] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[93/177] Compiling OrderedCollections OrderedDictionary+Values.swift
[94/177] Compiling OrderedCollections OrderedDictionary.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
[124/184] Emitting module SwiftSyntax
[157/184] Compiling SwiftSyntax RawSyntaxValidation.swift
[158/184] Compiling SwiftSyntax SyntaxNodesAB.swift
[159/184] Compiling SwiftSyntax SyntaxNodesC.swift
[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 SwiftBasicFormat SyntaxProtocol+Formatted.swift
[182/242] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[183/242] Compiling SwiftDiagnostics Diagnostic.swift
[184/242] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[185/242] Compiling SwiftDiagnostics Message.swift
[186/243] Emitting module SwiftDiagnostics
[187/243] Compiling SwiftDiagnostics Convenience.swift
[188/243] Compiling SwiftDiagnostics Note.swift
[189/243] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[190/243] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[191/243] Compiling SwiftDiagnostics FixIt.swift
[192/243] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[193/243] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[194/243] Compiling SwiftBasicFormat InferIndentation.swift
[195/243] Compiling SwiftBasicFormat Syntax+Extensions.swift
[196/243] Emitting module SwiftBasicFormat
[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] Emitting module SwiftParser
[216/247] Compiling SwiftParser Recovery.swift
[217/247] Compiling SwiftParser Specifiers.swift
[218/247] Compiling SwiftParser Statements.swift
[219/247] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[220/247] Compiling SwiftParser Nominals.swift
[221/247] Compiling SwiftParser Parameters.swift
[222/247] Compiling SwiftParser ParseSourceFile.swift
[223/247] Compiling SwiftParser Parser.swift
[224/247] Compiling SwiftParser Patterns.swift
[225/247] Compiling SwiftParser Directives.swift
[226/247] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[227/247] Compiling SwiftParser Expressions.swift
[228/247] Compiling SwiftParser IncrementalParseTransition.swift
[229/247] Compiling SwiftParser IsValidIdentifier.swift
[230/247] Compiling SwiftParser Attributes.swift
[231/247] Compiling SwiftParser Availability.swift
[232/247] Compiling SwiftParser CharacterInfo.swift
[233/247] Compiling SwiftParser CollectionNodes+Parsable.swift
[234/247] Compiling SwiftParser Declarations.swift
[235/247] Compiling SwiftParser Cursor.swift
[236/247] Compiling SwiftParser Lexeme.swift
[237/247] Compiling SwiftParser LexemeSequence.swift
[238/247] Compiling SwiftParser Lexer.swift
[239/247] Compiling SwiftParser RegexLiteralLexer.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 PrecedenceGraph.swift
[246/271] Compiling SwiftOperators PrecedenceGroup.swift
[247/272] Compiling SwiftParserDiagnostics PresenceUtils.swift
[248/272] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[249/272] Compiling SwiftOperators Operator.swift
[250/272] Compiling SwiftOperators OperatorError.swift
[251/272] Compiling SwiftOperators OperatorTable+Semantics.swift
[252/272] Compiling SwiftOperators OperatorTable+Defaults.swift
[253/272] Compiling SwiftOperators OperatorTable.swift
[254/272] Compiling SwiftOperators OperatorError+Diagnostics.swift
[255/272] Emitting module SwiftOperators
[256/272] Compiling SwiftOperators OperatorTable+Folding.swift
[257/272] Compiling SwiftOperators SyntaxSynthesis.swift
[258/272] Compiling SwiftParserDiagnostics Utils.swift
[259/272] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[260/272] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[261/272] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[262/272] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[263/272] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[264/272] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[265/272] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[266/272] Compiling SwiftParserDiagnostics MissingNodesError.swift
[267/272] Compiling SwiftParserDiagnostics MissingTokenError.swift
[268/272] Emitting module SwiftParserDiagnostics
[269/287] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[270/287] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[271/288] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[272/288] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[273/288] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[274/288] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[275/288] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[276/288] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[277/288] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[278/288] Emitting module SwiftSyntaxBuilder
[279/288] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[280/288] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[281/288] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[282/288] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[283/288] Compiling SwiftSyntaxBuilder Indenter.swift
[284/288] Compiling SwiftSyntaxBuilder ListBuilder.swift
[285/306] Compiling SwiftSyntaxMacros PreambleMacro.swift
[286/307] Compiling SwiftSyntaxMacros Macro.swift
[287/307] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[288/307] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[289/307] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[290/307] Compiling SwiftSyntaxMacros MemberMacro.swift
[291/307] Compiling SwiftSyntaxMacros PeerMacro.swift
[292/307] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[293/307] Compiling SwiftSyntaxMacros AccessorMacro.swift
[294/307] Compiling SwiftSyntaxMacros AttachedMacro.swift
[295/307] Compiling SwiftSyntaxMacros BodyMacro.swift
[296/307] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[297/307] Compiling SwiftSyntaxMacros Macro+Format.swift
[298/307] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[299/307] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[300/307] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[301/307] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[302/307] Emitting module SwiftSyntaxMacros
[303/307] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[304/401] Emitting module SwiftSyntaxMacroExpansion
[305/401] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[306/401] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[307/401] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[308/401] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[309/401] Emitting module PluginCore
[310/410] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[311/410] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[312/410] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[313/410] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[314/410] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[315/410] Compiling PluginCore DiagnosticProducer.swift
[316/410] Compiling PluginCore DuplicateUsage.swift
[317/410] Compiling PluginCore GroupedVariableDeclaration.swift
[318/410] Compiling PluginCore InvalidCombination.swift
[319/410] Compiling PluginCore InvalidDeclaration.swift
[320/410] Compiling PluginCore MetaCodableMessage.swift
[321/410] Compiling PluginCore StaticVariableDeclaration.swift
[322/410] Compiling PluginCore UninitializedVariableDecl.swift
[323/410] Compiling PluginCore AttributeExpander.swift
[324/410] Compiling PluginCore MemberInit+Expansion.swift
[325/410] Compiling PluginCore MemberInit.swift
[326/410] Compiling PluginCore PeerAttribute.swift
[327/410] Compiling PluginCore AggregatedDiagnosticProducer.swift
[328/410] Compiling PluginCore CombinedUsage.swift
[329/410] Compiling PluginCore ArgumentCountCondition.swift
[330/410] Compiling PluginCore DeclarationCondition.swift
[331/410] Compiling PluginCore DiagnosticCondition.swift
[332/410] Compiling PluginCore ConditionalDiagnosticProducer.swift
[333/410] Compiling PluginCore CodedAs.swift
[334/410] Compiling PluginCore CodedBy.swift
[335/410] Compiling PluginCore Default.swift
[336/410] Compiling PluginCore IgnoreCoding.swift
[337/410] Compiling PluginCore IgnoreDecoding.swift
[338/410] Compiling PluginCore IgnoreEncoding.swift
[339/410] Compiling PluginCore CodedAt.swift
[340/410] Compiling PluginCore CodedIn.swift
[341/410] Compiling PluginCore ContentAt.swift
[342/410] Compiling PluginCore KeyPathProvider.swift
[343/410] Compiling PluginCore AttributableDeclSyntax.swift
[344/410] Compiling PluginCore Attribute.swift
[345/410] Compiling PluginCore Codable+Expansion.swift
[346/410] Compiling PluginCore Codable.swift
[347/410] Compiling PluginCore CodingKeyTransformer.swift
[348/410] Compiling PluginCore CodingKeys.swift
[349/410] Compiling PluginCore Strategy.swift
[350/410] Compiling PluginCore IgnoreCodingInitialized.swift
[351/410] Compiling PluginCore Inherits.swift
[352/410] Compiling PluginCore UnTagged.swift
[353/410] Compiling PluginCore AdjacentlyTaggedEnumSwitcher.swift
[354/410] Compiling PluginCore AnyEnumSwitcher.swift
[355/410] Compiling PluginCore EnumSwitcherVariable.swift
[356/410] Compiling PluginCore ExternallyTaggedEnumSwitcher.swift
[357/410] Compiling PluginCore InternallyTaggedEnumSwitcher.swift
[358/410] Compiling PluginCore TaggedEnumSwitcherVariable.swift
[359/410] Compiling PluginCore UnTaggedEnumSwitcher.swift
[360/410] Compiling PluginCore AnyInitialization.swift
[361/410] Compiling PluginCore AnyRequiredVariableInitialization.swift
[362/410] Compiling PluginCore DeclModifiersGenerator.swift
[363/410] Compiling PluginCore Options.swift
[364/410] Compiling PluginCore ComposedVariable.swift
[365/410] Compiling PluginCore ConditionalCodingVariable.swift
[366/410] Compiling PluginCore AssociatedVariable.swift
[367/410] Compiling PluginCore BasicAssociatedVariable.swift
[368/410] Compiling PluginCore BasicEnumCaseVariable.swift
[369/410] Compiling PluginCore EnumCaseVariable.swift
[370/410] Compiling PluginCore AdjacentlyTaggableSwitcher.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 IgnoredInitialization.swift
[381/422] Compiling PluginCore MemberwiseInitGenerator.swift
[382/422] Compiling PluginCore OptionalInitialization.swift
[383/422] Compiling PluginCore RequiredInitialization.swift
[384/422] Compiling PluginCore RequiredInitializationWithDefaultValue.swift
[385/422] Compiling PluginCore RequiredVariableInitialization.swift
[386/422] Compiling PluginCore VariableInitialization.swift
[387/422] Compiling PluginCore AliasedPropertyVariable.swift
[388/422] Compiling PluginCore AnyPropertyVariable.swift
[389/422] Compiling PluginCore BasicPropertyVariable.swift
[390/422] Compiling PluginCore DecodingFallback.swift
[391/422] Compiling PluginCore DefaultValueVariable.swift
[392/422] Compiling PluginCore HelperCodedVariable.swift
[393/422] Compiling PluginCore InitializationVariable.swift
[394/422] Compiling PluginCore KeyedVariable.swift
[395/422] Compiling PluginCore PropertyVariable.swift
[396/422] Compiling PluginCore PropertyVariableTreeNode+CodingData.swift
[397/422] Compiling PluginCore PropertyVariableTreeNode+CodingLocation.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 LRUCache.swift
[408/423] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[409/423] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[410/423] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[411/423] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[412/423] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[413/423] Emitting module SwiftCompilerPluginMessageHandling
[414/423] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[415/423] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[416/423] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[417/423] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[418/423] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[419/423] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[420/425] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[421/425] Emitting module SwiftCompilerPlugin
[422/428] Compiling MacroPlugin Plugin.swift
[423/428] Compiling MacroPlugin Definitions.swift
[424/428] Emitting module MacroPlugin
[424/428] Write Objects.LinkFileList
[425/428] Linking MacroPlugin-tool
[427/446] Compiling MetaCodable IgnoreCoding.swift
[428/447] Compiling MetaCodable DynamicCodable.swift
[429/447] Compiling MetaCodable DynamicCodableIdentifier+CodingKey.swift
[430/447] Compiling MetaCodable HelperCoder.swift
[431/447] Compiling MetaCodable LossySequence.swift
[432/447] Compiling MetaCodable IgnoreCodingInitialized.swift
[433/447] Compiling MetaCodable UnTagged.swift
[434/447] Compiling MetaCodable CodedBy.swift
[435/447] Compiling MetaCodable CodedIn.swift
[436/447] Compiling MetaCodable CodedAs.swift
[437/447] Compiling MetaCodable CodedAt.swift
[438/447] Compiling MetaCodable DynamicCodableIdentifier+Expressible.swift
[439/447] Compiling MetaCodable DynamicCodableIdentifier.swift
[440/447] Compiling MetaCodable ContentAt.swift
[441/447] Compiling MetaCodable Default.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/461] Compiling HelperCoders SequenceCoder.swift
[448/461] Compiling HelperCoders SequenceCoderConfiguration.swift
[449/461] Compiling HelperCoders Number.swift
[450/461] Compiling HelperCoders DefaultSequenceElementCoding.swift
[451/461] Compiling HelperCoders Bool.swift
[452/461] Compiling HelperCoders NonConformingCoder.swift
[453/461] Compiling HelperCoders PropertyWrapperCoder.swift
[454/461] Emitting module HelperCoders
[455/461] Compiling HelperCoders DateCoder.swift
[456/461] Compiling HelperCoders Since1970DateCoder.swift
[457/461] Compiling HelperCoders Base64Coder.swift
[458/461] Compiling HelperCoders ConditionalCoder.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:75:4: note: expanded code originates here
73 | filename: String? = nil
74 | )
75 | }
+--- 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 {
+-------------------------------------------------------------------
76 |
77 | /// A text input to the model, equivalent to a text input.
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:39:3: note: expanded code originates here
37 | /// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
38 | case item(Item.Input)
39 | }
+--- 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 {
+-------------------------------------------------------------------
40 |
41 | /// Text, image, or audio input to the model, used to generate a response. Can also contain previous assistant responses.
[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:75:4: note: expanded code originates here
73 | filename: String? = nil
74 | )
75 | }
+--- 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 {
+-------------------------------------------------------------------
76 |
77 | /// A text input to the model, equivalent to a text input.
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:39:3: note: expanded code originates here
37 | /// Can contain text, images, and audio inputs, as well as previous assistant responses and tool call outputs.
38 | case item(Item.Input)
39 | }
+--- 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 {
+-------------------------------------------------------------------
40 |
41 | /// Text, image, or audio input to the model, used to generate a response. Can also contain previous assistant responses.
[462/475] Compiling OpenAI OpenAI.swift
[463/475] Compiling OpenAI Response.swift
[464/475] Compiling OpenAI Model.swift
[465/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:73:3: note: expanded code originates here
71 | @CodedAs("json_object")
72 | case jsonObject
73 | }
+--- 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 {
+-------------------------------------------------------------------
74 |
75 | /// An object specifying the format that the model must output.
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
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 |
[466/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:73:3: note: expanded code originates here
71 | @CodedAs("json_object")
72 | case jsonObject
73 | }
+--- 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 {
+-------------------------------------------------------------------
74 |
75 | /// An object specifying the format that the model must output.
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
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 |
[467/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
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 {
[468/476] Compiling OpenAI Request.swift
[469/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:590:4: note: expanded code originates here
588 | @CodedAs("summary_text")
589 | case text(_ text: String)
590 | }
+--- 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 {
+-------------------------------------------------------------------
591 |
592 | /// The status of the reasoning data.
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:444:4: note: expanded code originates here
442 | /// > Note: This action is not part of the official API. An invalid action gets returned in some cases when streaming back responses, so this catches it.
443 | case none
444 | }
+--- 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 {
+-------------------------------------------------------------------
445 |
446 | /// Indicates which mouse button was pressed during the click.
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:141:4: note: expanded code originates here
139 | }
140 | }
141 | }
+--- 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 {
+-------------------------------------------------------------------
142 |
143 | /// An output message from the model.
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:72:3: note: expanded code originates here
70 | }
71 | }
72 | }
+--- 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)
+-------------------------------------------------------------------
73 |
74 | /// Content items generated by the model.
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:72:3: note: expanded code originates here
70 | }
71 | }
72 | }
+--- 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 {
+-------------------------------------------------------------------
73 |
74 | /// Content items generated by the model.
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:112:5: note: expanded code originates here
110 | index: UInt
111 | )
112 | }
+--- 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 {
+-------------------------------------------------------------------
113 |
114 | /// A text output from the model.
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:176:3: note: expanded code originates here
174 | }
175 | }
176 | }
+--- 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 {
+-------------------------------------------------------------------
177 |
178 | /// The results of a file search tool call.
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:544:4: note: expanded code originates here
542 | imageUrl: String?
543 | )
544 | }
+--- 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 {
+-------------------------------------------------------------------
545 |
546 | /// The ID of the computer tool call output. Populated when this item is returned via API.
[470/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:590:4: note: expanded code originates here
588 | @CodedAs("summary_text")
589 | case text(_ text: String)
590 | }
+--- 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 {
+-------------------------------------------------------------------
591 |
592 | /// The status of the reasoning data.
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:444:4: note: expanded code originates here
442 | /// > Note: This action is not part of the official API. An invalid action gets returned in some cases when streaming back responses, so this catches it.
443 | case none
444 | }
+--- 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 {
+-------------------------------------------------------------------
445 |
446 | /// Indicates which mouse button was pressed during the click.
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:141:4: note: expanded code originates here
139 | }
140 | }
141 | }
+--- 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 {
+-------------------------------------------------------------------
142 |
143 | /// An output message from the model.
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:72:3: note: expanded code originates here
70 | }
71 | }
72 | }
+--- 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)
+-------------------------------------------------------------------
73 |
74 | /// Content items generated by the model.
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:72:3: note: expanded code originates here
70 | }
71 | }
72 | }
+--- 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 {
+-------------------------------------------------------------------
73 |
74 | /// Content items generated by the model.
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:112:5: note: expanded code originates here
110 | index: UInt
111 | )
112 | }
+--- 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 {
+-------------------------------------------------------------------
113 |
114 | /// A text output from the model.
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:176:3: note: expanded code originates here
174 | }
175 | }
176 | }
+--- 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 {
+-------------------------------------------------------------------
177 |
178 | /// The results of a file search tool call.
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:544:4: note: expanded code originates here
542 | imageUrl: String?
543 | )
544 | }
+--- 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 {
+-------------------------------------------------------------------
545 |
546 | /// The ID of the computer tool call output. Populated when this item is returned via API.
[471/476] Compiling OpenAI MultiPartData.swift
[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! (54.38s)
Fetching https://github.com/SwiftyLab/MetaCodable.git
[1/54093] Fetching metacodable
Fetched https://github.com/SwiftyLab/MetaCodable.git from cache (2.93s)
Computing version for https://github.com/SwiftyLab/MetaCodable.git
Computed https://github.com/SwiftyLab/MetaCodable.git at 1.4.0 (3.20s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/swiftlang/swift-syntax.git
Fetching https://github.com/apple/swift-argument-parser.git
[1/16650] Fetching swift-collections
[667/32030] Fetching swift-collections, swift-argument-parser
[32031/102981] Fetching swift-collections, swift-argument-parser, swift-syntax
Fetched https://github.com/apple/swift-argument-parser.git from cache (3.24s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (3.24s)
Fetched https://github.com/apple/swift-collections.git from cache (3.24s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (0.46s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (2.44s)
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/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/SwiftyLab/MetaCodable.git
Working copy of https://github.com/SwiftyLab/MetaCodable.git resolved at 1.4.0
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/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
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.