diff --git a/frontend/.env b/frontend/.env
index 6719e82..2727fcc 100755
--- a/frontend/.env
+++ b/frontend/.env
@@ -1,6 +1,8 @@
# 打包路径
VITE_BASE_URL = /
VITE_IS_REQUEST_PROXY = true
-VITE_API_URL = http://47.121.220.134
+VITE_API_URL = http://159.75.70.95
VITE_API_URL_PREFIX = /matagent
-VITE_WB_BASE_URL = ws://47.121.220.134:8000/matagent/chat
\ No newline at end of file
+VITE_WB_BASE_URL = ws://8.210.37.238:8000/ws/chat
+VITE_WB_CAMERA_ONE_URL = ws://159.75.70.95:8000/video_stream/camera1
+VITE_WB_CAMERA_TWO_URL = ws://159.75.70.95:8000/video_stream/camera2
\ No newline at end of file
diff --git a/frontend/.env.development b/frontend/.env.development
index b047a66..faa2c0f 100755
--- a/frontend/.env.development
+++ b/frontend/.env.development
@@ -3,4 +3,6 @@ VITE_BASE_URL = /
VITE_IS_REQUEST_PROXY = true
VITE_API_URL = http://159.75.91.126
VITE_API_URL_PREFIX = /matagent
-VITE_WB_BASE_URL = ws://47.121.220.134:8000/matagent/chat
\ No newline at end of file
+VITE_WB_BASE_URL = ws://8.210.37.238:8000/ws/chat
+VITE_WB_CAMERA_ONE_URL = ws://159.75.70.95:8000/video_stream/camera1
+VITE_WB_CAMERA_TWO_URL = ws://159.75.70.95:8000/video_stream/camera2
diff --git a/frontend/.env.prod b/frontend/.env.prod
index b047a66..d231c60 100755
--- a/frontend/.env.prod
+++ b/frontend/.env.prod
@@ -3,4 +3,6 @@ VITE_BASE_URL = /
VITE_IS_REQUEST_PROXY = true
VITE_API_URL = http://159.75.91.126
VITE_API_URL_PREFIX = /matagent
-VITE_WB_BASE_URL = ws://47.121.220.134:8000/matagent/chat
\ No newline at end of file
+VITE_WB_BASE_URL = ws://47.121.220.134:8000/matagent/chat
+VITE_WB_CAMERA_ONE_URL = ws://159.75.70.95:8000/video_stream/camera1
+VITE_WB_CAMERA_TWO_URL = ws://159.75.70.95:8000/video_stream/camera2
\ No newline at end of file
diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index 1d79ff4..62bc35e 100755
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -1,11 +1,13 @@
- {{generateTitle('角色')}}({{ item.group_name }})
- {{generateTitle('模型名称')}}({{ `${item.group_name}: ${item.agent_name}` }})
+ {{generateTitle('角色')}}({{ item.source }})
+ {{generateTitle('模型名称')}}({{ `${item.source}` }})
+
-
Jayson