| 1234567891011121314151617181920212223 |
- import path from "path"
- import { fileURLToPath } from "url"
- const __filename = fileURLToPath(import.meta.url)
- const __dirname = path.dirname(__filename)
- const dir = path.resolve(__dirname, "..")
- process.chdir(dir)
- const modelsUrl = process.env.KILO_MODELS_URL || "https://models.dev"
- // Fetch and generate models.dev snapshot
- const modelsData = process.env.MODELS_DEV_API_JSON
- ? await Bun.file(process.env.MODELS_DEV_API_JSON).text()
- : await fetch(`${modelsUrl}/api.json`).then((x) => x.text())
- await Bun.write(
- path.join(dir, "src/provider/models-snapshot.js"),
- `// @ts-nocheck\n// Auto-generated by build.ts - do not edit\nexport const snapshot = ${modelsData}\n`,
- )
- await Bun.write(
- path.join(dir, "src/provider/models-snapshot.d.ts"),
- `// Auto-generated by build.ts - do not edit\nexport declare const snapshot: Record<string, unknown>\n`,
- )
- console.log("Generated models-snapshot.js")
|