MCPcopy
hub / github.com/langchain-ai/langchain / with_config

Method with_config

libs/core/langchain_core/runnables/base.py:4371–4374  ·  view source on GitHub ↗
(
        self, config: Optional[RunnableConfig] = None, **kwargs: Any
    )

Source from the content-addressed store, hash-verified

4369 return RunnableEach(bound=self.bound.bind(**kwargs))
4370
4371 def with_config(
4372 self, config: Optional[RunnableConfig] = None, **kwargs: Any
4373 ) -> RunnableEach[Input, Output]:
4374 return RunnableEach(bound=self.bound.with_config(config, **kwargs))
4375
4376 def with_listeners(
4377 self,

Callers

nothing calls this directly

Calls 2

RunnableEachClass · 0.85
with_configMethod · 0.45

Tested by

no test coverage detected