systemr-cli 2.1.0__tar.gz → 2.1.1__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.
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/PKG-INFO +1 -1
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/__init__.py +1 -1
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/chat_commands.py +1 -1
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/pyproject.toml +1 -1
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/.gitignore +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/DESIGN.md +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/README.md +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/clawhub/systemr-trading/SKILL.md +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/clawhub/systemr-trading/scripts/mcp_stdio_proxy.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/__main__.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/auth.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/chat_runner.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/cli.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/client.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/__init__.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/auth_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/cron_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/doctor_command.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/eval_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/journal_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/plan_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/risk_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/scan_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/commands/size_commands.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/config.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/confirmation.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/credits.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/cron.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/display/__init__.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/display/chat_renderer.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/display/formatters.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/display/tables.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/display/theme.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/hooks.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/logging.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/model_failover.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/orchestrator.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/profile.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/store.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/streaming.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/tool_router.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/tui.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/neo/types.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/__init__.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_auth.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_chat_helpers.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_chat_renderer.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_cli.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_config.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_confirmation.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_credits.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_cron.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_doctor.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_formatters.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_hooks.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_logging.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_model_failover.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_orchestrator.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_profile.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_store.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_streaming.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_tool_router.py +0 -0
- {systemr_cli-2.1.0 → systemr_cli-2.1.1}/tests/test_types.py +0 -0
|
@@ -138,7 +138,7 @@ async def _pipe_mode(token, user_input: str, model_name: str | None, research: b
|
|
|
138
138
|
text_parts: list[str] = []
|
|
139
139
|
tools_used: list[str] = []
|
|
140
140
|
|
|
141
|
-
async for event in stream_chat(token.access_token
|
|
141
|
+
async for event in stream_chat(request, token.access_token):
|
|
142
142
|
if event.event == "text_delta" and event.data:
|
|
143
143
|
text_parts.append(event.data.get("text", ""))
|
|
144
144
|
elif event.event == "action" and event.data:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|