We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01dd36b commit 5afd6d8Copy full SHA for 5afd6d8
2 files changed
frontend/src/components/ui/ModelCard.svelte
@@ -15,7 +15,7 @@
15
};
16
}
17
export let entry: ModelCardProps["entry"];
18
- export let chatAppUrl = "https://chat.swissai.cscs.ch";
+ export let chatAppUrl: string;
19
20
const logoUrl = getModelLogo(entry.data.title);
21
const metricsUrl = getModelMetricsUrl(entry.data.title);
frontend/src/components/ui/ModelList.svelte
@@ -4,7 +4,7 @@
4
import { getApiUrl } from "../../lib/config";
5
import { getModelTier } from "../../lib/modelMetrics";
6
7
+ export let chatAppUrl;
8
9
let models = [];
10
let modelCount = 0;
0 commit comments