refactor(ai_client): remove unused history management and bleed stats helpers

This commit is contained in:
2026-05-10 11:43:50 -04:00
parent 05d0121e71
commit c888e78691
5 changed files with 5 additions and 211 deletions
-7
View File
@@ -18,13 +18,6 @@ def test_minimax_list_models() -> None:
assert "MiniMax-M2.1" in models
assert "MiniMax-M2" in models
def test_minimax_history_bleed_stats() -> None:
ai_client.set_provider("minimax", "MiniMax-M2.5")
ai_client.reset_session()
stats = ai_client.get_history_bleed_stats(md_content="Test context")
assert stats["provider"] == "minimax"
assert stats["limit"] == 204800
def test_minimax_in_providers_list() -> None:
from src.models import PROVIDERS
assert "minimax" in PROVIDERS