Nymbo commited on
Commit
2342c72
1 Parent(s): b620dd3

adding more models

Browse files
src/lib/components/Playground/Playground.svelte CHANGED
@@ -13,23 +13,26 @@
13
  import { onDestroy } from 'svelte';
14
 
15
  const compatibleModels: string[] = [
16
-
17
- `meta-llama/Meta-Llama-3.1-405B-Instruct-FP8`,
18
 
19
  'HuggingFaceTB/SmolLM-1.7B-Instruct',
 
 
20
 
21
  'CohereForAI/c4ai-command-r-plus',
22
 
23
  'microsoft/Phi-3-mini-4k-instruct',
24
 
25
- 'google/gemma-2-27b-it',
26
  'google/gemma-1.1-7b-it',
27
  'google/gemma-1.1-2b-it',
28
 
29
  'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
30
  'HuggingFaceH4/zephyr-7b-beta',
31
  'HuggingFaceM4/idefics-9b-instruct',
32
-
 
 
 
33
  'meta-llama/Meta-Llama-3-70B-Instruct',
34
  'meta-llama/Meta-Llama-3-8B-Instruct',
35
  'meta-llama/Llama-2-70b-chat-hf',
@@ -41,12 +44,15 @@
41
  `NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO`,
42
 
43
  'mistralai/Mixtral-8x7B-Instruct-v0.1',
 
44
  'mistralai/Mistral-7B-Instruct-v0.3',
45
  'mistralai/Mistral-7B-Instruct-v0.2',
46
  'mistralai/Mistral-7B-Instruct-v0.1',
47
  `mistralai/mathstral-7B-v0.1`,
48
 
49
  '01-ai/Yi-1.5-34B-Chat',
 
 
50
 
51
  ];
52
 
 
13
  import { onDestroy } from 'svelte';
14
 
15
  const compatibleModels: string[] = [
 
 
16
 
17
  'HuggingFaceTB/SmolLM-1.7B-Instruct',
18
+ 'HuggingFaceTB/SmolLM-360M-Instruct',
19
+ 'HuggingFaceTB/SmolLM-135M-Instruct',
20
 
21
  'CohereForAI/c4ai-command-r-plus',
22
 
23
  'microsoft/Phi-3-mini-4k-instruct',
24
 
25
+ 'google/gemma-2-2b-it',
26
  'google/gemma-1.1-7b-it',
27
  'google/gemma-1.1-2b-it',
28
 
29
  'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
30
  'HuggingFaceH4/zephyr-7b-beta',
31
  'HuggingFaceM4/idefics-9b-instruct',
32
+
33
+ `meta-llama/Meta-Llama-3.1-405B-Instruct-FP8`,
34
+ 'meta-llama/Meta-Llama-3.1-70B-Instruct',
35
+ 'meta-llama/Meta-Llama-3.1-8B-Instruct',
36
  'meta-llama/Meta-Llama-3-70B-Instruct',
37
  'meta-llama/Meta-Llama-3-8B-Instruct',
38
  'meta-llama/Llama-2-70b-chat-hf',
 
44
  `NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO`,
45
 
46
  'mistralai/Mixtral-8x7B-Instruct-v0.1',
47
+ 'mistralai/Mistral-Nemo-Instruct-2407',
48
  'mistralai/Mistral-7B-Instruct-v0.3',
49
  'mistralai/Mistral-7B-Instruct-v0.2',
50
  'mistralai/Mistral-7B-Instruct-v0.1',
51
  `mistralai/mathstral-7B-v0.1`,
52
 
53
  '01-ai/Yi-1.5-34B-Chat',
54
+
55
+ 'openai-community/gpt2',
56
 
57
  ];
58