in prompt/prompt-model/src/commonMain/kotlin/ai/koog/prompt/message/AttachmentContent.kt [56:63]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is Bytes) return false
if (!data.contentEquals(other.data)) return false
return true
}