We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feedb3b commit 9bc8118Copy full SHA for 9bc8118
mdbook-goals/src/llm.rs
@@ -41,6 +41,7 @@ const MODELS: &[(&str, &str)] = &[
41
("Mistral7bInstruct", "mistral.mistral-7b-instruct-v0:2"),
42
("MistralLarge", "mistral.mistral-large-2402-v1:0"),
43
("MistralLarge2", "mistral.mistral-large-2407-v1:0"),
44
+ ("JambdaV15Large", "ai21.jamba-1-5-large-v1:0"),
45
];
46
47
impl LargeLanguageModel {
@@ -63,7 +64,7 @@ impl LargeLanguageModel {
63
64
65
fn lookup_model_id(model_id: Option<&str>) -> anyhow::Result<String> {
66
let Some(s) = model_id else {
- return Self::lookup_model_id(Some("ClaudeV3Sonnet"));
67
+ return Self::lookup_model_id(Some("JambdaV15Large"));
68
};
69
70
if s.contains(".") {
0 commit comments