You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/gemini.py

13 lines
253 B

from swarms.models.gemini import Gemini
# Initialize the model
model = Gemini()
# Establish the prompt and image
task = "What is your name"
img = "images/github-banner-swarms.png"
# Run the model
out = model.run("What is your name?", img)
print(out)