-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
feat(provider): support reset/default subcommands to clear session override #8752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Rat0323
wants to merge
5
commits into
AstrBotDevs:master
Choose a base branch
from
Rat0323:feat/provider-reset-command
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+147
−21
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3a25b3c
feat(provider): support reset/default subcommands to clear session pr…
Rat0323 9030f88
refactor(provider): address code review recommendations and format code
Rat0323 d0ff433
refactor(provider): extract _reset_provider_override helper method to…
Rat0323 0763878
fix(provider): add reset command hint to help text
Rat0323 0f8ab79
test(provider): clean provider command test imports
Rat0323 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| from unittest.mock import AsyncMock, MagicMock, patch | ||
|
|
||
| import pytest | ||
|
|
||
| from astrbot.api.event import AstrMessageEvent | ||
| from astrbot.builtin_stars.builtin_commands.commands.provider import ProviderCommands | ||
| from astrbot.core.provider.entities import ProviderType | ||
|
|
||
|
|
||
| @pytest.mark.asyncio | ||
| async def test_provider_reset_chat_completion(): | ||
| context = MagicMock() | ||
| cmd = ProviderCommands(context) | ||
| event = MagicMock(spec=AstrMessageEvent) | ||
| event.unified_msg_origin = "session-123" | ||
|
|
||
| with patch( | ||
| "astrbot.builtin_stars.builtin_commands.commands.provider.sp.session_remove", | ||
| new_callable=AsyncMock, | ||
| ) as mock_remove: | ||
| await cmd.provider(event, idx="reset") | ||
| mock_remove.assert_called_once_with( | ||
| "session-123", | ||
| f"provider_perf_{ProviderType.CHAT_COMPLETION.value}", | ||
| ) | ||
| event.set_result.assert_called_once() | ||
| res = event.set_result.call_args[0][0] | ||
| assert "reset Chat Completion provider" in res.get_plain_text() | ||
|
|
||
|
|
||
| @pytest.mark.asyncio | ||
| async def test_provider_reset_tts(): | ||
| context = MagicMock() | ||
| cmd = ProviderCommands(context) | ||
| event = MagicMock(spec=AstrMessageEvent) | ||
| event.unified_msg_origin = "session-123" | ||
|
|
||
| with patch( | ||
| "astrbot.builtin_stars.builtin_commands.commands.provider.sp.session_remove", | ||
| new_callable=AsyncMock, | ||
| ) as mock_remove: | ||
| await cmd.provider(event, idx="tts", idx2="reset") | ||
| mock_remove.assert_called_once_with( | ||
| "session-123", | ||
| f"provider_perf_{ProviderType.TEXT_TO_SPEECH.value}", | ||
| ) | ||
| event.set_result.assert_called_once() | ||
| res = event.set_result.call_args[0][0] | ||
| assert "reset TTS provider" in res.get_plain_text() | ||
|
|
||
|
|
||
| @pytest.mark.asyncio | ||
| async def test_provider_reset_stt(): | ||
| context = MagicMock() | ||
| cmd = ProviderCommands(context) | ||
| event = MagicMock(spec=AstrMessageEvent) | ||
| event.unified_msg_origin = "session-123" | ||
|
|
||
| with patch( | ||
| "astrbot.builtin_stars.builtin_commands.commands.provider.sp.session_remove", | ||
| new_callable=AsyncMock, | ||
| ) as mock_remove: | ||
| await cmd.provider(event, idx="stt", idx2="reset") | ||
| mock_remove.assert_called_once_with( | ||
| "session-123", | ||
| f"provider_perf_{ProviderType.SPEECH_TO_TEXT.value}", | ||
| ) | ||
| event.set_result.assert_called_once() | ||
| res = event.set_result.call_args[0][0] | ||
| assert "reset STT provider" in res.get_plain_text() |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.