Python imports are case-sensitive. The class is APIModel (all-caps API prefix, then Model). apimodel in lowercase does not exist in fastapi_utils.api_model.
The class follows Python convention for acronyms: API is uppercased in full, giving APIModel. Import it with the exact casing.
from fastapi_utils.api_model import APIModel
class MyRequest(APIModel):
name: str
count: int