| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741 |
- // Copyright 2023 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import Foundation
- /// The model's response to a generate content request.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct GenerateContentResponse: Sendable {
- /// Token usage metadata for processing the generate content request.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct UsageMetadata: Sendable {
- /// The number of tokens in the request prompt.
- public let promptTokenCount: Int
- /// The total number of tokens across the generated response candidates.
- public let candidatesTokenCount: Int
- /// The number of tokens used by tools.
- public let toolUsePromptTokenCount: Int
- /// The number of tokens used by the model's internal "thinking" process.
- ///
- /// For models that support thinking (like Gemini 2.5 Pro and Flash), this represents the actual
- /// number of tokens consumed for reasoning before the model generated a response. For models
- /// that do not support thinking, this value will be `0`.
- ///
- /// When thinking is used, this count will be less than or equal to the `thinkingBudget` set in
- /// the ``ThinkingConfig``.
- public let thoughtsTokenCount: Int
- /// The total number of tokens in both the request and response.
- public let totalTokenCount: Int
- /// The breakdown, by modality, of how many tokens are consumed by the prompt.
- public let promptTokensDetails: [ModalityTokenCount]
- /// The breakdown, by modality, of how many tokens are consumed by the candidates
- public let candidatesTokensDetails: [ModalityTokenCount]
- /// The breakdown, by modality, of how many tokens were consumed by the tools used to process
- /// the request.
- public let toolUsePromptTokensDetails: [ModalityTokenCount]
- }
- /// A list of candidate response content, ordered from best to worst.
- public let candidates: [Candidate]
- /// A value containing the safety ratings for the response, or, if the request was blocked, a
- /// reason for blocking the request.
- public let promptFeedback: PromptFeedback?
- /// Token usage metadata for processing the generate content request.
- public let usageMetadata: UsageMetadata?
- /// The response's content as text, if it exists.
- ///
- /// - Note: This does not include thought summaries; see ``thoughtSummary`` for more details.
- public var text: String? {
- return text(isThought: false)
- }
- /// A summary of the model's thinking process, if available.
- ///
- /// - Important: Thought summaries are only available when `includeThoughts` is enabled in the
- /// ``ThinkingConfig``. For more information, see the
- /// [Thinking](https://firebase.google.com/docs/ai-logic/thinking) documentation.
- public var thoughtSummary: String? {
- return text(isThought: true)
- }
- /// Returns function calls found in any `Part`s of the first candidate of the response, if any.
- public var functionCalls: [FunctionCallPart] {
- guard let candidate = candidates.first else {
- return []
- }
- return candidate.content.parts.compactMap { part in
- guard let functionCallPart = part as? FunctionCallPart, !part.isThought else {
- return nil
- }
- return functionCallPart
- }
- }
- /// Returns inline data parts found in any `Part`s of the first candidate of the response, if any.
- public var inlineDataParts: [InlineDataPart] {
- guard let candidate = candidates.first else {
- AILog.error(code: .generateContentResponseNoCandidates, """
- Could not get inline data parts because the response has no candidates. The accessor only \
- checks the first candidate.
- """)
- return []
- }
- return candidate.content.parts.compactMap { part in
- guard let inlineDataPart = part as? InlineDataPart, !part.isThought else {
- return nil
- }
- return inlineDataPart
- }
- }
- /// Initializer for SwiftUI previews or tests.
- public init(candidates: [Candidate], promptFeedback: PromptFeedback? = nil,
- usageMetadata: UsageMetadata? = nil) {
- self.candidates = candidates
- self.promptFeedback = promptFeedback
- self.usageMetadata = usageMetadata
- }
- func text(isThought: Bool) -> String? {
- guard let candidate = candidates.first else {
- AILog.error(
- code: .generateContentResponseNoCandidates,
- "Could not get text from a response that had no candidates."
- )
- return nil
- }
- let textValues: [String] = candidate.content.parts.compactMap { part in
- guard let textPart = part as? TextPart, part.isThought == isThought else {
- return nil
- }
- return textPart.text
- }
- guard textValues.count > 0 else {
- AILog.error(
- code: .generateContentResponseNoText,
- "Could not get a text part from the first candidate."
- )
- return nil
- }
- return textValues.joined(separator: " ")
- }
- }
- /// A struct representing a possible reply to a content generation prompt. Each content generation
- /// prompt may produce multiple candidate responses.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct Candidate: Sendable {
- /// The response's content.
- public let content: ModelContent
- /// The safety rating of the response content.
- public let safetyRatings: [SafetyRating]
- /// The reason the model stopped generating content, if it exists; for example, if the model
- /// generated a predefined stop sequence.
- public let finishReason: FinishReason?
- /// Cited works in the model's response content, if it exists.
- public let citationMetadata: CitationMetadata?
- public let groundingMetadata: GroundingMetadata?
- /// Metadata related to the ``URLContext`` tool.
- public let urlContextMetadata: URLContextMetadata?
- /// Initializer for SwiftUI previews or tests.
- public init(content: ModelContent, safetyRatings: [SafetyRating], finishReason: FinishReason?,
- citationMetadata: CitationMetadata?, groundingMetadata: GroundingMetadata? = nil,
- urlContextMetadata: URLContextMetadata? = nil) {
- self.content = content
- self.safetyRatings = safetyRatings
- self.finishReason = finishReason
- self.citationMetadata = citationMetadata
- self.groundingMetadata = groundingMetadata
- self.urlContextMetadata = urlContextMetadata
- }
- // Returns `true` if the candidate contains no information that a developer could use.
- var isEmpty: Bool {
- content.parts
- .isEmpty && finishReason == nil && citationMetadata == nil && groundingMetadata == nil &&
- urlContextMetadata == nil
- }
- }
- /// A collection of source attributions for a piece of content.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct CitationMetadata: Sendable {
- /// A list of individual cited sources and the parts of the content to which they apply.
- public let citations: [Citation]
- }
- /// A struct describing a source attribution.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct Citation: Sendable, Equatable {
- /// The inclusive beginning of a sequence in a model response that derives from a cited source.
- public let startIndex: Int
- /// The exclusive end of a sequence in a model response that derives from a cited source.
- public let endIndex: Int
- /// A link to the cited source, if available.
- public let uri: String?
- /// The title of the cited source, if available.
- public let title: String?
- /// The license the cited source work is distributed under, if specified.
- public let license: String?
- /// The publication date of the cited source, if available.
- ///
- /// > Tip: `DateComponents` can be converted to a `Date` using the `date` computed property.
- public let publicationDate: DateComponents?
- init(startIndex: Int,
- endIndex: Int,
- uri: String? = nil,
- title: String? = nil,
- license: String? = nil,
- publicationDate: DateComponents? = nil) {
- self.startIndex = startIndex
- self.endIndex = endIndex
- self.uri = uri
- self.title = title
- self.license = license
- self.publicationDate = publicationDate
- }
- }
- /// A value enumerating possible reasons for a model to terminate a content generation request.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct FinishReason: DecodableProtoEnum, Hashable, Sendable {
- enum Kind: String {
- case stop = "STOP"
- case maxTokens = "MAX_TOKENS"
- case safety = "SAFETY"
- case recitation = "RECITATION"
- case other = "OTHER"
- case blocklist = "BLOCKLIST"
- case prohibitedContent = "PROHIBITED_CONTENT"
- case spii = "SPII"
- case malformedFunctionCall = "MALFORMED_FUNCTION_CALL"
- }
- /// Natural stop point of the model or provided stop sequence.
- public static let stop = FinishReason(kind: .stop)
- /// The maximum number of tokens as specified in the request was reached.
- public static let maxTokens = FinishReason(kind: .maxTokens)
- /// The token generation was stopped because the response was flagged for safety reasons.
- ///
- /// > NOTE: When streaming, the ``Candidate/content`` will be empty if content filters blocked the
- /// > output.
- public static let safety = FinishReason(kind: .safety)
- /// The token generation was stopped because the response was flagged for unauthorized citations.
- public static let recitation = FinishReason(kind: .recitation)
- /// All other reasons that stopped token generation.
- public static let other = FinishReason(kind: .other)
- /// Token generation was stopped because the response contained forbidden terms.
- public static let blocklist = FinishReason(kind: .blocklist)
- /// Token generation was stopped because the response contained potentially prohibited content.
- public static let prohibitedContent = FinishReason(kind: .prohibitedContent)
- /// Token generation was stopped because of Sensitive Personally Identifiable Information (SPII).
- public static let spii = FinishReason(kind: .spii)
- /// Token generation was stopped because the function call generated by the model was invalid.
- public static let malformedFunctionCall = FinishReason(kind: .malformedFunctionCall)
- /// Returns the raw string representation of the `FinishReason` value.
- ///
- /// > Note: This value directly corresponds to the values in the [REST
- /// > API](https://cloud.google.com/vertex-ai/docs/reference/rest/v1beta1/GenerateContentResponse#FinishReason).
- public let rawValue: String
- static let unrecognizedValueMessageCode =
- AILog.MessageCode.generateContentResponseUnrecognizedFinishReason
- }
- /// A metadata struct containing any feedback the model had on the prompt it was provided.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct PromptFeedback: Sendable {
- /// A type describing possible reasons to block a prompt.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct BlockReason: DecodableProtoEnum, Hashable, Sendable {
- enum Kind: String {
- case safety = "SAFETY"
- case other = "OTHER"
- case blocklist = "BLOCKLIST"
- case prohibitedContent = "PROHIBITED_CONTENT"
- }
- /// The prompt was blocked because it was deemed unsafe.
- public static let safety = BlockReason(kind: .safety)
- /// All other block reasons.
- public static let other = BlockReason(kind: .other)
- /// The prompt was blocked because it contained terms from the terminology blocklist.
- public static let blocklist = BlockReason(kind: .blocklist)
- /// The prompt was blocked due to prohibited content.
- public static let prohibitedContent = BlockReason(kind: .prohibitedContent)
- /// Returns the raw string representation of the `BlockReason` value.
- ///
- /// > Note: This value directly corresponds to the values in the [REST
- /// > API](https://cloud.google.com/vertex-ai/docs/reference/rest/v1beta1/GenerateContentResponse#BlockedReason).
- public let rawValue: String
- static let unrecognizedValueMessageCode =
- AILog.MessageCode.generateContentResponseUnrecognizedBlockReason
- }
- /// The reason a prompt was blocked, if it was blocked.
- public let blockReason: BlockReason?
- /// A human-readable description of the ``blockReason``.
- public let blockReasonMessage: String?
- /// The safety ratings of the prompt.
- public let safetyRatings: [SafetyRating]
- /// Initializer for SwiftUI previews or tests.
- public init(blockReason: BlockReason?, blockReasonMessage: String? = nil,
- safetyRatings: [SafetyRating]) {
- self.blockReason = blockReason
- self.blockReasonMessage = blockReasonMessage
- self.safetyRatings = safetyRatings
- }
- }
- /// Metadata returned to the client when grounding is enabled.
- ///
- /// > Important: If using Grounding with Google Search, you are required to comply with the
- /// "Grounding with Google Search" usage requirements for your chosen API provider:
- /// [Gemini Developer API](https://ai.google.dev/gemini-api/terms#grounding-with-google-search)
- /// or Vertex AI Gemini API (see [Service Terms](https://cloud.google.com/terms/service-terms)
- /// section within the Service Specific Terms).
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct GroundingMetadata: Sendable, Equatable, Hashable {
- /// A list of web search queries that the model performed to gather the grounding information.
- /// These can be used to allow users to explore the search results themselves.
- public let webSearchQueries: [String]
- /// A list of ``GroundingChunk`` structs. Each chunk represents a piece of retrieved content
- /// (e.g., from a web page) that the model used to ground its response.
- public let groundingChunks: [GroundingChunk]
- /// A list of ``GroundingSupport`` structs. Each object details how specific segments of the
- /// model's response are supported by the `groundingChunks`.
- public let groundingSupports: [GroundingSupport]
- /// Google Search entry point for web searches.
- /// This contains an HTML/CSS snippet that **must** be embedded in an app to display a Google
- /// Search entry point for follow-up web searches related to the model's "Grounded Response".
- public let searchEntryPoint: SearchEntryPoint?
- /// A struct representing the Google Search entry point.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct SearchEntryPoint: Sendable, Equatable, Hashable {
- /// An HTML/CSS snippet that can be embedded in your app.
- ///
- /// To ensure proper rendering, it's recommended to display this content within a `WKWebView`.
- public let renderedContent: String
- }
- /// Represents a chunk of retrieved data that supports a claim in the model's response. This is
- /// part of the grounding information provided when grounding is enabled.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct GroundingChunk: Sendable, Equatable, Hashable {
- /// Contains details if the grounding chunk is from a web source.
- public let web: WebGroundingChunk?
- }
- /// A grounding chunk sourced from the web.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct WebGroundingChunk: Sendable, Equatable, Hashable {
- /// The URI of the retrieved web page.
- public let uri: String?
- /// The title of the retrieved web page.
- public let title: String?
- /// The domain of the original URI from which the content was retrieved.
- ///
- /// This field is only populated when using the Vertex AI Gemini API.
- public let domain: String?
- }
- /// Provides information about how a specific segment of the model's response is supported by the
- /// retrieved grounding chunks.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct GroundingSupport: Sendable, Equatable, Hashable {
- /// Specifies the segment of the model's response content that this grounding support pertains
- /// to.
- public let segment: Segment
- /// A list of indices that refer to specific ``GroundingChunk`` structs within the
- /// ``GroundingMetadata/groundingChunks`` array. These referenced chunks are the sources that
- /// support the claim made in the associated `segment` of the response. For example, an array
- /// `[1, 3, 4]`
- /// means that `groundingChunks[1]`, `groundingChunks[3]`, `groundingChunks[4]` are the
- /// retrieved content supporting this part of the response.
- public let groundingChunkIndices: [Int]
- struct Internal {
- let segment: Segment?
- let groundingChunkIndices: [Int]
- func toPublic() -> GroundingSupport? {
- if segment == nil {
- return nil
- }
- return GroundingSupport(
- segment: segment!,
- groundingChunkIndices: groundingChunkIndices
- )
- }
- }
- }
- }
- /// Represents a specific segment within a ``ModelContent`` struct, often used to pinpoint the
- /// exact location of text or data that grounding information refers to.
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- public struct Segment: Sendable, Equatable, Hashable {
- /// The zero-based index of the ``Part`` object within the `parts` array of its parent
- /// ``ModelContent`` object. This identifies which part of the content the segment belongs to.
- public let partIndex: Int
- /// The zero-based start index of the segment within the specified ``Part``, measured in UTF-8
- /// bytes. This offset is inclusive, starting from 0 at the beginning of the part's content.
- public let startIndex: Int
- /// The zero-based end index of the segment within the specified ``Part``, measured in UTF-8
- /// bytes. This offset is exclusive, meaning the character at this index is not included in the
- /// segment.
- public let endIndex: Int
- /// The text corresponding to the segment from the response.
- public let text: String
- }
- // MARK: - Codable Conformances
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GenerateContentResponse: Decodable {
- enum CodingKeys: CodingKey {
- case candidates
- case promptFeedback
- case usageMetadata
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- guard container.contains(CodingKeys.candidates) || container
- .contains(CodingKeys.promptFeedback) else {
- let context = DecodingError.Context(
- codingPath: [],
- debugDescription: "Failed to decode GenerateContentResponse;" +
- " missing keys 'candidates' and 'promptFeedback'."
- )
- throw DecodingError.dataCorrupted(context)
- }
- if let candidates = try container.decodeIfPresent(
- [Candidate].self,
- forKey: .candidates
- ) {
- self.candidates = candidates
- } else {
- candidates = []
- }
- promptFeedback = try container.decodeIfPresent(PromptFeedback.self, forKey: .promptFeedback)
- usageMetadata = try container.decodeIfPresent(UsageMetadata.self, forKey: .usageMetadata)
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GenerateContentResponse.UsageMetadata: Decodable {
- enum CodingKeys: CodingKey {
- case promptTokenCount
- case candidatesTokenCount
- case toolUsePromptTokenCount
- case thoughtsTokenCount
- case totalTokenCount
- case promptTokensDetails
- case candidatesTokensDetails
- case toolUsePromptTokensDetails
- }
- public init(from decoder: any Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- promptTokenCount = try container.decodeIfPresent(Int.self, forKey: .promptTokenCount) ?? 0
- candidatesTokenCount =
- try container.decodeIfPresent(Int.self, forKey: .candidatesTokenCount) ?? 0
- toolUsePromptTokenCount =
- try container.decodeIfPresent(Int.self, forKey: .toolUsePromptTokenCount) ?? 0
- thoughtsTokenCount = try container.decodeIfPresent(Int.self, forKey: .thoughtsTokenCount) ?? 0
- totalTokenCount = try container.decodeIfPresent(Int.self, forKey: .totalTokenCount) ?? 0
- promptTokensDetails =
- try container.decodeIfPresent([ModalityTokenCount].self, forKey: .promptTokensDetails) ?? []
- candidatesTokensDetails = try container.decodeIfPresent(
- [ModalityTokenCount].self,
- forKey: .candidatesTokensDetails
- ) ?? []
- toolUsePromptTokensDetails = try container.decodeIfPresent(
- [ModalityTokenCount].self, forKey: .toolUsePromptTokensDetails
- ) ?? []
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension Candidate: Decodable {
- enum CodingKeys: CodingKey {
- case content
- case safetyRatings
- case finishReason
- case citationMetadata
- case groundingMetadata
- case urlContextMetadata
- }
- /// Initializes a response from a decoder. Used for decoding server responses; not for public
- /// use.
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- do {
- if let content = try container.decodeIfPresent(ModelContent.self, forKey: .content) {
- self.content = content
- } else {
- content = ModelContent(parts: [])
- }
- } catch {
- throw InvalidCandidateError.malformedContent(underlyingError: error)
- }
- if let safetyRatings = try container.decodeIfPresent(
- [SafetyRating].self, forKey: .safetyRatings
- ) {
- self.safetyRatings = safetyRatings.filter {
- // Due to a bug in the backend, the SDK may receive invalid `SafetyRating` values that do
- // not include a category or probability; these are filtered out of the safety ratings.
- $0.category != HarmCategory.unspecified
- && $0.probability != SafetyRating.HarmProbability.unspecified
- }
- } else {
- safetyRatings = []
- }
- finishReason = try container.decodeIfPresent(FinishReason.self, forKey: .finishReason)
- citationMetadata = try container.decodeIfPresent(
- CitationMetadata.self,
- forKey: .citationMetadata
- )
- groundingMetadata = try container.decodeIfPresent(
- GroundingMetadata.self,
- forKey: .groundingMetadata
- )
- if let urlContextMetadata =
- try container.decodeIfPresent(URLContextMetadata.self, forKey: .urlContextMetadata),
- !urlContextMetadata.urlMetadata.isEmpty {
- self.urlContextMetadata = urlContextMetadata
- } else {
- urlContextMetadata = nil
- }
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension CitationMetadata: Decodable {
- enum CodingKeys: CodingKey {
- case citations // Vertex AI
- case citationSources // Google AI
- }
- public init(from decoder: any Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- // Decode for Google API if `citationSources` key is present.
- if container.contains(.citationSources) {
- citations = try container.decode([Citation].self, forKey: .citationSources)
- } else { // Fallback to default Vertex AI decoding.
- citations = try container.decode([Citation].self, forKey: .citations)
- }
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension Citation: Decodable {
- enum CodingKeys: CodingKey {
- case startIndex
- case endIndex
- case uri
- case title
- case license
- case publicationDate
- }
- public init(from decoder: any Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- startIndex = try container.decodeIfPresent(Int.self, forKey: .startIndex) ?? 0
- endIndex = try container.decode(Int.self, forKey: .endIndex)
- if let uri = try container.decodeIfPresent(String.self, forKey: .uri), !uri.isEmpty {
- self.uri = uri
- } else {
- uri = nil
- }
- if let title = try container.decodeIfPresent(String.self, forKey: .title), !title.isEmpty {
- self.title = title
- } else {
- title = nil
- }
- if let license = try container.decodeIfPresent(String.self, forKey: .license),
- !license.isEmpty {
- self.license = license
- } else {
- license = nil
- }
- if let publicationProtoDate = try container.decodeIfPresent(
- ProtoDate.self,
- forKey: .publicationDate
- ) {
- publicationDate = publicationProtoDate.dateComponents
- if let publicationDate, !publicationDate.isValidDate {
- AILog.warning(
- code: .decodedInvalidCitationPublicationDate,
- "Decoded an invalid citation publication date: \(publicationDate)"
- )
- }
- } else {
- publicationDate = nil
- }
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension PromptFeedback: Decodable {
- enum CodingKeys: CodingKey {
- case blockReason
- case blockReasonMessage
- case safetyRatings
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- blockReason = try container.decodeIfPresent(
- PromptFeedback.BlockReason.self,
- forKey: .blockReason
- )
- blockReasonMessage = try container.decodeIfPresent(String.self, forKey: .blockReasonMessage)
- if let safetyRatings = try container.decodeIfPresent(
- [SafetyRating].self,
- forKey: .safetyRatings
- ) {
- self.safetyRatings = safetyRatings
- } else {
- safetyRatings = []
- }
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GroundingMetadata: Decodable {
- enum CodingKeys: String, CodingKey {
- case webSearchQueries
- case groundingChunks
- case groundingSupports
- case searchEntryPoint
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- webSearchQueries = try container.decodeIfPresent([String].self, forKey: .webSearchQueries) ?? []
- groundingChunks = try container.decodeIfPresent(
- [GroundingChunk].self,
- forKey: .groundingChunks
- ) ?? []
- groundingSupports = try container.decodeIfPresent(
- [GroundingSupport.Internal].self,
- forKey: .groundingSupports
- )?.compactMap { $0.toPublic() } ?? []
- searchEntryPoint = try container.decodeIfPresent(
- SearchEntryPoint.self,
- forKey: .searchEntryPoint
- )
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GroundingMetadata.SearchEntryPoint: Decodable {}
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GroundingMetadata.GroundingChunk: Decodable {}
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GroundingMetadata.WebGroundingChunk: Decodable {}
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension GroundingMetadata.GroundingSupport.Internal: Decodable {
- enum CodingKeys: String, CodingKey {
- case segment
- case groundingChunkIndices
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- segment = try container.decodeIfPresent(Segment.self, forKey: .segment)
- groundingChunkIndices = try container.decodeIfPresent(
- [Int].self,
- forKey: .groundingChunkIndices
- ) ?? []
- }
- }
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- extension Segment: Decodable {
- enum CodingKeys: String, CodingKey {
- case partIndex
- case startIndex
- case endIndex
- case text
- }
- public init(from decoder: Decoder) throws {
- let container = try decoder.container(keyedBy: CodingKeys.self)
- partIndex = try container.decodeIfPresent(Int.self, forKey: .partIndex) ?? 0
- startIndex = try container.decodeIfPresent(Int.self, forKey: .startIndex) ?? 0
- endIndex = try container.decodeIfPresent(Int.self, forKey: .endIndex) ?? 0
- text = try container.decodeIfPresent(String.self, forKey: .text) ?? ""
- }
- }
|