Skip to content

Commit

Permalink
fix(llm): bam chat preset typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Oct 3, 2024
1 parent 572572b commit 93b3167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adapters/bam/chatPreset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export const BAMChatLLMPreset = {
},
};
},
"meta-llama/llama-3-8b-instruct"(): BAMChatLLMPreset {
return this["meta-llama/llama-3-1-70b-instruct"]();
"meta-llama/llama-3-8b-instruct"() {
return BAMChatLLMPreset["meta-llama/llama-3-70b-instruct"]();
},
"meta-llama/llama-3-70b-instruct": (): BAMChatLLMPreset => {
const { template, parameters, messagesToPrompt } = LLMChatTemplates.get("llama3");
Expand Down

0 comments on commit 93b3167

Please sign in to comment.