Skip to content

Commit 9bc8118

Browse files
committed
change default model to Jambda v1.5
1 parent feedb3b commit 9bc8118

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mdbook-goals/src/llm.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const MODELS: &[(&str, &str)] = &[
4141
("Mistral7bInstruct", "mistral.mistral-7b-instruct-v0:2"),
4242
("MistralLarge", "mistral.mistral-large-2402-v1:0"),
4343
("MistralLarge2", "mistral.mistral-large-2407-v1:0"),
44+
("JambdaV15Large", "ai21.jamba-1-5-large-v1:0"),
4445
];
4546

4647
impl LargeLanguageModel {
@@ -63,7 +64,7 @@ impl LargeLanguageModel {
6364

6465
fn lookup_model_id(model_id: Option<&str>) -> anyhow::Result<String> {
6566
let Some(s) = model_id else {
66-
return Self::lookup_model_id(Some("ClaudeV3Sonnet"));
67+
return Self::lookup_model_id(Some("JambdaV15Large"));
6768
};
6869

6970
if s.contains(".") {

0 commit comments

Comments
 (0)