From d3c8ac278cb60574ac760a469dd9768a3d030f89 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Wed, 25 Jun 2025 11:59:12 -0700 Subject: [PATCH 1/2] Add fme to model libraries --- packages/tasks/src/model-libraries.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index 9641ed689c..05e752f861 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -1,6 +1,6 @@ -import * as snippets from "./model-libraries-snippets.js"; import type { ModelData } from "./model-data.js"; import type { ElasticSearchQuery } from "./model-libraries-downloads.js"; +import * as snippets from "./model-libraries-snippets.js"; /** * Elements configurable by a model library. @@ -389,6 +389,14 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { filter: true, countDownloads: `path:"pytorch_model.bin"`, }, + fme: { + prettyLabel: "fme", + repoName: "fme", + repoUrl: "https://github.com/ai2cm/ace", + docsUrl: "https://ai2-climate-emulator.readthedocs.io/en/latest/", + filter: false, + countDownloads: `path_extension:"tar"`, + }, "gemma.cpp": { prettyLabel: "gemma.cpp", repoName: "gemma.cpp", From 317ac910120328b0e19f4cdeba5514439dd83be8 Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Wed, 25 Jun 2025 12:03:13 -0700 Subject: [PATCH 2/2] Undo import order change --- packages/tasks/src/model-libraries.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index 05e752f861..2be8888765 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -1,6 +1,6 @@ +import * as snippets from "./model-libraries-snippets.js"; import type { ModelData } from "./model-data.js"; import type { ElasticSearchQuery } from "./model-libraries-downloads.js"; -import * as snippets from "./model-libraries-snippets.js"; /** * Elements configurable by a model library.