Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Implemented a new user prompt and updated the list of compatible models in the Playground component.
Browse files
src/lib/components/Playground/Playground.svelte
CHANGED
|
@@ -9,7 +9,9 @@
|
|
| 9 |
content: string;
|
| 10 |
};
|
| 11 |
|
| 12 |
-
const startMessages: Message[] = [
|
|
|
|
|
|
|
| 13 |
const compatibleModels: string[] = [
|
| 14 |
'meta-llama/Meta-Llama-3-8B-Instruct',
|
| 15 |
'mistralai/Mistral-7B-Instruct-v0.2'
|
|
|
|
| 9 |
content: string;
|
| 10 |
};
|
| 11 |
|
| 12 |
+
const startMessages: Message[] = [
|
| 13 |
+
{ role: "user", content: "Complete the equation 1+1= ,just the answer" },
|
| 14 |
+
];
|
| 15 |
const compatibleModels: string[] = [
|
| 16 |
'meta-llama/Meta-Llama-3-8B-Instruct',
|
| 17 |
'mistralai/Mistral-7B-Instruct-v0.2'
|