Update app.py
Browse files
app.py
CHANGED
@@ -12,9 +12,11 @@ from Gradio_UI import GradioUI
|
|
12 |
|
13 |
# import meterostat
|
14 |
|
15 |
-
def get_weather(city) ->
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
|
19 |
|
20 |
# =============== TOOLS
|
|
|
12 |
|
13 |
# import meterostat
|
14 |
|
15 |
+
def get_weather(city:str) -> str:
|
16 |
+
"""
|
17 |
+
Give current weather in city
|
18 |
+
"""
|
19 |
+
return "Temps de merde"
|
20 |
|
21 |
|
22 |
# =============== TOOLS
|