Spaces:
Runtime error
Runtime error
wip
Browse files
src/lib/components/InferencePlayground/InferencePlayground.svelte
CHANGED
|
@@ -55,7 +55,7 @@
|
|
| 55 |
];
|
| 56 |
}
|
| 57 |
|
| 58 |
-
function updateMessage(value: string,
|
| 59 |
conversation.messages[messageIdx].content = value;
|
| 60 |
conversation = conversation;
|
| 61 |
}
|
|
|
|
| 55 |
];
|
| 56 |
}
|
| 57 |
|
| 58 |
+
function updateMessage(value: string, messageIdx: number) {
|
| 59 |
conversation.messages[messageIdx].content = value;
|
| 60 |
conversation = conversation;
|
| 61 |
}
|