Jarvis-Brain 0.1.9.10__tar.gz → 0.1.9.12__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.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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "Jarvis_Brain" # 别人下载时用的名字,必须在 PyPI 上唯一
3
- version = "0.1.9.10"
3
+ version = "0.1.9.12"
4
4
  description = "Jarvis brain mcp"
5
5
  dependencies = [
6
6
  "fastmcp",
@@ -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()
File without changes