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 5bf679c commit 2f096caCopy full SHA for 2f096ca
llama_stack/providers/utils/inference/augment_messages.py
@@ -34,7 +34,7 @@ def augment_messages_for_tools(request: ChatCompletionRequest) -> List[Message]:
34
return request.messages
35
36
if model.model_family == ModelFamily.llama3_1 or (
37
- model.model_family == ModelFamily.llama3_2 and is_multimodal(model)
+ model.model_family == ModelFamily.llama3_2 and is_multimodal(model.core_model_id)
38
):
39
# llama3.1 and llama3.2 multimodal models follow the same tool prompt format
40
return augment_messages_for_tools_llama_3_1(request)
0 commit comments