strix-agent 0.1.2__py3-none-any.whl → 0.1.4__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.
- strix/cli/app.py +1 -1
- strix/llm/__init__.py +0 -2
- strix/runtime/docker_runtime.py +1 -1
- {strix_agent-0.1.2.dist-info → strix_agent-0.1.4.dist-info}/METADATA +5 -9
- {strix_agent-0.1.2.dist-info → strix_agent-0.1.4.dist-info}/RECORD +8 -8
- {strix_agent-0.1.2.dist-info → strix_agent-0.1.4.dist-info}/LICENSE +0 -0
- {strix_agent-0.1.2.dist-info → strix_agent-0.1.4.dist-info}/WHEEL +0 -0
- {strix_agent-0.1.2.dist-info → strix_agent-0.1.4.dist-info}/entry_points.txt +0 -0
strix/cli/app.py
CHANGED
@@ -66,7 +66,7 @@ class SplashScreen(Static): # type: ignore[misc]
|
|
66
66
|
|
67
67
|
[/bright_green]
|
68
68
|
|
69
|
-
[bright_green]Starting Strix Cybersecurity Agent...[/bright_green]
|
69
|
+
[bright_green]Starting Strix Cybersecurity Agent...[/bright_green]
|
70
70
|
"""
|
71
71
|
yield Static(ascii_art, id="splash_content")
|
72
72
|
|
strix/llm/__init__.py
CHANGED
strix/runtime/docker_runtime.py
CHANGED
@@ -15,7 +15,7 @@ from .runtime import AbstractRuntime, SandboxInfo
|
|
15
15
|
|
16
16
|
STRIX_AGENT_LABEL = "StrixAgent_ID"
|
17
17
|
STRIX_SCAN_LABEL = "StrixScan_ID"
|
18
|
-
STRIX_IMAGE = os.getenv("STRIX_IMAGE", "ghcr.io/usestrix/strix-sandbox:0.1.
|
18
|
+
STRIX_IMAGE = os.getenv("STRIX_IMAGE", "ghcr.io/usestrix/strix-sandbox:0.1.4")
|
19
19
|
logger = logging.getLogger(__name__)
|
20
20
|
|
21
21
|
_initialized_volumes: set[str] = set()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: strix-agent
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Open-source AI Hackers for your apps
|
5
5
|
License: Apache-2.0
|
6
6
|
Keywords: cybersecurity,security,vulnerability,scanner,pentest,agent,ai,cli
|
@@ -18,25 +18,21 @@ Classifier: Programming Language :: Python :: 3.12
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
20
20
|
Classifier: Topic :: Security
|
21
|
-
Requires-Dist: boto3 (>=1.37.2,<1.38.0)
|
22
|
-
Requires-Dist: daytona (>=0.21.5,<0.22.0)
|
23
21
|
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
24
|
-
Requires-Dist: fastapi
|
22
|
+
Requires-Dist: fastapi
|
25
23
|
Requires-Dist: gql[requests] (>=3.5.3,<4.0.0)
|
26
24
|
Requires-Dist: ipython (>=9.3.0,<10.0.0)
|
27
|
-
Requires-Dist: litellm (>=1.72.1,<2.0.0)
|
25
|
+
Requires-Dist: litellm[proxy] (>=1.72.1,<2.0.0)
|
28
26
|
Requires-Dist: numpydoc (>=1.8.0,<2.0.0)
|
29
27
|
Requires-Dist: openhands-aci (>=0.3.0,<0.4.0)
|
30
28
|
Requires-Dist: playwright (>=1.48.0,<2.0.0)
|
31
29
|
Requires-Dist: pydantic[email] (>=2.11.3,<3.0.0)
|
32
30
|
Requires-Dist: pyte (>=0.8.1,<0.9.0)
|
33
31
|
Requires-Dist: requests (>=2.32.0,<3.0.0)
|
34
|
-
Requires-Dist: rich
|
35
|
-
Requires-Dist: starlette (>=0.47.2,<0.48.0)
|
32
|
+
Requires-Dist: rich
|
36
33
|
Requires-Dist: tenacity (>=9.0.0,<10.0.0)
|
37
34
|
Requires-Dist: textual (>=4.0.0,<5.0.0)
|
38
|
-
Requires-Dist: uvicorn
|
39
|
-
Requires-Dist: websockets (>=15.0.1,<16.0.0)
|
35
|
+
Requires-Dist: uvicorn
|
40
36
|
Requires-Dist: xmltodict (>=0.13.0,<0.14.0)
|
41
37
|
Description-Content-Type: text/markdown
|
42
38
|
|
@@ -6,7 +6,7 @@ strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
|
|
6
6
|
strix/agents/base_agent.py,sha256=SnpVGft0SFKcUBYzsKyC0WCxYBS9232msw6yQJhK2tk,14329
|
7
7
|
strix/agents/state.py,sha256=ORN2VyLOcQrppiuGcelD0C-1-uhxc6TS4AEqdbK7LZg,4858
|
8
8
|
strix/cli/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
|
9
|
-
strix/cli/app.py,sha256=
|
9
|
+
strix/cli/app.py,sha256=vu642k3Jl3AOMkYXg0WIf0uwZGeKfhl6SXtETm0Ot9E,39116
|
10
10
|
strix/cli/assets/cli.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
|
11
11
|
strix/cli/main.py,sha256=58Lj6qSJY-dXHQ0DGwQq2c5iie29OlE0Hxss4Qf5jzM,18050
|
12
12
|
strix/cli/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
|
@@ -26,7 +26,7 @@ strix/cli/tool_components/thinking_renderer.py,sha256=s8Y1V8lvDYv9sottCZPOWQmKLy
|
|
26
26
|
strix/cli/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZuaDu8cZ2MeOuUDF3LGy-4I,1432
|
27
27
|
strix/cli/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
|
28
28
|
strix/cli/tracer.py,sha256=HwSLb5dB6OpudpELxZq1AXaRSdBVdW1XipWamcNA0Ms,11127
|
29
|
-
strix/llm/__init__.py,sha256=
|
29
|
+
strix/llm/__init__.py,sha256=tzsJlDGGQE_Hw917dyzBWtwXsajZsIS-qdlPuS6EmSY,139
|
30
30
|
strix/llm/config.py,sha256=z1up_3UqJZmBJwtgXA_4XgtwjDTG_-_a_1YjmLk2G14,625
|
31
31
|
strix/llm/llm.py,sha256=fJLmx0tLaUUVIqf1hdcrqHeZ2_-CUcFM8RXH1G9XqTs,11034
|
32
32
|
strix/llm/memory_compressor.py,sha256=OVTXfO_oQ8WzlY9YGucqH7OcVfX9DM3E22BzWpH-p0Y,6878
|
@@ -45,7 +45,7 @@ strix/prompts/vulnerabilities/ssrf.jinja,sha256=MfRs3MtvgAEauaOrCHpKIoRnS0YCZKyC
|
|
45
45
|
strix/prompts/vulnerabilities/xss.jinja,sha256=ozaEuV1X4QPRLYiUAfpQplzbovQU6QmtVF115-8_xrk,6139
|
46
46
|
strix/prompts/vulnerabilities/xxe.jinja,sha256=E8QUtIMQoEft7FRQzz7a2SgvrpqNecRVYvhaIWOco0w,7081
|
47
47
|
strix/runtime/__init__.py,sha256=v2oQ1JnfZXOTU8N3NOEI_MbxNp8BfNj8hTgvjCsNGvY,445
|
48
|
-
strix/runtime/docker_runtime.py,sha256
|
48
|
+
strix/runtime/docker_runtime.py,sha256=-GNUWcqiWyxaXHI5YzlD-ZsfKW6NU23aeKERbqacvpg,10279
|
49
49
|
strix/runtime/runtime.py,sha256=cHn_LnK7yLZLncVdIflz97oqNvvvhc8cWG4zsqgaF70,670
|
50
50
|
strix/runtime/tool_server.py,sha256=7Swr4dgl6gEvDGzhSXsZk9__NEtmrwqg6Gnx-Ai8I5E,3466
|
51
51
|
strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
|
@@ -92,8 +92,8 @@ strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6E
|
|
92
92
|
strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
|
93
93
|
strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
|
94
94
|
strix/tools/web_search/web_search_actions_schema.xml,sha256=Ihc3Gv4LaPI_MzBbwZOt3y4pwg9xmtl8KfPNvFihEP4,4805
|
95
|
-
strix_agent-0.1.
|
96
|
-
strix_agent-0.1.
|
97
|
-
strix_agent-0.1.
|
98
|
-
strix_agent-0.1.
|
99
|
-
strix_agent-0.1.
|
95
|
+
strix_agent-0.1.4.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
|
96
|
+
strix_agent-0.1.4.dist-info/METADATA,sha256=ZYSxSYc5KzhRoGhunqR3C394A54NP8W8PbrKGE_zTrE,7090
|
97
|
+
strix_agent-0.1.4.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
98
|
+
strix_agent-0.1.4.dist-info/entry_points.txt,sha256=sswIgnkzSVSzQ3Rd046g7mhIPQaj_7RYlXgU_bQelF0,45
|
99
|
+
strix_agent-0.1.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|