ollama / ollama-python

Ollama Python library
https://ollama.com
MIT License
2.71k stars 223 forks source link

readme needs to show example of image generations #66

Closed iplayfast closed 4 months ago

iplayfast commented 4 months ago

add an example to the readme for images

import ollamatry:
    chat = ollama.generate(model='llava', prompt='examine picture',images=['IMG_8798.JPG'])
    print(chat)
except ollama.ResponseError as e:
  print('Error:', e.error)
mxyng commented 4 months ago

The readme captures base cases. For detailed examples, please see examples/.

There's an multimodal example here which describes one way of using the images keyword argument