File size: 1,083 Bytes
a21dee1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "image_editing_instruction",
  "strict": true,
  "schema": {
    "type": "object",
    "properties": {
      "category": {
        "type": "string",
        "description": "The editing category based on the instruction. Must be one of: Addition, Remove, Local, Global, Background.",
        "enum": [
          "Addition",
          "Remove",
          "Local",
          "Global",
          "Background"
        ]
      },
      "subject": {
        "type": "string",
        "description": "The subject of the editing instruction. Must be a noun in no more than 5 words."
      },
      "caption": {
        "type": "string",
        "description": "The detailed description of the image."
      },
      "target_caption": {
        "type": "string",
        "description": "Apply the editing instruction to the image caption. The target caption should describe the image after the editing instruction is applied."
      }
    },
    "required": [
      "category",
      "subject",
      "caption",
      "target_caption"
    ],
    "additionalProperties": false
  }
}