# `ASM.InferenceEndpoint.CompatibilityResult`
[🔗](https://github.com/nshkrdotcom/agent_session_manager/blob/v0.9.2/lib/asm/inference_endpoint/contracts.ex#L295)

Shared compatibility result contract for ASM endpoint publication.

# `t`

```elixir
@type t() :: %ASM.InferenceEndpoint.CompatibilityResult{
  compatible?: boolean(),
  contract_version: String.t(),
  metadata: map(),
  missing_requirements: [atom()],
  reason: atom(),
  resolved_management_mode: atom() | nil,
  resolved_protocol: atom() | nil,
  resolved_runtime_kind: atom() | nil,
  warnings: [atom()]
}
```

# `new`

```elixir
@spec new(keyword() | map()) :: {:ok, t()} | {:error, term()}
```

# `new!`

```elixir
@spec new!(keyword() | map()) :: t()
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
