yangtb24 commited on
Commit
74230fc
·
verified ·
1 Parent(s): 549935f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +73 -1
app.py CHANGED
@@ -5,6 +5,7 @@ from flask import Flask, request, jsonify
5
  from datetime import datetime, timezone, timedelta
6
  import asyncio
7
  import re
 
8
 
9
  app = Flask(__name__)
10
 
@@ -13,6 +14,7 @@ AI_API_ENDPOINT = os.environ.get('AI_API_ENDPOINT')
13
  AI_API_KEY = os.environ.get('AI_API_KEY')
14
  AI_MODEL = os.environ.get('AI_MODEL')
15
  PHP_PROXY_URL = os.environ.get('PHP_PROXY_URL')
 
16
 
17
  if not all([TELEGRAM_BOT_TOKEN, AI_API_ENDPOINT, AI_API_KEY, AI_MODEL]):
18
  raise ValueError("请设置所有必要的环境变量")
@@ -65,6 +67,23 @@ TOOLS = [
65
  "required": []
66
  }
67
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  }
69
  ]
70
 
@@ -73,6 +92,31 @@ def get_current_datetime():
73
  local_time = utc_time.astimezone(timezone(timedelta(hours=8)))
74
  return local_time.strftime("%Y-%m-%d %H:%M:%S")
75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  def make_telegram_request(method, data=None):
77
  url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/{method}"
78
  if PHP_PROXY_URL:
@@ -318,7 +362,35 @@ async def handleAiResponse(ai_data, chatId, history, thinking_message_id):
318
  print(f'AI API 响应失败: {e}')
319
  await editTelegramMessage(chatId, thinking_message_id, 'AI API 响应失败,请稍后再试')
320
  return 'AI API 响应失败,请稍后再试'
321
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
 
323
  else:
324
  return '不支持的工具调用'
 
5
  from datetime import datetime, timezone, timedelta
6
  import asyncio
7
  import re
8
+ from urllib.parse import quote
9
 
10
  app = Flask(__name__)
11
 
 
14
  AI_API_KEY = os.environ.get('AI_API_KEY')
15
  AI_MODEL = os.environ.get('AI_MODEL')
16
  PHP_PROXY_URL = os.environ.get('PHP_PROXY_URL')
17
+ SEARXNG_URL = os.environ.get('SEARXNG_URL', 'https://sousuo.emoe.top') # 使用环境变量,默认值
18
 
19
  if not all([TELEGRAM_BOT_TOKEN, AI_API_ENDPOINT, AI_API_KEY, AI_MODEL]):
20
  raise ValueError("请设置所有必要的环境变量")
 
67
  "required": []
68
  }
69
  }
70
+ },
71
+ {
72
+ "type": "function",
73
+ "function": {
74
+ "name": "search_with_searxng",
75
+ "description": "使用 Searxng 搜索信息,并返回搜索结果的摘要",
76
+ "parameters": {
77
+ "type": "object",
78
+ "properties": {
79
+ "query": {
80
+ "type": "string",
81
+ "description": "要搜索的关键词"
82
+ }
83
+ },
84
+ "required": ["query"]
85
+ }
86
+ }
87
  }
88
  ]
89
 
 
92
  local_time = utc_time.astimezone(timezone(timedelta(hours=8)))
93
  return local_time.strftime("%Y-%m-%d %H:%M:%S")
94
 
95
+ def search_with_searxng(query):
96
+ """使用 Searxng 搜索信息,并返回搜索结果的摘要"""
97
+ try:
98
+ search_url = f"{SEARXNG_URL}/search?q={quote(query)}&format=json"
99
+ response = requests.get(search_url)
100
+ response.raise_for_status()
101
+ results = response.json().get('results', [])
102
+ if results:
103
+ # 提取标题和链接,返回格式化的结果
104
+ formatted_results = []
105
+ for result in results:
106
+ title = result.get('title', '无标题')
107
+ url = result.get('url', '无链接')
108
+ formatted_results.append(f"- [{title}]({url})")
109
+ return "\n".join(formatted_results)
110
+ else:
111
+ return "没有找到相关的搜索结果。"
112
+ except requests.exceptions.RequestException as e:
113
+ print(f"Searxng 请求失败: {e}")
114
+ return "搜索请求失败,请稍后再试。"
115
+ except Exception as e:
116
+ print(f"处理搜索结果时发生错误:{e}")
117
+ return "处理搜索结果时发生错误。"
118
+
119
+
120
  def make_telegram_request(method, data=None):
121
  url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/{method}"
122
  if PHP_PROXY_URL:
 
362
  print(f'AI API 响应失败: {e}')
363
  await editTelegramMessage(chatId, thinking_message_id, 'AI API 响应失败,请稍后再试')
364
  return 'AI API 响应失败,请稍后再试'
365
+ elif function_name == 'search_with_searxng':
366
+ query = tool_call['function']['arguments']['query']
367
+ search_results = search_with_searxng(query)
368
+ history.append({
369
+ 'tool_call_id': tool_call['id'],
370
+ 'role': 'tool',
371
+ 'name': function_name,
372
+ 'content': search_results,
373
+ })
374
+ messages = [
375
+ {'role': 'system', 'content': PROMPT_TEMPLATES.get(USER_SETTINGS.get(chatId, {}).get('prompt_index', CURRENT_PROMPT_INDEX), "")},
376
+ *history
377
+ ]
378
+
379
+ try:
380
+ ai_response = requests.post(AI_API_ENDPOINT, headers=AI_API_HEADERS, json={
381
+ 'model': AI_MODEL,
382
+ 'messages': messages,
383
+ 'max_tokens': MAX_TOKENS,
384
+ 'temperature': USER_SETTINGS.get(chatId, {}).get('temperature', DEFAULT_TEMP),
385
+ 'tools': TOOLS,
386
+ })
387
+ ai_response.raise_for_status()
388
+ ai_data = ai_response.json()
389
+ return await handleAiResponse(ai_data, chatId, history, thinking_message_id)
390
+ except requests.exceptions.RequestException as e:
391
+ print(f'AI API 响应失败: {e}')
392
+ await editTelegramMessage(chatId, thinking_message_id, 'AI API 响应失败,请稍后再试')
393
+ return 'AI API 响应失败,请稍后再试'
394
 
395
  else:
396
  return '不支持的工具调用'