wip
Browse files
src/lib/components/InferencePlayground/InferencePlayground.svelte
CHANGED
@@ -180,10 +180,6 @@
|
|
180 |
}
|
181 |
}
|
182 |
|
183 |
-
function changeSelectedModel(modelIdx: number) {
|
184 |
-
conversations[0] = { ...conversations[0], model: models[modelIdx] };
|
185 |
-
}
|
186 |
-
|
187 |
function changeModel(modelId: string) {
|
188 |
const model = models.find((m) => m.id === modelId);
|
189 |
if (!model) {
|
|
|
180 |
}
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
183 |
function changeModel(modelId: string) {
|
184 |
const model = models.find((m) => m.id === modelId);
|
185 |
if (!model) {
|