This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of OpenAISwift with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/adamrushy/OpenAISwift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/adamrushy/OpenAISwift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at ca66fb7 Merge pull request #97 from adamrushy/feature/renaming-implementation
Cloned https://github.com/adamrushy/OpenAISwift.git
Revision (git rev-parse @):
ca66fb720d6ebb657601db5a0852b830ae310a4c
SUCCESS checkout https://github.com/adamrushy/OpenAISwift.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/adamrushy/OpenAISwift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/13] Compiling OpenAISwift OpenAISwift.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:10:10: warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
  8 |     case genericError(error: Error)
  9 |     case decodingError(error: Error)
 10 |     case chatError(error: ChatError.Payload)
    |          `- warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
 11 | }
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/Models/ChatMessage.swift:95:19: note: consider making struct 'Payload' conform to the 'Sendable' protocol
 93 |
 94 | public struct ChatError: Codable {
 95 |     public struct Payload: Codable {
    |                   `- note: consider making struct 'Payload' conform to the 'Sendable' protocol
 96 |         public let message, type: String
 97 |         public let param, code: String?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:296:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
294 |         let task = session.dataTask(with: request) { (data, response, error) in
295 |             if let error = error {
296 |                 completionHandler(.failure(error))
    |                 |- warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
297 |             } else if let data = data {
298 |                 completionHandler(.success(data))
[4/13] Compiling OpenAISwift OpenAI.swift
[5/13] Compiling OpenAISwift OpenAIModelType.swift
[6/13] Compiling OpenAISwift Moderation.swift
[7/13] Compiling OpenAISwift Instruction.swift
[8/13] Compiling OpenAISwift ImageGeneration.swift
[9/13] Emitting module OpenAISwift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:10:10: warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
  8 |     case genericError(error: Error)
  9 |     case decodingError(error: Error)
 10 |     case chatError(error: ChatError.Payload)
    |          `- warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
 11 | }
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/Models/ChatMessage.swift:95:19: note: consider making struct 'Payload' conform to the 'Sendable' protocol
 93 |
 94 | public struct ChatError: Codable {
 95 |     public struct Payload: Codable {
    |                   `- note: consider making struct 'Payload' conform to the 'Sendable' protocol
 96 |         public let message, type: String
 97 |         public let param, code: String?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:10:7: warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | class ServerSentEventsHandler: NSObject {
   |       `- warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:12:9: warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
10 | class ServerSentEventsHandler: NSObject {
11 |
12 |     var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
   |         `- warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
13 |     var onComplete: (() -> Void)?
14 |
[10/13] Compiling OpenAISwift OpenAIEndpoint.swift
[11/13] Compiling OpenAISwift EmbeddingsInput.swift
[12/13] Compiling OpenAISwift ChatMessage.swift
[13/13] Compiling OpenAISwift Command.swift
[14/14] Compiling OpenAISwift ServerSentEventsHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:10:7: warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | class ServerSentEventsHandler: NSObject {
   |       `- warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:12:9: warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
10 | class ServerSentEventsHandler: NSObject {
11 |
12 |     var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
   |         `- warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
13 |     var onComplete: (() -> Void)?
14 |
Build complete! (23.31s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "OpenAISwift",
  "name" : "OpenAISwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "OpenAISwift",
      "targets" : [
        "OpenAISwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OpenAISwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAISwiftTests",
      "path" : "Tests/OpenAISwiftTests",
      "sources" : [
        "OpenAISwiftTests.swift"
      ],
      "target_dependencies" : [
        "OpenAISwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAISwift",
      "module_type" : "SwiftTarget",
      "name" : "OpenAISwift",
      "path" : "Sources/OpenAISwift",
      "product_memberships" : [
        "OpenAISwift"
      ],
      "sources" : [
        "Models/ChatMessage.swift",
        "Models/Command.swift",
        "Models/EmbeddingsInput.swift",
        "Models/ImageGeneration.swift",
        "Models/Instruction.swift",
        "Models/Moderation.swift",
        "Models/OpenAI.swift",
        "Models/OpenAIModelType.swift",
        "OpenAIEndpoint.swift",
        "OpenAISwift.swift",
        "ServerSentEventsHandler.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.