Files
live-call-asr-monitor/frontend-redesign/patch_monitoring.py
2026-07-16 11:24:02 +08:00

10 lines
274 B
Python

import re
with open('src/components/SandboxSimulation.tsx', 'r') as f:
content = f.read()
content = content.replace("实时预警流监控 (Event Monitoring)", "实时预警流监控")
with open('src/components/SandboxSimulation.tsx', 'w') as f:
f.write(content)