mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-19 11:08:55 +00:00
8 lines
194 B
Python
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
|