@agentunion/kite 1.3.2 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +302 -0
- package/cli.js +119 -4
- package/core/dependency_checker.py +250 -0
- package/core/env_checker.py +490 -0
- package/dependencies_lock.json +128 -0
- package/extensions/agents/assistant/entry.py +111 -1
- package/extensions/agents/assistant/server.py +279 -215
- package/extensions/channels/acp_channel/entry.py +111 -1
- package/extensions/channels/acp_channel/module.md +23 -22
- package/extensions/channels/acp_channel/server.py +279 -215
- package/extensions/event_hub_bench/entry.py +107 -1
- package/extensions/services/backup/entry.py +306 -21
- package/extensions/services/backup/module.md +24 -22
- package/extensions/services/evol/auth_manager.py +443 -0
- package/extensions/services/evol/config.yaml +149 -0
- package/extensions/services/evol/config_loader.py +117 -0
- package/extensions/services/evol/entry.py +406 -0
- package/extensions/services/evol/evol_api.py +173 -0
- package/extensions/services/evol/evol_config.json5 +29 -0
- package/extensions/services/evol/migrate_tokens.py +122 -0
- package/extensions/services/evol/module.md +32 -0
- package/extensions/services/evol/pairing.py +250 -0
- package/extensions/services/evol/pairing_codes.jsonl +1 -0
- package/extensions/services/evol/relay.py +682 -0
- package/extensions/services/evol/relay_config.json5 +67 -0
- package/extensions/services/evol/routes/__init__.py +1 -0
- package/extensions/services/evol/routes/routes_management_ws.py +127 -0
- package/extensions/services/evol/routes/routes_rpc.py +89 -0
- package/extensions/services/evol/routes/routes_test.py +61 -0
- package/extensions/services/evol/server.py +875 -0
- package/extensions/services/evol/static/css/style.css +1200 -0
- package/extensions/services/evol/static/index.html +781 -0
- package/extensions/services/evol/static/index_evol.html +14 -0
- package/extensions/services/evol/static/js/app.js +6304 -0
- package/extensions/services/evol/static/js/auth.js +326 -0
- package/extensions/services/evol/static/js/dialog.js +285 -0
- package/extensions/services/evol/static/js/evol-app-fixed.js +50 -0
- package/extensions/services/evol/static/js/evol-app.js +1949 -0
- package/extensions/services/evol/static/js/evol-app.js.bak +1800 -0
- package/extensions/services/evol/static/js/kernel-client-example.js +228 -0
- package/extensions/services/evol/static/js/kernel-client.js +396 -0
- package/extensions/services/evol/static/js/main.js +141 -0
- package/extensions/services/evol/static/js/registry-tests.js +585 -0
- package/extensions/services/evol/static/js/stats.js +217 -0
- package/extensions/services/evol/static/js/token-manager.js +175 -0
- package/extensions/services/evol/static/pairing.html +248 -0
- package/extensions/services/evol/static/test_registry.html +262 -0
- package/extensions/services/evol/static/test_relay.html +462 -0
- package/extensions/services/evol/stats_manager.py +240 -0
- package/extensions/services/model_service/entry.py +167 -19
- package/extensions/services/model_service/module.md +21 -22
- package/extensions/services/proxy/.claude/settings.local.json +13 -0
- package/extensions/services/proxy/CHANGELOG_20260308.md +258 -0
- package/extensions/services/proxy/_fix_prints.py +133 -0
- package/extensions/services/proxy/_fix_prints2.py +87 -0
- package/extensions/services/proxy/agentcp/LICENCE +178 -0
- package/extensions/services/proxy/agentcp/README copy.md +85 -0
- package/extensions/services/proxy/agentcp/README.md +260 -0
- package/extensions/services/proxy/agentcp/__init__.py +16 -0
- package/extensions/services/proxy/agentcp/agent.py +4 -0
- package/extensions/services/proxy/agentcp/agentcp.py +2494 -0
- package/extensions/services/proxy/agentcp/agentprofile.json +89 -0
- package/extensions/services/proxy/agentcp/ap/__init__.py +16 -0
- package/extensions/services/proxy/agentcp/ap/ap_client.py +316 -0
- package/extensions/services/proxy/agentcp/assets/images/wechat_qr.png +0 -0
- package/extensions/services/proxy/agentcp/backup/metrics.json +31 -0
- package/extensions/services/proxy/agentcp/base/__init__.py +20 -0
- package/extensions/services/proxy/agentcp/base/auth_client.py +257 -0
- package/extensions/services/proxy/agentcp/base/client.py +112 -0
- package/extensions/services/proxy/agentcp/base/env.py +34 -0
- package/extensions/services/proxy/agentcp/base/html_util.py +336 -0
- package/extensions/services/proxy/agentcp/base/log.py +98 -0
- package/extensions/services/proxy/agentcp/ca/__init__.py +17 -0
- package/extensions/services/proxy/agentcp/ca/ca_client.py +414 -0
- package/extensions/services/proxy/agentcp/ca/ca_root.py +74 -0
- package/extensions/services/proxy/agentcp/context/__init__.py +20 -0
- package/extensions/services/proxy/agentcp/context/context.py +73 -0
- package/extensions/services/proxy/agentcp/context/exceptions.py +114 -0
- package/extensions/services/proxy/agentcp/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/create_profile_weather.py +125 -0
- package/extensions/services/proxy/agentcp/db/__init__.py +15 -0
- package/extensions/services/proxy/agentcp/db/db_mananger.py +550 -0
- package/extensions/services/proxy/agentcp/docs/UDP_HEARTBEAT_FIX_REPORT.md +265 -0
- package/extensions/services/proxy/agentcp/docs/heartbeat_issue_analysis.md +291 -0
- package/extensions/services/proxy/agentcp/file/__init__.py +16 -0
- package/extensions/services/proxy/agentcp/file/file_client.py +141 -0
- package/extensions/services/proxy/agentcp/file/wss_binary_message.py +137 -0
- package/extensions/services/proxy/agentcp/hcp.py +299 -0
- package/extensions/services/proxy/agentcp/heartbeat/__init__.py +16 -0
- package/extensions/services/proxy/agentcp/heartbeat/heartbeat_client.py +360 -0
- package/extensions/services/proxy/agentcp/improved_scheduler.py +498 -0
- package/extensions/services/proxy/agentcp/llm_agent_utils.py +249 -0
- package/extensions/services/proxy/agentcp/llm_server.py +172 -0
- package/extensions/services/proxy/agentcp/mermaid.py +210 -0
- package/extensions/services/proxy/agentcp/message.py +149 -0
- package/extensions/services/proxy/agentcp/metrics.py +256 -0
- package/extensions/services/proxy/agentcp/monitoring/__init__.py +20 -0
- package/extensions/services/proxy/agentcp/monitoring/global_monitor.py +27 -0
- package/extensions/services/proxy/agentcp/monitoring/metrics_store.py +325 -0
- package/extensions/services/proxy/agentcp/monitoring/monitoring_service.py +269 -0
- package/extensions/services/proxy/agentcp/monitoring/sliding_window.py +222 -0
- package/extensions/services/proxy/agentcp/monitoring/standalone_reader.py +224 -0
- package/extensions/services/proxy/agentcp/msg/__init__.py +21 -0
- package/extensions/services/proxy/agentcp/msg/connection_manager.py +456 -0
- package/extensions/services/proxy/agentcp/msg/message_client.py +2058 -0
- package/extensions/services/proxy/agentcp/msg/message_serialize.py +263 -0
- package/extensions/services/proxy/agentcp/msg/open_ai_message.py +88 -0
- package/extensions/services/proxy/agentcp/msg/session_manager.py +1062 -0
- package/extensions/services/proxy/agentcp/msg/stream_client.py +267 -0
- package/extensions/services/proxy/agentcp/msg/websocket_file_receiver.py +89 -0
- package/extensions/services/proxy/agentcp/msg/ws_logger.py +685 -0
- package/extensions/services/proxy/agentcp/msg/wss_binary_message.py +137 -0
- package/extensions/services/proxy/agentcp/requirements.txt +7 -0
- package/extensions/services/proxy/agentcp/samples/agent_graph/README.md +37 -0
- package/extensions/services/proxy/agentcp/samples/agent_graph/agentprofile.json +89 -0
- package/extensions/services/proxy/agentcp/samples/agent_graph/create_profile.py +138 -0
- package/extensions/services/proxy/agentcp/samples/agent_graph/main.py +164 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/create_profile.py +123 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/llm/create_profile.py +129 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/llm/env.json +5 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/llm/main.py +146 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/main.py +123 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/readme.md +379 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/search/create_profile.py +129 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/search/main.py +28 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/tool/create_profile.py +129 -0
- package/extensions/services/proxy/agentcp/samples/agent_use/tool/main.py +20 -0
- package/extensions/services/proxy/agentcp/samples/ali_amap/README.md +97 -0
- package/extensions/services/proxy/agentcp/samples/ali_amap/amap_agent.py +88 -0
- package/extensions/services/proxy/agentcp/samples/ali_amap/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/compute_agent/agent/powershell.py +228 -0
- package/extensions/services/proxy/agentcp/samples/compute_agent/agent/software.py +63 -0
- package/extensions/services/proxy/agentcp/samples/compute_agent/agent/tools.py +36 -0
- package/extensions/services/proxy/agentcp/samples/compute_agent/browser_user.py +41 -0
- package/extensions/services/proxy/agentcp/samples/deepseek/README.md +79 -0
- package/extensions/services/proxy/agentcp/samples/deepseek/create_profile.py +126 -0
- package/extensions/services/proxy/agentcp/samples/deepseek/deepseek.py +42 -0
- package/extensions/services/proxy/agentcp/samples/dify_chat/README.md +78 -0
- package/extensions/services/proxy/agentcp/samples/dify_chat/create_profile.py +126 -0
- package/extensions/services/proxy/agentcp/samples/dify_chat/dify_chat.py +47 -0
- package/extensions/services/proxy/agentcp/samples/dify_workflow/README.md +78 -0
- package/extensions/services/proxy/agentcp/samples/dify_workflow/create_profile.py +126 -0
- package/extensions/services/proxy/agentcp/samples/dify_workflow/dify_workflow.py +46 -0
- package/extensions/services/proxy/agentcp/samples/executor/README.md +44 -0
- package/extensions/services/proxy/agentcp/samples/executor/agentprofile.json +89 -0
- package/extensions/services/proxy/agentcp/samples/executor/create_profile.py +139 -0
- package/extensions/services/proxy/agentcp/samples/executor/main.py +160 -0
- package/extensions/services/proxy/agentcp/samples/filereader/README.md +45 -0
- package/extensions/services/proxy/agentcp/samples/filereader/agentprofile.json +90 -0
- package/extensions/services/proxy/agentcp/samples/filereader/create_profile.py +137 -0
- package/extensions/services/proxy/agentcp/samples/filereader/main.py +253 -0
- package/extensions/services/proxy/agentcp/samples/filewriter/README.md +38 -0
- package/extensions/services/proxy/agentcp/samples/filewriter/agentprofile.json +91 -0
- package/extensions/services/proxy/agentcp/samples/filewriter/create_profile.py +138 -0
- package/extensions/services/proxy/agentcp/samples/filewriter/main.py +289 -0
- package/extensions/services/proxy/agentcp/samples/hcp/README.md +85 -0
- package/extensions/services/proxy/agentcp/samples/hcp/acp_weather_agent.zip +0 -0
- package/extensions/services/proxy/agentcp/samples/hcp/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/hcp/hcp.py +237 -0
- package/extensions/services/proxy/agentcp/samples/helloworld/README.md +68 -0
- package/extensions/services/proxy/agentcp/samples/helloworld/hello_world.py +40 -0
- package/extensions/services/proxy/agentcp/samples/llm_agent/MEADME.md +117 -0
- package/extensions/services/proxy/agentcp/samples/llm_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/llm_agent/qwen_agent.py +136 -0
- package/extensions/services/proxy/agentcp/samples/local_llm_agent/README.md +90 -0
- package/extensions/services/proxy/agentcp/samples/local_llm_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/local_llm_agent/main.py +49 -0
- package/extensions/services/proxy/agentcp/samples/query_llm_from_agent/README.md +55 -0
- package/extensions/services/proxy/agentcp/samples/query_llm_from_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/query_llm_from_agent/main.py +23 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_api_agent/README.md +103 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_api_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_api_agent/main.py +69 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_from_agent/README.md +58 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_from_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/query_weather_from_agent/main.py +25 -0
- package/extensions/services/proxy/agentcp/samples/qwen3/README.md +71 -0
- package/extensions/services/proxy/agentcp/samples/qwen3/create_profile.py +126 -0
- package/extensions/services/proxy/agentcp/samples/qwen3/qwen3.py +37 -0
- package/extensions/services/proxy/agentcp/samples/qwen3_tools/README.md +133 -0
- package/extensions/services/proxy/agentcp/samples/qwen3_tools/create_profile.py +126 -0
- package/extensions/services/proxy/agentcp/samples/qwen3_tools/qwen3_tools.py +98 -0
- package/extensions/services/proxy/agentcp/samples/search/create_profile_qwen.py +125 -0
- package/extensions/services/proxy/agentcp/samples/search/create_profile_search.py +125 -0
- package/extensions/services/proxy/agentcp/samples/search/qwen_agent.py +136 -0
- package/extensions/services/proxy/agentcp/samples/search/search_agent.py +170 -0
- package/extensions/services/proxy/agentcp/samples/wrapper_agently_to_agent/README.md +89 -0
- package/extensions/services/proxy/agentcp/samples/wrapper_agently_to_agent/create_profile.py +125 -0
- package/extensions/services/proxy/agentcp/samples/wrapper_agently_to_agent/main.py +44 -0
- package/extensions/services/proxy/agentcp/utils/__init__.py +15 -0
- package/extensions/services/proxy/agentcp/utils/file_util.py +117 -0
- package/extensions/services/proxy/agentcp/utils/proxy_bypass.py +99 -0
- package/extensions/services/proxy/agentcp/workflow.py +203 -0
- package/extensions/services/proxy/console_auth.py +109 -0
- package/extensions/services/proxy/evol/__init__.py +1 -0
- package/extensions/services/proxy/evol/config.py +37 -0
- package/extensions/services/proxy/evol/http/__init__.py +1 -0
- package/extensions/services/proxy/evol/http/async_http.py +551 -0
- package/extensions/services/proxy/evol/log.py +28 -0
- package/extensions/services/proxy/evol/presenter/__init__.py +2 -0
- package/extensions/services/proxy/evol/presenter/agentIdPresenter.py +1031 -0
- package/extensions/services/proxy/evol/presenter/apikeyPresenter.py +106 -0
- package/extensions/services/proxy/evol/presenter/configPresenter.py +1281 -0
- package/extensions/services/proxy/evol/presenter/userPresenter.py +477 -0
- package/extensions/services/proxy/evol/server/__init__.py +1 -0
- package/extensions/services/proxy/evol/server/claude_proxy_async.py +3430 -0
- package/extensions/services/proxy/evol/server/openclaw_proxy.py +1861 -0
- package/extensions/services/proxy/evol/server/proxy_config.py +15 -0
- package/extensions/services/proxy/evol/server/proxy_engine.py +501 -0
- package/extensions/services/proxy/evol/version.py +24 -0
- package/extensions/services/proxy/logs/websocket.log +260 -0
- package/extensions/services/proxy/main.py +240 -0
- package/extensions/services/proxy/requirements.txt +13 -0
- package/extensions/services/proxy/server.py +271 -0
- package/extensions/services/watchdog/entry.py +215 -26
- package/extensions/services/watchdog/module.md +1 -0
- package/extensions/services/watchdog/monitor.py +178 -38
- package/extensions/services/web/WEBSOCKET_STATUS.md +143 -0
- package/extensions/services/web/config_example.py +35 -0
- package/extensions/services/web/config_loader.py +110 -0
- package/extensions/services/web/entry.py +114 -26
- package/extensions/services/web/module.md +35 -24
- package/extensions/services/web/pairing.py +250 -0
- package/extensions/services/web/pairing_codes.jsonl +16 -0
- package/extensions/services/web/relay.py +643 -0
- package/extensions/services/web/relay_config.json5 +67 -0
- package/extensions/services/web/routes/routes_management_ws.py +127 -0
- package/extensions/services/web/routes/routes_rpc.py +89 -0
- package/extensions/services/web/routes/routes_test.py +61 -0
- package/extensions/services/web/routes/schemas.py +0 -22
- package/extensions/services/web/server.py +434 -99
- package/extensions/services/web/static/css/style.css +67 -28
- package/extensions/services/web/static/index.html +234 -44
- package/extensions/services/web/static/js/app.js +1335 -48
- package/extensions/services/web/static/js/kernel-client-example.js +161 -0
- package/extensions/services/web/static/js/kernel-client.js +383 -0
- package/extensions/services/web/static/js/registry-tests.js +558 -0
- package/extensions/services/web/static/js/token-manager.js +175 -0
- package/extensions/services/web/static/pairing.html +248 -0
- package/extensions/services/web/static/test_registry.html +262 -0
- package/extensions/services/web/web_config.json5 +29 -0
- package/kernel/entry.py +120 -32
- package/kernel/event_hub.py +141 -16
- package/kernel/module.md +60 -33
- package/kernel/registry_store.py +45 -36
- package/kernel/rpc_router.py +152 -59
- package/kernel/server.py +322 -26
- package/kite_cli/__init__.py +3 -0
- package/kite_cli/__main__.py +5 -0
- package/kite_cli/commands/__init__.py +1 -0
- package/kite_cli/commands/clean.py +101 -0
- package/kite_cli/commands/deps_install.py +67 -0
- package/kite_cli/commands/doctor.py +35 -0
- package/kite_cli/commands/env_check.py +45 -0
- package/kite_cli/commands/history.py +111 -0
- package/kite_cli/commands/info.py +96 -0
- package/kite_cli/commands/install.py +313 -0
- package/kite_cli/commands/list.py +143 -0
- package/kite_cli/commands/log.py +81 -0
- package/kite_cli/commands/prepare.py +49 -0
- package/kite_cli/commands/rollback.py +88 -0
- package/kite_cli/commands/search.py +73 -0
- package/kite_cli/commands/uninstall.py +85 -0
- package/kite_cli/commands/update.py +118 -0
- package/kite_cli/commands/venv_setup.py +56 -0
- package/kite_cli/core/__init__.py +1 -0
- package/kite_cli/core/checker.py +142 -0
- package/kite_cli/core/dependency.py +229 -0
- package/kite_cli/core/downloader.py +209 -0
- package/kite_cli/core/install_info.py +40 -0
- package/kite_cli/core/tool_installer.py +397 -0
- package/kite_cli/core/validator.py +78 -0
- package/kite_cli/main.py +317 -0
- package/kite_cli/utils/__init__.py +1 -0
- package/kite_cli/utils/i18n.py +252 -0
- package/kite_cli/utils/interactive.py +63 -0
- package/kite_cli/utils/operation_log.py +77 -0
- package/kite_cli/utils/paths.py +34 -0
- package/kite_cli/utils/version.py +308 -0
- package/launcher/entry.py +1124 -178
- package/launcher/logging_setup.py +104 -0
- package/launcher/module.md +46 -37
- package/launcher/module_scanner.py +11 -1
- package/main.py +4 -1
- package/package.json +9 -1
- package/python_version.json +4 -0
- package/requirements.txt +38 -0
- package/scripts/env-manager.js +328 -0
- package/scripts/plan_manager.py +315 -0
- package/scripts/python-env.js +79 -0
- package/scripts/scan_dependencies.py +461 -0
- package/scripts/setup-python-env.js +191 -0
- package/extensions/services/web/routes/routes_modules.py +0 -249
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Temporary script to replace print() with logger calls in openclaw_proxy.py and claude_proxy_async.py.
|
|
3
|
+
Delete this file after running.
|
|
4
|
+
"""
|
|
5
|
+
import re
|
|
6
|
+
import sys
|
|
7
|
+
|
|
8
|
+
def classify_message(msg_text):
|
|
9
|
+
"""Classify a print message into logger level based on content."""
|
|
10
|
+
error_keywords = ['❌', '失败', '异常', 'error', 'Error', '严重错误', '错误']
|
|
11
|
+
warning_keywords = ['⚠️', '警告']
|
|
12
|
+
info_keywords = ['成功', '已初始化', '已启动', '已停止', '已注册', '已禁用', '已清理',
|
|
13
|
+
'刷新完成', '加载成功', '上线', '完成']
|
|
14
|
+
|
|
15
|
+
for kw in error_keywords:
|
|
16
|
+
if kw in msg_text:
|
|
17
|
+
return 'error'
|
|
18
|
+
for kw in warning_keywords:
|
|
19
|
+
if kw in msg_text:
|
|
20
|
+
return 'warning'
|
|
21
|
+
for kw in info_keywords:
|
|
22
|
+
if kw in msg_text:
|
|
23
|
+
return 'info'
|
|
24
|
+
return 'debug'
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def remove_emojis(text):
|
|
28
|
+
"""Remove common emoji characters from text."""
|
|
29
|
+
emojis = ['🧹', '🚀', '🛑', '✅', '❌', '⚠️', '✓', '🔧']
|
|
30
|
+
for e in emojis:
|
|
31
|
+
text = text.replace(e, '')
|
|
32
|
+
# Clean up extra spaces left by emoji removal
|
|
33
|
+
text = re.sub(r' +', ' ', text)
|
|
34
|
+
return text
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def process_file(filepath):
|
|
38
|
+
with open(filepath, 'r', encoding='utf-8') as f:
|
|
39
|
+
content = f.read()
|
|
40
|
+
|
|
41
|
+
lines = content.split('\n')
|
|
42
|
+
new_lines = []
|
|
43
|
+
i = 0
|
|
44
|
+
replacements = 0
|
|
45
|
+
|
|
46
|
+
while i < len(lines):
|
|
47
|
+
line = lines[i]
|
|
48
|
+
stripped = line.lstrip()
|
|
49
|
+
indent = line[:len(line) - len(stripped)]
|
|
50
|
+
|
|
51
|
+
# Handle traceback.print_exc()
|
|
52
|
+
if 'traceback.print_exc()' in stripped and stripped.strip() == 'traceback.print_exc()':
|
|
53
|
+
new_lines.append(f'{indent}logger.debug(traceback.format_exc())')
|
|
54
|
+
replacements += 1
|
|
55
|
+
i += 1
|
|
56
|
+
continue
|
|
57
|
+
|
|
58
|
+
# Skip non-print lines
|
|
59
|
+
if not stripped.startswith('print(') and not stripped.startswith('print ('):
|
|
60
|
+
new_lines.append(line)
|
|
61
|
+
i += 1
|
|
62
|
+
continue
|
|
63
|
+
|
|
64
|
+
# Gather the full print statement (may span multiple lines)
|
|
65
|
+
full_print = line
|
|
66
|
+
# Count open/close parens to handle multi-line prints
|
|
67
|
+
open_count = full_print.count('(') - full_print.count(')')
|
|
68
|
+
while open_count > 0 and i + 1 < len(lines):
|
|
69
|
+
i += 1
|
|
70
|
+
full_print += '\n' + lines[i]
|
|
71
|
+
open_count = full_print.count('(') - full_print.count(')')
|
|
72
|
+
|
|
73
|
+
# Extract the content inside print(...)
|
|
74
|
+
# Find the print( and matching )
|
|
75
|
+
full_stripped = full_print.lstrip()
|
|
76
|
+
|
|
77
|
+
# Match print(...) - extract inner content
|
|
78
|
+
# Simple approach: replace 'print(' with 'logger.X(' and keep everything else
|
|
79
|
+
|
|
80
|
+
# Determine the level based on content
|
|
81
|
+
level = classify_message(full_stripped)
|
|
82
|
+
|
|
83
|
+
# Clean emojis from the content
|
|
84
|
+
cleaned = remove_emojis(full_print)
|
|
85
|
+
cleaned_stripped = cleaned.lstrip()
|
|
86
|
+
|
|
87
|
+
# Handle special case: print("\n" + "=" * 80) and print("=" * 80 + "\n")
|
|
88
|
+
# These are separator lines - skip them entirely
|
|
89
|
+
if re.match(r'print\(\s*"\\n"\s*\+\s*"="\s*\*\s*\d+\s*\)', cleaned_stripped):
|
|
90
|
+
replacements += 1
|
|
91
|
+
i += 1
|
|
92
|
+
continue
|
|
93
|
+
if re.match(r'print\(\s*"="\s*\*\s*\d+\s*\+\s*"\\n"\s*\)', cleaned_stripped):
|
|
94
|
+
replacements += 1
|
|
95
|
+
i += 1
|
|
96
|
+
continue
|
|
97
|
+
if re.match(r'print\(\s*"="\s*\*\s*\d+\s*\)', cleaned_stripped):
|
|
98
|
+
replacements += 1
|
|
99
|
+
i += 1
|
|
100
|
+
continue
|
|
101
|
+
|
|
102
|
+
# Replace print( with logger.level(
|
|
103
|
+
# Handle the indentation properly for multi-line
|
|
104
|
+
cleaned_lines = cleaned.split('\n')
|
|
105
|
+
first_line = cleaned_lines[0]
|
|
106
|
+
first_stripped = first_line.lstrip()
|
|
107
|
+
first_indent = first_line[:len(first_line) - len(first_stripped)]
|
|
108
|
+
|
|
109
|
+
# Replace print( with logger.level(
|
|
110
|
+
new_first = re.sub(r'^print\s*\(', f'logger.{level}(', first_stripped)
|
|
111
|
+
cleaned_lines[0] = first_indent + new_first
|
|
112
|
+
|
|
113
|
+
for cl in cleaned_lines:
|
|
114
|
+
new_lines.append(cl)
|
|
115
|
+
|
|
116
|
+
replacements += 1
|
|
117
|
+
i += 1
|
|
118
|
+
continue
|
|
119
|
+
|
|
120
|
+
result = '\n'.join(new_lines)
|
|
121
|
+
|
|
122
|
+
with open(filepath, 'w', encoding='utf-8') as f:
|
|
123
|
+
f.write(result)
|
|
124
|
+
|
|
125
|
+
return replacements
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
# Process both files
|
|
129
|
+
r1 = process_file('evol/server/openclaw_proxy.py')
|
|
130
|
+
print(f"openclaw_proxy.py: {r1} replacements made")
|
|
131
|
+
|
|
132
|
+
r2 = process_file('evol/server/claude_proxy_async.py')
|
|
133
|
+
print(f"claude_proxy_async.py: {r2} replacements made")
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Fix indentation issues caused by the previous script's emoji removal.
|
|
3
|
+
The problem: removing multi-byte emoji chars from lines messes up indentation
|
|
4
|
+
when the emoji is at the start of a string, not in the indentation itself.
|
|
5
|
+
|
|
6
|
+
Actually, the real issue is simpler: the 'remove_emojis' function was applied to
|
|
7
|
+
the ENTIRE line including indentation whitespace, and the `re.sub(r' +', ' ', text)`
|
|
8
|
+
collapsed double spaces in the indentation.
|
|
9
|
+
|
|
10
|
+
This script fixes the indentation by re-reading the current (broken) files and
|
|
11
|
+
fixing any lines where logger.X( has wrong indentation.
|
|
12
|
+
"""
|
|
13
|
+
import re
|
|
14
|
+
|
|
15
|
+
def fix_indentation(filepath):
|
|
16
|
+
"""
|
|
17
|
+
The previous script broke indentation because:
|
|
18
|
+
1. Emojis in Chinese text like '✅' '❌' were removed
|
|
19
|
+
2. The cleanup regex `re.sub(r' +', ' ', text)` collapsed ALL multi-spaces,
|
|
20
|
+
including indentation whitespace
|
|
21
|
+
|
|
22
|
+
Strategy: We can't easily reverse this. Instead, let's look at each logger.X()
|
|
23
|
+
line and infer the correct indentation from its surrounding context.
|
|
24
|
+
"""
|
|
25
|
+
with open(filepath, 'r', encoding='utf-8') as f:
|
|
26
|
+
lines = f.readlines()
|
|
27
|
+
|
|
28
|
+
fixed = 0
|
|
29
|
+
new_lines = []
|
|
30
|
+
|
|
31
|
+
for i, line in enumerate(lines):
|
|
32
|
+
stripped = line.lstrip()
|
|
33
|
+
current_indent = len(line) - len(line.lstrip())
|
|
34
|
+
|
|
35
|
+
# Check if this is a logger line with potentially wrong indentation
|
|
36
|
+
if stripped.startswith('logger.'):
|
|
37
|
+
# Look at the previous non-empty line to determine expected indentation
|
|
38
|
+
expected_indent = None
|
|
39
|
+
for j in range(i - 1, max(0, i - 5), -1):
|
|
40
|
+
prev = lines[j]
|
|
41
|
+
prev_stripped = prev.lstrip()
|
|
42
|
+
if not prev_stripped or prev_stripped.startswith('#'):
|
|
43
|
+
continue
|
|
44
|
+
prev_indent = len(prev) - len(prev.lstrip())
|
|
45
|
+
|
|
46
|
+
# If previous line ends with ':', this line should be indented more
|
|
47
|
+
if prev_stripped.rstrip().endswith(':'):
|
|
48
|
+
expected_indent = prev_indent + 4
|
|
49
|
+
# If previous line is at same block level
|
|
50
|
+
elif prev_stripped.startswith(('logger.', 'log_info', 'log_error',
|
|
51
|
+
'return', 'if ', 'elif ', 'else:', 'try:', 'except', 'finally:',
|
|
52
|
+
'for ', 'while ', 'async ', 'await ', 'with ', 'raise',
|
|
53
|
+
'self.', 'del ', 'pass', 'break', 'continue',
|
|
54
|
+
'result', 'response', 'session', 'error', 'cleanup',
|
|
55
|
+
'old_', 'new_', 'first_', 'aid_', 'evol_', 'agentcp_',
|
|
56
|
+
'remaining', 'time_since', 'current_', 'message', 'proxy_',
|
|
57
|
+
'trace_id', 'model', 'request', 'body', 'api_', 'user_',
|
|
58
|
+
'is_', 'async_session', 'openclaw', 'shared_', '_register',
|
|
59
|
+
'full_rebuild', 'rebuild_thread', 'login_result',
|
|
60
|
+
'fetch_result', 'balance', 'credits', 'users_count',
|
|
61
|
+
'inner_data', 'data', 'api_key', 'cached_key', 'success',
|
|
62
|
+
'stale_trace', 'age_', 'content', 'stream_url', 'openai_',
|
|
63
|
+
'response_body', 'http_status', 'error_message',
|
|
64
|
+
'global ', 'import ', '_rebuild', '_last_full', '_agentcp')):
|
|
65
|
+
expected_indent = prev_indent
|
|
66
|
+
else:
|
|
67
|
+
expected_indent = prev_indent
|
|
68
|
+
break
|
|
69
|
+
|
|
70
|
+
if expected_indent is not None and current_indent != expected_indent:
|
|
71
|
+
# Fix the indentation
|
|
72
|
+
line = ' ' * expected_indent + stripped
|
|
73
|
+
fixed += 1
|
|
74
|
+
|
|
75
|
+
new_lines.append(line)
|
|
76
|
+
|
|
77
|
+
with open(filepath, 'w', encoding='utf-8') as f:
|
|
78
|
+
f.writelines(new_lines)
|
|
79
|
+
|
|
80
|
+
return fixed
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
f1 = fix_indentation('evol/server/openclaw_proxy.py')
|
|
84
|
+
print(f"openclaw_proxy.py: {f1} lines fixed")
|
|
85
|
+
|
|
86
|
+
f2 = fix_indentation('evol/server/claude_proxy_async.py')
|
|
87
|
+
print(f"claude_proxy_async.py: {f2} lines fixed")
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
```markdown:d:/github_agentcp/samples/hcp/README.md
|
|
2
|
+
# 智能天气助手(HCP)
|
|
3
|
+
|
|
4
|
+
基于 agentcp 框架开发的智能天气助手,支持自然语言交互和上下文记忆,能够将用户作为外部工具回调获取必要信息。
|
|
5
|
+
|
|
6
|
+
## 🚀 使用指南
|
|
7
|
+
|
|
8
|
+
1. **创建agent身份(aid)**
|
|
9
|
+
- 参考文档:创建身份&读写公私有数据
|
|
10
|
+
|
|
11
|
+
2. **配置Agent参数**
|
|
12
|
+
```python:hcp.py
|
|
13
|
+
# 修改hcp.py中的agent_id配置项
|
|
14
|
+
agent_id = "your_agent_id" # 替换为实际创建的aid
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
3. **配置环境变量**
|
|
18
|
+
```bash:.env
|
|
19
|
+
OPENAI_API_KEY=your_api_key
|
|
20
|
+
BASE_URL=https://api.openai.com/v1
|
|
21
|
+
MODEL=gpt-3.5-turbo
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
4. **安装依赖**
|
|
25
|
+
```bash
|
|
26
|
+
pip install openai agentcp python-dotenv
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
5. **启动服务**
|
|
30
|
+
```bash
|
|
31
|
+
python hcp.py
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## ✨ 核心功能
|
|
35
|
+
|
|
36
|
+
- 🌦️ 多维度天气查询(当前天气/历史天气/天气预报)
|
|
37
|
+
- 🗣️ 上下文感知的对话管理
|
|
38
|
+
- 🔧 外部工具回调机制(用于获取缺失的位置/时间信息)
|
|
39
|
+
- ⏰ 自动时间推理(支持绝对时间、相对时间和年号纪年)
|
|
40
|
+
|
|
41
|
+
## 🧩 核心类说明:MCPClient
|
|
42
|
+
|
|
43
|
+
### 初始化方法
|
|
44
|
+
```python
|
|
45
|
+
def __init__(self):
|
|
46
|
+
# 初始化 OpenAI 客户端
|
|
47
|
+
self.client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
|
|
48
|
+
# 创建 AgentCP 实例
|
|
49
|
+
self.acp = agentcp.AgentCP(app_path)
|
|
50
|
+
# 消息存储器(按 session_id 隔离)
|
|
51
|
+
self.message_store = dict()
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### 消息管理机制
|
|
55
|
+
```python
|
|
56
|
+
def record_message(self, session_id: str, role: str, content: str):
|
|
57
|
+
# 记录对话历史(支持 user/assistant/system 三种角色)
|
|
58
|
+
|
|
59
|
+
def get_messages_for_llm(self, session_id: str, max_messages=20, system_message=None):
|
|
60
|
+
# 构造符合 OpenAI 格式的对话历史(自动维护最近20条消息)
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## 🔄 交互流程
|
|
64
|
+
|
|
65
|
+
```mermaid
|
|
66
|
+
graph TD
|
|
67
|
+
A[用户提问] --> B{是否天气相关?}
|
|
68
|
+
B -->|是| C[检查位置/时间信息]
|
|
69
|
+
B -->|否| D[简短回答并引导]
|
|
70
|
+
C --> E{信息完整?}
|
|
71
|
+
E -->|是| F[生成天气报告]
|
|
72
|
+
E -->|否| G[调用用户工具获取信息]
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## 💬 示例对话
|
|
76
|
+
|
|
77
|
+
> **用户**:明天天气怎么样
|
|
78
|
+
> **Agent**:你想查询哪里的天气呢
|
|
79
|
+
> **用户**:上海
|
|
80
|
+
> **Agent**:上海的天气晴
|
|
81
|
+
> **用户**:上海
|
|
82
|
+
> **Agent**:你是想查询上海什么时候的天气呢
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
|