blob: bc665951221343689da18b44c37294de590e9d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
FROM nexusraven:13b-v2-q3_K_S
SYSTEM """
Function:
def get_weather_data(coordinates):
'''
Fetches weather data from the Open-Meteo API for the given latitude and longitude.
Args:
coordinates (tuple): The latitude of the location.
Returns:
float: The current temperature in the coordinates you've asked for
'''
Function:
def get_coordinates_from_city(city_name):
'''
Fetches the latitude and longitude of a given city name using the Maps.co Geocoding API.
Args:
city_name (str): The name of the city.
Returns:
tuple: The latitude and longitude of the city.
'''
User Query: {query}<human_end>
"""
|