langchain-ai/langgraph · error · ValueError
Auth handler '{getattr(fn, '__name__', fn)}' must have a 'va
Error message
Auth handler '{getattr(fn, '__name__', fn)}' must have a 'value' parameter. The value contains the mutable data being sent to the endpoint.Update the function signature to include this required parameter. What it means
Error "Auth handler '{getattr(fn, '__name__', fn)}' must have a 'value' parameter. The value contains the mutable data being sent to the endpoint.Update the function signature to include this required parameter." thrown in langchain-ai/langgraph.
Source
Thrown at libs/sdk-py/langgraph_sdk/auth/__init__.py:860
1. Be async functions
2. Accept a ctx parameter of type AuthContext
3. Accept a value parameter for the data being authorized
"""
if not inspect.iscoroutinefunction(fn):
raise ValueError(
f"Auth handler '{getattr(fn, '__name__', fn)}' must be an async function. "
"Add 'async' before 'def' to make it asynchronous and ensure"
" any IO operations are non-blocking."
)
sig = inspect.signature(fn)
if "ctx" not in sig.parameters:
raise ValueError(
f"Auth handler '{getattr(fn, '__name__', fn)}' must have a 'ctx: AuthContext' parameter. "
"Update the function signature to include this required parameter."
)
if "value" not in sig.parameters:
raise ValueError(
f"Auth handler '{getattr(fn, '__name__', fn)}' must have a 'value' parameter. "
" The value contains the mutable data being sent to the endpoint."
"Update the function signature to include this required parameter."
)
def is_studio_user(
user: types.MinimalUser | types.BaseUser | types.MinimalUserDict,
) -> bool:
return isinstance(user, types.StudioUser) or (
isinstance(user, dict) and user.get("kind") == "StudioUser"
)
__all__ = ["Auth", "exceptions", "types"]
View on GitHub (pinned to 38031739e5)
When it happens
Trigger: Thrown at libs/sdk-py/langgraph_sdk/auth/__init__.py:860 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of langchain-ai/langgraph@38031739e5 (2026-08-26).
Data as JSON: /api/errors/1c91018d76c35e59.
Report an issue: GitHub.