mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-03 04:24:36 +00:00
The plugin SDK declares get_llm_models() -> list[str] (UUID strings), but the host handler returned the full model dict list from llm_model_service.get_llm_models(). This caused TypeError when invoke_llm passed a dict to get_model_by_uuid (which is decorated with @async_lru and requires hashable arguments). Extract only the 'uuid' field to match the SDK contract.