Skip to content

Commit 6e56baa

Browse files
committed
Add Meta Llama 3.1, 3.2 instruct model enums
1 parent a55316c commit 6e56baa

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

models/spring-ai-bedrock/src/main/java/org/springframework/ai/bedrock/llama/api/LlamaChatBedrockApi.java

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,42 @@ public enum LlamaChatModel implements ChatModelDescription {
226226
/**
227227
* meta.llama3-70b-instruct-v1:0
228228
*/
229-
LLAMA3_70B_INSTRUCT_V1("meta.llama3-70b-instruct-v1:0");
229+
LLAMA3_70B_INSTRUCT_V1("meta.llama3-70b-instruct-v1:0"),
230+
231+
/**
232+
* meta.llama3-1-8b-instruct-v1:0
233+
*/
234+
LLAMA3_1_8B_INSTRUCT_V1("meta.llama3-1-8b-instruct-v1:0"),
235+
236+
/**
237+
* meta.llama3-1-70b-instruct-v1:0
238+
*/
239+
LLAMA3_1_70B_INSTRUCT_V1("meta.llama3-1-70b-instruct-v1:0"),
240+
241+
/**
242+
* meta.llama3-1-405b-instruct-v1:0
243+
*/
244+
LLAMA3_1_405B_INSTRUCT_V1("meta.llama3-1-405b-instruct-v1:0"),
245+
246+
/**
247+
* meta.llama3-2-1b-instruct-v1:0
248+
*/
249+
LLAMA3_2_1B_INSTRUCT_V1("meta.llama3-2-1b-instruct-v1:0"),
250+
251+
/**
252+
* meta.llama3-2-3b-instruct-v1:0
253+
*/
254+
LLAMA3_2_3B_INSTRUCT_V1("meta.llama3-2-3b-instruct-v1:0"),
255+
256+
/**
257+
* meta.llama3-2-11b-instruct-v1:0
258+
*/
259+
LLAMA3_2_11B_INSTRUCT_V1("meta.llama3-2-11b-instruct-v1:0"),
260+
261+
/**
262+
* meta.llama3-2-90b-instruct-v1:0
263+
*/
264+
LLAMA3_2_90B_INSTRUCT_V1("meta.llama3-2-90b-instruct-v1:0");
230265

231266
private final String id;
232267

0 commit comments

Comments
 (0)