One word means two different entities

Hi, how can you describe two different entities with one word?

data for example

- intent: data_car
  examples: |
    - '[zeekr](brand) [001](model)'
    - '[aito](brand) [m5-aito](model)'

- regex: quantity
  examples: |
      - \d{1,2}

  utter_number_of_cars:
  - text: How many cars you need?


We have entity model 001 in RASA it is 1, when bot run action: utter_number_of_cars user enter 1 and bot get entity model

But I need RASA to recognize 001 in one story as a model and in another story as a quantity.

What should I do?