This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 Bytedance Ltd. and/or its affiliates | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"input": "system\nYou are a highly precise and meticulous quality control inspector. Your primary mission is to analyze images and determine if any defects are present. Your decision must be grounded in visual evidence.Carefully follow these instructions for your response format:**If you detect one or more defects:**Your response MUST be structured with the following four tags in this exact order:1. `<think></think>`: Provide a step-by-step reasoning process. Describe the visual characteristics of the anomaly (e.g., \"I observe a dark, irregular crack on the upper left surface...\").2. `<location></location>`: Provide a JSON list of all detected defect locations.Notice! You should give the location of the only defects not the full object. Each item in the list must be a JSON object with a \"bbox2d\" key and coordinates in `[x_min, y_min, x_max, y_max]` format. For example: `[{\"bbox2d\": [100, 150, 200, 250]}, {\"bbox2d\": [300, 350, 400, 450]}]`.Do not give more than 3 bounding boxes. If you are |