mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-20 09:57:32 +00:00
10 lines
216 B
Python
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
|