Views
No views yet

conv_llava_v1 in this file<fn_call> tag. Here is an example:1<fn_call>{
2 "type": "object",
3 "properties": {
4 "bus_colors": {
5 "type": "array",
6 "description": "The colors of the bus in the image.",
7 "items": {
8 "type": "string",
9 "enum": ["red", "blue", "green", "white"]
10 }
11 },
12 "bus_features": {
13 "type": "string",
14 "description": "The features seen on the back of the bus."
15 },
16 "bus_location": {
17 "type": "string",
18 "description": "The location of the bus (driving or pulled off to the side).",
19 "enum": ["driving", "pulled off to the side"]
20 }
21 }
22}1{
2 "bus_colors": ["red", "white"],
3 "bus_features": "An advertisement",
4 "bus_location": "driving"
5}

1<fn_call>{
2 "type": "object",
3 "properties": {
4 "food_list": {
5 "type": "array",
6 "description": "List of all the food",
7 "items": {
8 "type": "string",
9 }
10 },
11 }
12}1{
2 "food_list": [
3 "Double Burger",
4 "Cheeseburger",
5 "French Fries",
6 "Shakes",
7 "Coffee"
8 ]
9}