DoNotChoke commited on
Commit
5030b1f
·
verified ·
1 Parent(s): b59ebb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +85 -55
app.py CHANGED
@@ -1,64 +1,94 @@
1
  import gradio as gr
2
- from huggingface_hub import InferenceClient
 
 
 
3
 
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
41
 
 
 
 
 
 
 
 
42
 
43
- """
44
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
45
- """
46
- demo = gr.ChatInterface(
47
- respond,
48
- additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
- gr.Slider(
53
- minimum=0.1,
54
- maximum=1.0,
55
- value=0.95,
56
- step=0.05,
57
- label="Top-p (nucleus sampling)",
58
- ),
59
- ],
60
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  if __name__ == "__main__":
64
- demo.launch()
 
1
  import gradio as gr
2
+ import requests
3
+ import os
4
+ from geopy.geocoders import Nominatim
5
+ from smolagents import tool, CodeAgent, HfApiModel
6
 
7
+ # Lấy API key từ biến môi trường
8
+ WEATHER_API_KEY = os.environ.get("WEATHER_API_KEY")
 
 
9
 
10
+ # Định nghĩa tool get_weather
11
+ @tool
12
+ def get_weather(lat: float, lon: float) -> dict | None:
13
+ """
14
+ Call API to retrieve weather information for the given location.
15
+ Args:
16
+ lat: latitude of the location
17
+ lon: longitude of the location
18
+ """
19
+ url = f"https://api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon}&appid={WEATHER_API_KEY}&units=metric"
20
+ try:
21
+ response = requests.get(url)
22
+ data = response.json()
23
+ if response.status_code == 200:
24
+ return {
25
+ "condition": data["weather"][0]["description"],
26
+ "temperature": data["main"]["temp"],
27
+ "humidity": data["main"]["humidity"],
28
+ "wind_speed": data["wind"]["speed"]
29
+ }
30
+ return None
31
+ except Exception as e:
32
+ print(f"Weather API Error: {e}")
33
+ return None
34
 
35
+ # Khởi tạo agent
36
+ weather_agent = CodeAgent(
37
+ model=HfApiModel("deepseek-ai/DeepSeek-R1", max_tokens=8096),
38
+ tools=[get_weather],
39
+ description="Weather information provider"
40
+ )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
+ # Hàm xử lý địa lý
43
+ def get_coordinates(location: str) -> tuple:
44
+ geolocator = Nominatim(user_agent="weather_chatbot")
45
+ location = geolocator.geocode(location)
46
+ if location:
47
+ return (location.latitude, location.longitude)
48
+ return (None, None)
49
 
50
+ # Hàm xử lý chat
51
+ def respond(message, history):
52
+ # Chuyển đổi địa điểm thành tọa độ
53
+ lat, lon = get_coordinates(message)
54
+
55
+ if not lat or not lon:
56
+ return "Không tìm thấy địa điểm. Vui lòng thử lại với tên chính xác hơn."
57
+
58
+ # Gọi agent
59
+ result = weather_agent.run(f"""
60
+ Hãy phân tích thông tin thời tiết cho tọa độ {lat}, {lon} và trình bày kết quả theo định dạng:
61
+ - Điều kiện thời tiết
62
+ - Nhiệt độ
63
+ - Độ ẩm
64
+ - Tốc độ gió
65
+ """)
66
+
67
+ # Xử lý kết quả
68
+ weather_data = get_weather(lat, lon)
69
+ if not weather_data:
70
+ return "Không thể lấy dữ liệu thời tiết. Vui lòng thử lại sau."
71
+
72
+ response = f"""
73
+ 🌤️ **Thông tin thời tiết cho {message}**:
74
+ - **Điều kiện**: {weather_data['condition'].capitalize()}
75
+ - **Nhiệt độ**: {weather_data['temperature']}°C
76
+ - **Độ ẩm**: {weather_data['humidity']}%
77
+ - **Gió**: {weather_data['wind_speed']} m/s
78
+ """
79
+
80
+ return response
81
 
82
+ # Tạo giao diện Gradio
83
+ with gr.Blocks(theme=gr.themes.Soft()) as demo:
84
+ gr.Markdown("# 🗺️ Weather Chat Agent")
85
+ gr.Markdown("Nhập địa điểm để xem thông tin thời tiết")
86
+
87
+ chatbot = gr.ChatInterface(
88
+ respond,
89
+ examples=["Hà Nội", "New York", "Tokyo", "Paris"],
90
+ title="Weather Chatbot"
91
+ )
92
 
93
  if __name__ == "__main__":
94
+ demo.launch()