Find answers from the community

Updated 6 days ago

Multi-Modal

llm = llm or Settings.llm
--> 143 assert isinstance(llm, MultiModalLLM)
144
145 return SimpleMultiModalQueryEngine(

Hi I'm getting this error with AzureOpenAI llm it was working fine a week ago is there any update or specific version I have to donwgrade to?

isinstance(llm, MultiModalLLM) - false
W
D
L
8 comments
You need to setup Multi-Modal instance for Azure: pip install llama-index-multi-modal-llms-azure-openai
Yeah I checked it trying it now Thanks
Hi so MultiModelVector Index uses clip for both images and text? Do I have to provide embed modal?

index = MultiModalVectorStoreIndex(merged_text_nodes+merged_image_nodes) ? here
it uses clip for images only
if you dont provide, its defaulting to clip + openai embeddings
I used AzureOpenAIMultiModal and from docs table I see its a multi modal but I'm still running in to this check issue
Attachment
image.png
Oh whoops, it is not multimodal 😒 Thats my bad, long story, we are halfway through a migration -- try downgrading it pip install -U "llama-index-multi-modal-llms-azure-openai<0.4.0" "llama-index-multi-modal-llms-openai<0.5.0"
Will make a fix in core for this though in the future
Add a reply
Sign up and join the conversation on Discord