swarms/playground/models/kosmos_example.py

11 lines
176 B

1 year ago
from swarms import Kosmos
# Initialize the model
model = Kosmos()
# Generate
out = model.run("Analyze the reciepts in this image", "docs.jpg")
# Print the output
1 year ago
print(out)