Nymbo commited on
Commit
68f4f33
·
verified ·
1 Parent(s): 3120945

setting llama-3-70b to default model

Browse files
src/lib/components/Playground/Playground.svelte CHANGED
@@ -52,7 +52,7 @@
52
  let conversations: Conversation[] = [
53
  {
54
  id: String(Math.random()),
55
- model: '01-ai/Yi-1.5-34B-Chat',
56
  config: { temperature: 0.5, maxTokens: 2048, streaming: true, jsonMode: false },
57
  messages: startMessages
58
  }
 
52
  let conversations: Conversation[] = [
53
  {
54
  id: String(Math.random()),
55
+ model: 'meta-llama/Meta-Llama-3-70B-Instruct',
56
  config: { temperature: 0.5, maxTokens: 2048, streaming: true, jsonMode: false },
57
  messages: startMessages
58
  }