Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
// limitations under the License.

@available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
public struct URLContext: Sendable, Encodable {
struct URLContext: Sendable, Encodable {
init() {}
}
2 changes: 1 addition & 1 deletion FirebaseAI/Sources/Types/Public/URLContextMetadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

/// Metadata related to the ``URLContext`` tool.
/// Metadata related to the ``Tool/urlContext()`` tool.
@available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
public struct URLContextMetadata: Sendable, Hashable {
/// List of URL context.
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAI/Sources/Types/Public/URLMetadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public struct URLMetadata: Sendable, Hashable {
AILog.MessageCode.urlMetadataUnrecognizedURLRetrievalStatus
}

/// The URL retrieved by the ``URLContext`` tool.
/// The URL retrieved by the ``Tool/urlContext()`` tool.
public let retrievedURL: URL?

/// The status of the URL retrieval.
Expand Down
Loading