mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-25 14:06:18 +00:00
* fix(doctor): validate CLI credential contents * fix(doctor): keep provider results when CLI auth state is undecodable A credential file holding non-UTF-8 bytes made read_text raise UnicodeDecodeError, which _load_json_object did not catch. check_llm_auth wraps the whole model loop in one handler, so a single bad file replaced every provider result with one generic failure and dropped the provider-specific fix hints. Catch it alongside the malformed-state cases and pin the behaviour with a two-model regression test. Also cover the acceptance branches the change claims but did not test (malformed JSON, non-object JSON, a directory as the auth path, blank tokens, non-numeric expiresAt) and record credential_loader.py as the source of truth for the mirrored rules, including the one place doctor is deliberately stricter.