├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── release.yml │ ├── semantic-pr.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── index.mjs ├── lib ├── models.js └── token.js ├── package.json ├── script └── test-integration ├── template ├── README.md ├── gitignore ├── index.js └── package.json └── test ├── fixtures ├── black-forest-labs │ └── flux-dev.json └── yorickvp │ └── llava-13b.json ├── index.test.js └── token.test.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.github/workflows/semantic-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/README.md -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/index.mjs -------------------------------------------------------------------------------- /lib/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/lib/models.js -------------------------------------------------------------------------------- /lib/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/lib/token.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/package.json -------------------------------------------------------------------------------- /script/test-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/script/test-integration -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/template/README.md -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .npmrc -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/template/index.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/template/package.json -------------------------------------------------------------------------------- /test/fixtures/black-forest-labs/flux-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/test/fixtures/black-forest-labs/flux-dev.json -------------------------------------------------------------------------------- /test/fixtures/yorickvp/llava-13b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/test/fixtures/yorickvp/llava-13b.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/create-replicate/HEAD/test/token.test.js --------------------------------------------------------------------------------