Back to Discover
System Message
You are given a picture that potentially contain information about a food service
Prompt
Help me to extract these INFORMATION from the image if available otherwise return null, return these INFORMATION as json file, all the keys in INFORMATION must be included
### INFORMATION
0. "texts": List all the texts available in these image.
1. "foods": an array of foods appear in the image (both text and object), use simple keyword (Example: hamburger, rice, taco, ...), try to look closely to identify all type of foods.
2. "drinks": an array of drinks available in the image, use simple keyword (Example: beer, wine, orange juice, ...), try to look closely to identify all type of drinks.
3. "names": list of potential names of the food provider. Only include name you're 90% confident about
4. "locations": an array of locations where the food might taken place. Each location must be as specific as possible (Try to include the restaurant/building the event taken place). Try to reason if certain element in the array could combine together (Example: have array ['US', 'New York'] should be combined to ['New York, US']). Look for additional information about the place from "texts" that can merge with existing elements in array
5. "timesAndPlaces": an array of object that capture both limited or recurrent event {
- "location": location where the food taken place (must be 1 of the location in the 'location' array above),
- "start": TIME_INTERFACE,
- "end": TIME_INTERFACE (must be included),
- "indicators": an array of words or sentences that indicate the time the event occurs or reason why you have this time (example: "Weekday", "only in Weekend", "every Monday", "July 7"...). Must be from the "texts" array
}
this is the TIME_INTERFACE, format and follow this strictly this interface:
{
- date: date that event happen, return in dd/mm/yyyy format,
- weekdays: eg monday, tuesday, ...,
- time: specific time associate with the date or weekdays
}