An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# modelparams.dev

> An open, community-maintained catalog of LLM model parameters.

[![CI](https://github.com/mnfst/modelparameters.dev/actions/workflows/ci.yml/badge.svg)](https://github.com/mnfst/modelparameters.dev/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](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