Skip to content

Commit

Permalink
run llama 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow authored Dec 6, 2024
1 parent 2e12d3a commit 57e8827
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Chat.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
});
const models = await r.json();
const model = models.data.find((m) => m.id == "llama-3.1-70b-specdec")
? "llama-3.1-70b-specdec"
: "llama-3.1-70b-versatile";
const model = models.data.find((m) => m.id == "llama-3.3-70b-specdec")
? "llama-3.3-70b-specdec"
: "llama-3.3-70b-versatile";
localStorage.model = model;
return model;
};
Expand Down

0 comments on commit 57e8827

Please sign in to comment.