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

Failed to build SwiftChatGPT, reference main (1fd0f1), with Swift 6.0 for Linux on 29 Nov 2024 19:15:15 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/migueldeicaza/SwiftChatGPT.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/migueldeicaza/SwiftChatGPT
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1fd0f18 Assist the user slightly, and handle modern errors that lack a code
Cloned https://github.com/migueldeicaza/SwiftChatGPT.git
Revision (git rev-parse @):
1fd0f18c1ce654fc05714f919004b080e327326e
SUCCESS checkout https://github.com/migueldeicaza/SwiftChatGPT.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/migueldeicaza/SwiftChatGPT.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/5] Compiling SwiftChatGPT SwiftChatGPT.swift
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:36:27: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 34 |     let defaultSystemMessage = Message(role: "system", content: "You are a helpful assistant.")
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
 36 |     let urlSessionConfig: URLSessionConfiguration
    |                           `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 37 |     var session: URLSession!
 38 |     public var key: String
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:37:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
 36 |     let urlSessionConfig: URLSessionConfiguration
 37 |     var session: URLSession!
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     public var key: String
 39 |     var history: [Message] = []
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:58:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 56 |     }
 57 |
 58 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |         print ("Got DATA")
 60 |         if let str = String (bytes: data, encoding: .utf8) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:58:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 56 |     }
 57 |
 58 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |         print ("Got DATA")
 60 |         if let str = String (bytes: data, encoding: .utf8) {
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:135: error: 'ResponseDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                                                                                                       `- error: 'ResponseDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 67 |         print ("Another")
 68 |         return .allow
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:102: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:73:41: error: cannot find type 'URLRequest' in scope
 71 |     /// Creates a request fro contacting the chat API
 72 |     /// - Parameter data: the JSON encoded payload to post
 73 |     func makeUrlRequest (data: Data) -> URLRequest {
    |                                         `- error: cannot find type 'URLRequest' in scope
 74 |         var request = URLRequest(url: openAiApiUrl)
 75 |         request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:91:90: error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 89 |     }
 90 |
 91 |     func startRequest (for input: String, temperature: Float) async -> Result<URLSession.AsyncBytes,OpenAIError> {
    |                                                                                          `- error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 92 |         let requestMessages = buildMessageHistory (newPrompt: input)
 93 |         let chatRequest = Request(model: self.model, messages: requestMessages, temperature: temperature, stream: true)
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:130:52: error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
128 |     }
129 |
130 |     func processPartialReply<T> (bytes: URLSession.AsyncBytes, _ f: @escaping (Response) -> T, onComplete: @escaping () -> ()) -> AsyncThrowingStream<T,Error> {
    |                                                    `- error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
131 |         return AsyncThrowingStream (bufferingPolicy: .unbounded) { continuation in
132 |             Task {
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:33:33: error: cannot find type 'URLSessionDataDelegate' in scope
 31 | }
 32 | /// Access to ChatGPT API from OpenAI
 33 | public class ChatGPT: NSObject, URLSessionDataDelegate {
    |                                 `- error: cannot find type 'URLSessionDataDelegate' in scope
 34 |     let defaultSystemMessage = Message(role: "system", content: "You are a helpful assistant.")
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:50:52: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 48 |             print ("This key ends with a newline, are you sure this is ok?")
 49 |         }
 50 |         urlSessionConfig = URLSessionConfiguration.default
    |                                                    `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 51 |         urlSessionConfig.requestCachePolicy = .reloadIgnoringLocalCacheData
 52 |         urlSessionConfig.urlCache = nil
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:51:26: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'requestCachePolicy'
 49 |         }
 50 |         urlSessionConfig = URLSessionConfiguration.default
 51 |         urlSessionConfig.requestCachePolicy = .reloadIgnoringLocalCacheData
    |                          `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'requestCachePolicy'
 52 |         urlSessionConfig.urlCache = nil
 53 |
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:51:48: error: cannot infer contextual base in reference to member 'reloadIgnoringLocalCacheData'
 49 |         }
 50 |         urlSessionConfig = URLSessionConfiguration.default
 51 |         urlSessionConfig.requestCachePolicy = .reloadIgnoringLocalCacheData
    |                                                `- error: cannot infer contextual base in reference to member 'reloadIgnoringLocalCacheData'
 52 |         urlSessionConfig.urlCache = nil
 53 |
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:52:26: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'urlCache'
 50 |         urlSessionConfig = URLSessionConfiguration.default
 51 |         urlSessionConfig.requestCachePolicy = .reloadIgnoringLocalCacheData
 52 |         urlSessionConfig.urlCache = nil
    |                          `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'urlCache'
 53 |
 54 |         super.init()
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:52:37: error: 'nil' requires a contextual type
 50 |         urlSessionConfig = URLSessionConfiguration.default
 51 |         urlSessionConfig.requestCachePolicy = .reloadIgnoringLocalCacheData
 52 |         urlSessionConfig.urlCache = nil
    |                                     `- error: 'nil' requires a contextual type
 53 |
 54 |         super.init()
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:55:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 53 |
 54 |         super.init()
 55 |         session = URLSession(configuration: urlSessionConfig, delegate: self, delegateQueue: .main)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 56 |     }
 57 |
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:55:95: error: cannot infer contextual base in reference to member 'main'
 53 |
 54 |         super.init()
 55 |         session = URLSession(configuration: urlSessionConfig, delegate: self, delegateQueue: .main)
    |                                                                                               `- error: cannot infer contextual base in reference to member 'main'
 56 |     }
 57 |
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:74:23: error: cannot find 'URLRequest' in scope
 72 |     /// - Parameter data: the JSON encoded payload to post
 73 |     func makeUrlRequest (data: Data) -> URLRequest {
 74 |         var request = URLRequest(url: openAiApiUrl)
    |                       `- error: cannot find 'URLRequest' in scope
 75 |         request.httpMethod = "POST"
 76 |         request.setValue("application/json", forHTTPHeaderField: "Content-Type")
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:84:13: warning: variable 'prompt' was never mutated; consider changing to 'let' constant
 82 |
 83 |     func buildMessageHistory (newPrompt: String) -> [Message] {
 84 |         var prompt = Message(role: "user", content: newPrompt)
    |             `- warning: variable 'prompt' was never mutated; consider changing to 'let' constant
 85 |         var requestMessages: [Message] = [defaultSystemMessage]
 86 |         requestMessages.append(contentsOf: history)
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:100:31: error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 98 |
 99 |
100 |         let bytes: URLSession.AsyncBytes
    |                               `- error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
101 |         let response: URLResponse
102 |         do {
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:101:23: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 99 |
100 |         let bytes: URLSession.AsyncBytes
101 |         let response: URLResponse
    |                       `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
102 |         do {
103 |             (bytes, response) = try await session.bytes(for: request, delegate: self)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:103:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'bytes'
101 |         let response: URLResponse
102 |         do {
103 |             (bytes, response) = try await session.bytes(for: request, delegate: self)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'bytes'
104 |         } catch (let e){
105 |             return .failure(.networkError (e.localizedDescription))
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:108:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
106 |         }
107 |
108 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
109 |             return .failure(.networkError("Internal error: httpResponse is not an HTTPURLResponse"))
110 |         }
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:108:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |         }
107 |
108 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |             return .failure(.networkError("Internal error: httpResponse is not an HTTPURLResponse"))
110 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:111:28: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
109 |             return .failure(.networkError("Internal error: httpResponse is not an HTTPURLResponse"))
110 |         }
111 |         guard httpResponse.statusCode == 200 else {
    |                            `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
112 |             var data = Data ()
113 |             do {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/5] Compiling SwiftChatGPT Model.swift
[5/5] Emitting module SwiftChatGPT
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:36:27: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 34 |     let defaultSystemMessage = Message(role: "system", content: "You are a helpful assistant.")
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
 36 |     let urlSessionConfig: URLSessionConfiguration
    |                           `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 37 |     var session: URLSession!
 38 |     public var key: String
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:37:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
 36 |     let urlSessionConfig: URLSessionConfiguration
 37 |     var session: URLSession!
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     public var key: String
 39 |     var history: [Message] = []
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:58:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 56 |     }
 57 |
 58 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |         print ("Got DATA")
 60 |         if let str = String (bytes: data, encoding: .utf8) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:58:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 56 |     }
 57 |
 58 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |         print ("Got DATA")
 60 |         if let str = String (bytes: data, encoding: .utf8) {
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:135: error: 'ResponseDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                                                                                                       `- error: 'ResponseDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 67 |         print ("Another")
 68 |         return .allow
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:66:102: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 64 |     }
 65 |
 66 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse) async -> URLSession.ResponseDisposition {
    |                                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 67 |         print ("Another")
 68 |         return .allow
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:73:41: error: cannot find type 'URLRequest' in scope
 71 |     /// Creates a request fro contacting the chat API
 72 |     /// - Parameter data: the JSON encoded payload to post
 73 |     func makeUrlRequest (data: Data) -> URLRequest {
    |                                         `- error: cannot find type 'URLRequest' in scope
 74 |         var request = URLRequest(url: openAiApiUrl)
 75 |         request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:91:90: error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 89 |     }
 90 |
 91 |     func startRequest (for input: String, temperature: Float) async -> Result<URLSession.AsyncBytes,OpenAIError> {
    |                                                                                          `- error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
 92 |         let requestMessages = buildMessageHistory (newPrompt: input)
 93 |         let chatRequest = Request(model: self.model, messages: requestMessages, temperature: temperature, stream: true)
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:130:52: error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
128 |     }
129 |
130 |     func processPartialReply<T> (bytes: URLSession.AsyncBytes, _ f: @escaping (Response) -> T, onComplete: @escaping () -> ()) -> AsyncThrowingStream<T,Error> {
    |                                                    `- error: 'AsyncBytes' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
131 |         return AsyncThrowingStream (bufferingPolicy: .unbounded) { continuation in
132 |             Task {
/host/spi-builder-workspace/Sources/SwiftChatGPT/SwiftChatGPT.swift:33:33: error: cannot find type 'URLSessionDataDelegate' in scope
 31 | }
 32 | /// Access to ChatGPT API from OpenAI
 33 | public class ChatGPT: NSObject, URLSessionDataDelegate {
    |                                 `- error: cannot find type 'URLSessionDataDelegate' in scope
 34 |     let defaultSystemMessage = Message(role: "system", content: "You are a helpful assistant.")
 35 |     let openAiApiUrl = URL (string: "https://api.openai.com/v1/chat/completions")!
BUILD FAILURE 6.0 linux