FirebaseAILogic Framework Reference

ExecutableCodePart

public struct ExecutableCodePart : Part

A part containing code that was executed by the model.

  • The language of the code in an ExecutableCodePart.

    Declaration

    Swift

    public struct Language : Sendable, Equatable, CustomStringConvertible
  • The language of the code.

    Declaration

    Swift

    public var language: ExecutableCodePart.Language { get }
  • The code that was executed.

    Declaration

    Swift

    public var code: String { get }
  • Declaration

    Swift

    public var isThought: Bool { get }
  • Undocumented

    Declaration

    Swift

    public init(language: ExecutableCodePart.Language, code: String)