Jarvis-Brain 0.1.9.10__py3-none-any.whl → 0.1.9.12__py3-none-any.whl

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.9.10
3
+ Version: 0.1.9.12
4
4
  Summary: Jarvis brain mcp
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: beautifulsoup4
@@ -3,9 +3,9 @@ mcp_tools/dp_tools.py,sha256=AtUO8XMCBkXB0aS0QZDWLTYW9oUBr2ECjSL1YbjVY5w,17009
3
3
  mcp_tools/main.py,sha256=84sv39oOw9vqr2MPxKy9pFVrevJ9nQJWFffpfg0s6iA,1098
4
4
  tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  tools/browser_manager.py,sha256=zeYcWuzxoohMdnYUoZbRH7axFC_VtV8MsncfN8y0yw0,2023
6
- tools/browser_proxy.py,sha256=p-RAjpLltXb4r8dO69H-AOFQRvTf3y7hNNjHIxlZ4UY,7651
6
+ tools/browser_proxy.py,sha256=YDBp1bDEX08ev-Bvbuv0TkWz_nkShe95GS7tfd8GBLc,7606
7
7
  tools/tools.py,sha256=zYJCvwy7OUmYWKOhHbItSfttAmJLbC-ixXv9oW-TNTA,5033
8
- jarvis_brain-0.1.9.10.dist-info/METADATA,sha256=fNuw-T7uiMGN7Fjxc29zs-ynQseNXkTuVEPVvkvWWik,242
9
- jarvis_brain-0.1.9.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
10
- jarvis_brain-0.1.9.10.dist-info/entry_points.txt,sha256=YFQT4xpkUqt5dM5wlKPQQOqcjMuFrT9iuRAzIpAyH7U,51
11
- jarvis_brain-0.1.9.10.dist-info/RECORD,,
8
+ jarvis_brain-0.1.9.12.dist-info/METADATA,sha256=_ptoDq0jgR_pL7L9vvNN42StBN6BpIqhRWMjI9tiCAE,242
9
+ jarvis_brain-0.1.9.12.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
10
+ jarvis_brain-0.1.9.12.dist-info/entry_points.txt,sha256=YFQT4xpkUqt5dM5wlKPQQOqcjMuFrT9iuRAzIpAyH7U,51
11
+ jarvis_brain-0.1.9.12.dist-info/RECORD,,
tools/browser_proxy.py CHANGED
@@ -8,7 +8,7 @@ from typing import Tuple, Optional
8
8
  import json
9
9
  from urllib.parse import urlparse, urlunparse
10
10
 
11
- one_turn_max_token = 20000
11
+ one_turn_max_token = 16000
12
12
 
13
13
 
14
14
  class DPProxyClient:
@@ -29,7 +29,7 @@ class DPProxyClient:
29
29
  :return:
30
30
  """
31
31
  if start_listen:
32
- self.driver.listen.set_targets(targets="api|jsonp|callback", is_regex=True, res_type=('xhr', 'fetch'))
32
+ self.driver.listen.set_targets(res_type=('xhr', 'fetch'))
33
33
  self.driver.listen.start()
34
34
  self.thread = threading.Thread(target=self.start_listen, args=(count, timeout,))
35
35
  self.thread.start()