langchain/libs/partners/xai/tests/unit_tests/test_secrets.py
2024-11-12 15:11:29 -05:00

8 lines
194 B
Python

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