fix zipcode triggers auto completion (#1199)

This commit is contained in:
LawyZheng
2024-11-15 12:32:27 +08:00
committed by GitHub
parent e3aa583b24
commit af6cca91d4

View File

@@ -8,7 +8,7 @@ Reply in the following JSON format:
"field": str, // Which field is this action intended to fill out?
"is_required": bool, // True if this is a required field, otherwise false.
"is_search_bar": bool, // True if the element to take the action is a search bar, otherwise false.
"is_location_input": bool, // True if the element is asking user to input where he lives, otherwise false. For example, it is asking for location, or address, or other similar information.
"is_location_input": bool, // True if the element is asking user to input where he lives, otherwise false. For example, it is asking for location, or address, or other similar information. Output False if it only requires ZIP code.
}
Existing reasoning context: