https://github.com/mnfst/modelparams.dev
Open-source AI model parameters database.
https://github.com/mnfst/modelparams.dev
ai-models model-parameters model-params models parameters
Last synced: 6 days ago
JSON representation
Open-source AI model parameters database.
- Host: GitHub
- URL: https://github.com/mnfst/modelparams.dev
- Owner: mnfst
- License: mit
- Created: 2026-05-20T09:14:00.000Z (12 days ago)
- Default Branch: main
- Last Pushed: 2026-05-25T12:48:54.000Z (7 days ago)
- Last Synced: 2026-05-26T00:04:45.900Z (7 days ago)
- Topics: ai-models, model-parameters, model-params, models, parameters
- Language: TypeScript
- Homepage: https://modelparams.dev
- Size: 294 KB
- Stars: 8
- Watchers: 0
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# modelparams.dev
> An open, community-maintained catalog of LLM model parameters.
[](https://github.com/mnfst/modelparameters.dev/actions/workflows/ci.yml)
[](LICENSE)
[modelparams.dev](https://modelparams.dev) is an open-source database that lists the parameters available for popular AI models. It is heavily inspired on [models.dev](https://github.com/anomalyco/models.dev) and we use it at [Manifest](https://manifest.build/).
## API
You can access this data through an API.
```
curl https://modelparams.dev/api/v1/models.json
```
The catalog follows the [Model Parameters convention](docs/model-parameters-schema.md).
The generated JSON Schema is available at
`https://modelparams.dev/api/v1/schema.json`.
## Adding a model or a parameter
See [CONTRIBUTING.md](CONTRIBUTING.md). The short version:
1. Pick a unique ID: `/` for the API-key variant, `/-subscription` for the subscription variant. Example: `mistral/mistral-large`.
2. Add a YAML file at `models//.yaml` (or `models//-subscription.yaml`).
3. Open a PR. CI validates against the schema and rebuilds.
## Local development
```bash
npm install
npm run dev # http://localhost:3000
npm run build # → dist/
npm run validate # check every YAML
npm test
```
## License
MIT