Address a or for the python cli to address the problem where choosing any gro...#2
Merged
7r15 merged 1 commit intoJun 16, 2026
Conversation
7r15
marked this pull request as ready for review
June 16, 2026 23:21
7r15
deleted the
wright/address-a-or-for-the-python-cli-to-address-the-p-ab8cfe71
branch
June 17, 2026 17:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Draft PR prepared by Wright from a Qortium chat request.
Reporter: QuickMythril
Original request:
@Wright - please open a PR or Issue for the python cli to address the problem where choosing any group (including 0 or 2) in the chat menu, results in the development group (group 1) being used.
Changed files:
qortium_cli/services.pyqortium_cli/tools.pyqortium_cli/tools/__init__.pytests/test_chat_commands.pytests/test_chat_service.pyWorker summary:
Implemented the chat group selection fix.
Changed:
qortium_cli/services.py:build_chat()now acceptstx_group_idand sends it as a/chatrequest parameter while preserving the existing JSON payload.qortium_cli/tools/__init__.pyandqortium_cli/tools.py: chat sends now pass the selectedctx.chat.tx_group_idthrough explicitly.tests/test_chat_commands.py: regression assertion that selected group2reaches the chat builder.tests/test_chat_service.py: new service-level test verifying/chatreceivesparams={"txGroupId": 2}.Validation:
python3 -m py_compile qortium_cli/services.py qortium_cli/tools/__init__.py qortium_cli/tools.py tests/test_chat_service.py tests/test_chat_commands.pypython3 -m unittest tests.test_chat_servicepytestis not installed, and the existing chat command unittest import is blocked by missingrich.Validation:
python -m pytestfailed (1): [Errno 2] No such file or directory: 'python'Notes: