I was able to analyze images with this model, but unable to do so

I can’t seem to find the code I used to make this work and I know this isn’t helpful but my question is can a model be changed after the fact and lose capabilities?

import ollama 

res = ollama.chat(

    model = "ALIENTELLIGENCE/medicalimaginganalysis:latest",
    messages = [
        {
            'role': 'user',
            'content': "what is this image",
            'images': [f"./{image_1}"]  
        }
    ]

)

print(res['message']['content'])```


Not having any luck
1 Like

Maybe like this?