langchain/libs/partners/xai/tests/unit_tests/test_secrets.py
2025-07-10 11:06:37 -04:00

10 lines
216 B
Python

from langchain_xai import ChatXAI
MODEL_NAME = "grok-4"
def test_chat_xai_secrets() -> None:
o = ChatXAI(model=MODEL_NAME, xai_api_key="foo") # type: ignore[call-arg]
s = str(o)
assert "foo" not in s