KITT / kitt /skills /vehicle.py
sasan's picture
chore: A new more advanced method
60ee11d
raw
history blame
1.18 kB
from .common import vehicle
STATUS_TEMPLATE = """
The current location is:{location}
The current Geo coordinates: {lat}, {lon}
The current time: {time}
The current date: {date}
The current destination is: {destination}
"""
def vehicle_status() -> tuple[str, dict[str, str]]:
"""Get current vehicle status, which includes, location, date, time, destination.
Call this to get the current destination or location of the car/vehicle.
Returns:
dict[str, str]: The vehicle status. For example:
{
"location": "Luxembourg Gare, Luxembourg",
"lat": 49.6000,
"lon": 6.1333,
"date": "2025-03-29",
"time": "08:00:20",
"destination": "Kirchberg Campus, Kirchberg"
}
"""
# vs = {
# "location": "Luxembourg Gare, Luxembourg",
# "lat": 49.6000,
# "lon": 6.1333,
# "date": "2025-03-29",
# "time": "08:00:20",
# "destination": "Kirchberg Campus, Luxembourg"
# }
vs = vehicle.dict()
vs["lat"] = vs["location_coordinates"][0]
vs["lon"] = vs["location_coordinates"][1]
return STATUS_TEMPLATE.format(**vs), vs