# `Tinkex.Types.ModelData`
[🔗](https://github.com/North-Shore-AI/tinkex/blob/v0.4.0/lib/tinkex/types/model_data.ex#L1)

Model metadata including architecture, display name, and tokenizer id.

# `t`

```elixir
@type t() :: %Tinkex.Types.ModelData{
  arch: String.t() | nil,
  model_name: String.t() | nil,
  tokenizer_id: String.t() | nil
}
```

# `from_json`

```elixir
@spec from_json(map()) :: t()
```

Parse model metadata from a JSON map (string or atom keys).

---

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