LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Caches
    • Callbacks
    • Documents
    • Document loaders
    • Embeddings
    • Exceptions
    • Language models
    • Serialization
    • Output parsers
    • Prompts
    • Rate limiters
    • Retrievers
    • Runnables
    • Utilities
    • Vector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewCachesCallbacksDocumentsDocument loadersEmbeddingsExceptionsLanguage modelsSerializationOutput parsersPromptsRate limitersRetrieversRunnablesUtilitiesVector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-corerunnablesretryExponentialJitterParams
    Class●Since v0.3

    ExponentialJitterParams

    Parameters for tenacity.wait_exponential_jitter.

    Copy
    ExponentialJitterParams()

    Bases

    TypedDict

    Constructors

    constructor
    __init__
    NameType
    initialfloat
    maxfloat
    exp_basefloat
    jitterfloat

    Attributes

    attribute
    initial: float

    Initial wait.

    attribute
    max: float

    Maximum wait.

    attribute
    exp_base: float

    Base for exponential backoff.

    attribute
    jitter: float

    Random additional wait sampled from random.uniform(0, jitter).

    View source on GitHub