Skip to content

Commit

Permalink
Merge pull request #117 from replicate/mattt/default-to-8b
Browse files Browse the repository at this point in the history
Default to meta/meta-llama-3-8b-instruct
  • Loading branch information
cbh123 authored Apr 26, 2024
2 parents 9f3aa55 + 9cd48f8 commit 8da47cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function HomePage() {
const [starting, setStarting] = useState(false);

// Llama params
const [model, setModel] = useState(MODELS[0]); // default to 70B
const [model, setModel] = useState(MODELS[1]); // default to 8B
const [systemPrompt, setSystemPrompt] = useState(
"You are a helpful assistant."
);
Expand Down

0 comments on commit 8da47cd

Please sign in to comment.