File size: 4,615 Bytes
520da1b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
    "task": "Analyze the semantic and style modes in the given image and provide explanations.",
    "output_format": {
      "image_content": {
        "type": "string",
        "description": "Primary content in image (less than 10 words)",
        "examples": [
          {
            "example_value": "A single red apple",
            "explanation": "A concise description with 5 words focusing on 'what' the image is."
          },
          {
            "example_value": "Two people shaking hands",
            "explanation": "An example describing the main objects and action within 10 words."
          }
        ]
      },
      "topic": {
        "type": "string",
        "description": "Relevant topic (3-5 words)",
        "examples": [
          {
            "example_value": "fruit, environment, healthy eating",
            "explanation": "Three to five words separated by commas, capturing the core theme."
          },
          {
            "example_value": "teamwork, collaboration, business partnership",
            "explanation": "Three to five key words describing the main idea of the image."
          }
        ]
      },
      "data_facts": {
        "type": "enum",
        "description": "Possible usage to reflect any data fact (choose one from the list or 'none')",
        "choices": [
          "increasing",
          "decreasing",
          "highlight",
          "deny",
          "maximum",
          "minimum",
          "none"
        ],
        "examples": [
          {
            "example_value": "increasing",
            "explanation": "Use if the image shows an upward arrow or indicates growth."
          },
          {
            "example_value": "decreasing",
            "explanation": "Use if the image shows a downward arrow or indicates decline."
          },
          {
            "example_value": "highlight",
            "explanation": "Use if the image emphasizes something align with it (e.g., a light bulb)."
          },
          {
            "example_value": "deny",
            "explanation": "Use if the image represents a 'no' or 'wrong' symbol."
          },
          {
            "example_value": "maximum",
            "explanation": "Use if the image indicates a top/peak point."
          },
          {
            "example_value": "minimum",
            "explanation": "Use if the image indicates a bottom/lowest point."
          },
          {
            "example_value": "none",
            "explanation": "Use if none of the above data facts apply."
          }
        ]
      },
      "color_style": {
        "type": "enum",
        "description": "Dominant color style, if image is black and white, return grayscale instead of monochrome",
        "choices": [
          "grayscale",
          "monochrome",
          "dual-color",
          "colorful"
        ],
        "examples": [
          {
            "example_value": "grayscale",
            "explanation": "Use if the image is purely in black, white, and shades of gray."
          },
          {
            "example_value": "monochrome",
            "explanation": "Use if the image uses colors with same hue but not grayscale."
          },
          {
            "example_value": "dual-color",
            "explanation": "Use if the image uses two sets of colors on the color wheel."
          },
          {
            "example_value": "colorful",
            "explanation": "Use if the image has multiple bright or varied colors."
          }
        ]
      },
      "icon_or_clipart": {
        "type": "enum",
        "description": "judge the image whether it is an small icon, medium clipart or large background",
        "choices": [
          "icon",
          "clipart",
          "background"
        ],
        "examples": [
          {
            "example_value": "icon",
            "explanation": "Icon showing basic shapes and always small."
          },
          {
            "example_value": "clipart",
            "explanation": "Clipart showing detailed objects."
          },
          {
            "example_value": "background",
            "explanation": "Large scale image or clipart that suitable to be used as a background."
          }
        ]
      }
    },
    "output_example": {
      "image_content": "A single red apple",
      "topic": "fruit, environment",
      "data_facts": "none",
      "color_style": "colorful",
      "icon_or_clipart": "icon",
      "explanation": "The image shows a red apple, focusing on a fruit in nature. It is colorful and icon-sized. No specific data fact is represented."
    }
  }