Jarvis-Brain 0.1.8.2__tar.gz → 0.1.8.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Jarvis_Brain
3
- Version: 0.1.8.2
3
+ Version: 0.1.8.3
4
4
  Summary: Jarvis brain mcp
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: beautifulsoup4
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "Jarvis_Brain" # 别人下载时用的名字,必须在 PyPI 上唯一
3
- version = "0.1.8.2"
3
+ version = "0.1.8.3"
4
4
  description = "Jarvis brain mcp"
5
5
  dependencies = [
6
6
  "fastmcp",
@@ -60,7 +60,7 @@ class DPProxyClientManager:
60
60
  def create_client(self, tab: ChromiumTab, self_kill=False) -> Tuple[str, DPProxyClient, ChromiumTab]:
61
61
  """创建新的tab页面代理实例"""
62
62
  client = DPProxyClient(tab, self_kill=self_kill)
63
- tab = client.get_driver(True)
63
+ tab = client.get_driver(True, timeout=60 * 10)
64
64
  tab_id = tab.tab_id
65
65
  self.tab_pool[tab_id] = {"client": client, "driver": tab}
66
66
  return tab_id, client, tab
File without changes
File without changes