in openai-java-core/src/main/kotlin/com/openai/models/beta/assistants/Assistant.kt [1464:1470]
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is Assistant && id == other.id && createdAt == other.createdAt && description == other.description && instructions == other.instructions && metadata == other.metadata && model == other.model && name == other.name && object_ == other.object_ && tools == other.tools && responseFormat == other.responseFormat && temperature == other.temperature && toolResources == other.toolResources && topP == other.topP && additionalProperties == other.additionalProperties /* spotless:on */
}