An open, community-maintained catalog of LLM model parameters.
modelparams.dev is an open-source database that lists the parameters available for popular AI models. It is heavily inspired on models.dev and we use it at Manifest.
You can access this data through an API.
curl https://modelparams.dev/api/v1/models.json
The catalog follows the Model Parameters convention.
The generated JSON Schema is available at
https://modelparams.dev/api/v1/schema.json.
See CONTRIBUTING.md. The short version:
- Pick a unique ID:
<provider>/<model>for the API-key variant,<provider>/<model>-subscriptionfor the subscription variant. Example:mistral/mistral-large. - Add a YAML file at
models/<provider>/<model>.yaml(ormodels/<provider>/<model>-subscription.yaml). - Open a PR. CI validates against the schema and rebuilds.
npm install
npm run dev # http://localhost:3000
npm run build # → dist/
npm run validate # check every YAML
npm testMIT