You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"languageCode": "A String", # The language code of the user.
591
+
"latLng": { # An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges. # The location of the user.
592
+
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
593
+
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
594
+
},
595
+
},
589
596
},
590
597
"tools": [ # Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model.
591
598
{ # Tool details that the model may use to generate response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. A Tool object should contain exactly one type of Tool (e.g FunctionDeclaration, Retrieval or GoogleSearchRetrieval).
@@ -1071,6 +1078,13 @@ <h3>Method Details</h3>
1071
1078
],
1072
1079
"mode": "A String", # Optional. Function calling mode.
"languageCode": "A String", # The language code of the user.
1083
+
"latLng": { # An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges. # The location of the user.
1084
+
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
1085
+
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
1086
+
},
1087
+
},
1074
1088
},
1075
1089
"tools": [ # Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model.
1076
1090
{ # Tool details that the model may use to generate response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. A Tool object should contain exactly one type of Tool (e.g FunctionDeclaration, Retrieval or GoogleSearchRetrieval).
"description": "An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges.",
1828
+
"id": "LatLng",
1829
+
"properties": {
1830
+
"latitude": {
1831
+
"description": "The latitude in degrees. It must be in the range [-90.0, +90.0].",
1832
+
"format": "double",
1833
+
"type": "number"
1834
+
},
1835
+
"longitude": {
1836
+
"description": "The longitude in degrees. It must be in the range [-180.0, +180.0].",
1837
+
"format": "double",
1838
+
"type": "number"
1839
+
}
1840
+
},
1841
+
"type": "object"
1842
+
},
1807
1843
"ModelOperationMetadata": {
1808
1844
"description": "This is returned in the longrunning operations for create/update.",
0 commit comments