modelparams.dev
Open-source AI model parameters database.
README
modelparams.dev
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.
API
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.
Adding a model or a parameter
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.
Don't want to open a PR? File an issue with the model and a link to the official docs, and someone will pick it up.
Local development
npm install
npm run dev # http://localhost:3000
npm run build # → dist/
npm run validate # check every YAML
npm test
License
MIT
