# get_abc_default_options()

Returns the current Alembic default preset options as a `dict`.

### Signature
```python
api.get_abc_default_options() -> dict
```

### Return Value
```python
{
    "preset_name": str,   # e.g. "Unreal_UE5"
    "options": dict,      # Alembic option key/value map
}
```

### Example
```python
from os_fast_ref.api import FastRefAPI

api = FastRefAPI()
defaults = api.get_abc_default_options()
print(f"Default preset: {defaults['preset_name']}")
for key, val in defaults['options'].items():
    print(f"  {key}: {val}")

# Copy then modify
opts = defaults["options"].copy()
opts["ExportMeshes"] = True
opts["ExportBones"] = False
api.export_abc(slot=0, output_path=r"J:\output\char.abc", abc_options=opts)
```

---