Hi @partyush
You should check following in order to see if you model is even available to use:
1. Go to http://localhost:4502/system/console/bundles and check if your bundle is active or not. If not open bundle details and resolve the issues or paste issues here.
2. If bundle is active, open your bundle details and check if you are exporting the package where you have created this sling model in "Exported Packages" section or not like this:

If it is not present, you need to add package-info.java file in that package which should be something like :
@Version("1.0")
package com.mysite.core.filters;
import org.osgi.annotation.versioning.Version;
Change Pacakge and Deploy and check.
3. If your package is in now in export packages section and still the error exists, check if you class present in http://localhost:4502/system/console/adapters where there is a list of all models. If not, check if the your package in in sling model packages in pom.xml of core. You can get more information in https://sling.apache.org/documentation/bundles/models.html
4. If you still see the error, Please paste the full error log.
Hope it helps!
Thanks,
Nupur