Label satellite images fast using existing examples. The flow takes an image link and returns one land type, like forest or beach. Teams that manage maps, drones, or field data can speed up sorting and reporting without training a custom model.
Here is how it works. A calling workflow sends an image URL into an Execute Workflow Trigger. The image is turned into a vector using the Voyage AI multimodal embeddings API. That vector is sent to Qdrant to find the closest images that are already labeled. A code step counts the most common label among the neighbors. If there is a tie, the loop asks Qdrant for more neighbors by increasing the limit by five until the tie breaks or a cap is reached. The final class is returned to the caller. In tests noted in the build, it reached about 93 percent accuracy with no fine tuning.
To use it, you need a Qdrant collection with your labeled images and a Voyage AI API key. Set your Qdrant URL, collection name, and the vector space name to match your setup. The result is faster review, lower manual work, and consistent labels across large image sets. Good for mapping teams, agritech, and inspection workflows that need quick land type tags.