feat: add minimax byok to ui (#9101)

* fix: patch minimax

* feat: add frontend changes for minimax

* add logo, fix backend

* better check for is minimax

* more references fixed for minimax

* start revering unnecessary changes

* revert backend changes, just ui

* fix minimax fully

* fix test

* add key to deploy action

---------

Co-authored-by: Ari Webb <ari@letta.com>
Co-authored-by: Ari Webb <arijwebb@gmail.com>
This commit is contained in:
Sarah Wooders
2026-01-26 20:13:03 -08:00
committed by Caren Thomas
parent 62a00cc672
commit b34ad43691
7 changed files with 59 additions and 69 deletions

View File

@@ -155,7 +155,7 @@ async def test_minimax():
# All MiniMax models have 128K max output
assert model.max_tokens == 128000
# MiniMax uses Anthropic-compatible API endpoint
assert model.model_endpoint_type == "anthropic"
assert model.model_endpoint_type == "minimax"
@pytest.mark.skipif(model_settings.azure_api_key is None, reason="Only run if AZURE_API_KEY is set.")