strix-agent 0.1.6__py3-none-any.whl → 0.1.8__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/main.py +3 -3
- strix/llm/config.py +1 -1
- strix/llm/llm.py +1 -0
- strix/llm/memory_compressor.py +1 -1
- {strix_agent-0.1.6.dist-info → strix_agent-0.1.8.dist-info}/METADATA +3 -3
- {strix_agent-0.1.6.dist-info → strix_agent-0.1.8.dist-info}/RECORD +9 -9
- {strix_agent-0.1.6.dist-info → strix_agent-0.1.8.dist-info}/LICENSE +0 -0
- {strix_agent-0.1.6.dist-info → strix_agent-0.1.8.dist-info}/WHEEL +0 -0
- {strix_agent-0.1.6.dist-info → strix_agent-0.1.8.dist-info}/entry_points.txt +0 -0
strix/cli/main.py
CHANGED
@@ -74,7 +74,7 @@ def validate_environment() -> None:
|
|
74
74
|
error_text.append("• ", style="white")
|
75
75
|
error_text.append("STRIX_LLM", style="bold cyan")
|
76
76
|
error_text.append(
|
77
|
-
" - Model name to use with litellm (e.g., '
|
77
|
+
" - Model name to use with litellm (e.g., 'anthropic/claude-opus-4-1-20250805')\n",
|
78
78
|
style="white",
|
79
79
|
)
|
80
80
|
error_text.append("• ", style="white")
|
@@ -92,7 +92,7 @@ def validate_environment() -> None:
|
|
92
92
|
|
93
93
|
error_text.append("\nExample setup:\n", style="white")
|
94
94
|
error_text.append(
|
95
|
-
"export STRIX_LLM='
|
95
|
+
"export STRIX_LLM='anthropic/claude-opus-4-1-20250805'\n", style="dim white"
|
96
96
|
)
|
97
97
|
error_text.append("export LLM_API_KEY='your-api-key-here'\n", style="dim white")
|
98
98
|
if missing_optional_vars:
|
@@ -144,7 +144,7 @@ async def warm_up_llm() -> None:
|
|
144
144
|
console = Console()
|
145
145
|
|
146
146
|
try:
|
147
|
-
model_name = os.getenv("STRIX_LLM", "
|
147
|
+
model_name = os.getenv("STRIX_LLM", "anthropic/claude-opus-4-1-20250805")
|
148
148
|
api_key = os.getenv("LLM_API_KEY")
|
149
149
|
|
150
150
|
if api_key:
|
strix/llm/config.py
CHANGED
@@ -9,7 +9,7 @@ class LLMConfig:
|
|
9
9
|
enable_prompt_caching: bool = True,
|
10
10
|
prompt_modules: list[str] | None = None,
|
11
11
|
):
|
12
|
-
self.model_name = model_name or os.getenv("STRIX_LLM", "
|
12
|
+
self.model_name = model_name or os.getenv("STRIX_LLM", "anthropic/claude-opus-4-1-20250805")
|
13
13
|
|
14
14
|
if not self.model_name:
|
15
15
|
raise ValueError("STRIX_LLM environment variable must be set and not empty")
|
strix/llm/llm.py
CHANGED
strix/llm/memory_compressor.py
CHANGED
@@ -145,7 +145,7 @@ class MemoryCompressor:
|
|
145
145
|
model_name: str | None = None,
|
146
146
|
):
|
147
147
|
self.max_images = max_images
|
148
|
-
self.model_name = model_name or os.getenv("STRIX_LLM", "
|
148
|
+
self.model_name = model_name or os.getenv("STRIX_LLM", "anthropic/claude-opus-4-1-20250805")
|
149
149
|
|
150
150
|
if not self.model_name:
|
151
151
|
raise ValueError("STRIX_LLM environment variable must be set and not empty")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: strix-agent
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
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
|
@@ -68,7 +68,7 @@ Strix are autonomous AI agents that act just like real hackers - they run your c
|
|
68
68
|
pipx install strix-agent
|
69
69
|
|
70
70
|
# Configure AI provider
|
71
|
-
export STRIX_LLM="
|
71
|
+
export STRIX_LLM="anthropic/claude-opus-4-1-20250805"
|
72
72
|
export LLM_API_KEY="your-api-key"
|
73
73
|
|
74
74
|
# Run security assessment
|
@@ -131,7 +131,7 @@ strix --target api.your-app.com --instruction "Prioritize authentication and aut
|
|
131
131
|
|
132
132
|
```bash
|
133
133
|
# Required
|
134
|
-
export STRIX_LLM="
|
134
|
+
export STRIX_LLM="anthropic/claude-opus-4-1-20250805"
|
135
135
|
export LLM_API_KEY="your-api-key"
|
136
136
|
|
137
137
|
# Recommended
|
@@ -8,7 +8,7 @@ strix/agents/state.py,sha256=ORN2VyLOcQrppiuGcelD0C-1-uhxc6TS4AEqdbK7LZg,4858
|
|
8
8
|
strix/cli/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
|
9
9
|
strix/cli/app.py,sha256=5p-jnS628Ax_HzH7juUuuf605ItSCDzKzzJtuvrhwk0,39114
|
10
10
|
strix/cli/assets/cli.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
|
11
|
-
strix/cli/main.py,sha256=
|
11
|
+
strix/cli/main.py,sha256=WITQC-_NWXQMGpgJIRK6JrHdHr-mFkIysd9cEjhTQ64,18854
|
12
12
|
strix/cli/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
|
13
13
|
strix/cli/tool_components/agents_graph_renderer.py,sha256=e470Fj47WI9DDrOKLM-8YqpToXPohwnzHQuA4Kp7qGs,4380
|
14
14
|
strix/cli/tool_components/base_renderer.py,sha256=e-xD2I3N8EDN-94tfMKAvVt0NGYC-5m2USNRGFMrEQc,1867
|
@@ -27,9 +27,9 @@ strix/cli/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZu
|
|
27
27
|
strix/cli/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
|
28
28
|
strix/cli/tracer.py,sha256=Dhr-0GCrRWxQ7mij0wosqC5hH-4_79_3p11ZqYF1iw0,11058
|
29
29
|
strix/llm/__init__.py,sha256=tzsJlDGGQE_Hw917dyzBWtwXsajZsIS-qdlPuS6EmSY,139
|
30
|
-
strix/llm/config.py,sha256=
|
31
|
-
strix/llm/llm.py,sha256=
|
32
|
-
strix/llm/memory_compressor.py,sha256=
|
30
|
+
strix/llm/config.py,sha256=UkHAhbaUV0WcE-TC6WnT0ZSf0qGlseFV_OPx4bUv-tY,625
|
31
|
+
strix/llm/llm.py,sha256=fJLmx0tLaUUVIqf1hdcrqHeZ2_-CUcFM8RXH1G9XqTs,11034
|
32
|
+
strix/llm/memory_compressor.py,sha256=HBG2V2YEkM_fP7D-_rQ6QFE42ZojdlYoDOivzKhpopU,6878
|
33
33
|
strix/llm/request_queue.py,sha256=hBjj8c_6_D30-j1FCz-fm2eHJA7XGE7rk52j_8QR_4s,2090
|
34
34
|
strix/llm/utils.py,sha256=M84mVstjWY3-fwc2KyVAcfpF3IMHWnbkjRpGUUQ1TcM,2474
|
35
35
|
strix/prompts/__init__.py,sha256=JGzGxp0J86mpmCcWurtikKh_xcd8PvVfjtFDOOh0NaQ,3621
|
@@ -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.8.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
|
96
|
+
strix_agent-0.1.8.dist-info/METADATA,sha256=7JmVDFBTSKSlQdRozliZQ45urg1B7TF9A6eiK-8NV2A,6571
|
97
|
+
strix_agent-0.1.8.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
98
|
+
strix_agent-0.1.8.dist-info/entry_points.txt,sha256=sswIgnkzSVSzQ3Rd046g7mhIPQaj_7RYlXgU_bQelF0,45
|
99
|
+
strix_agent-0.1.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|