LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkauthtypesCronsSearch
    Class●Since v0.1

    CronsSearch

    Copy
    CronsSearch()

    Bases

    typing.TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    assistant_idUUID | None
    thread_idUUID | None
    limitint
    offsetint
    attribute
    assistant_id: UUID | None

    typing.Optional assistant ID to filter by.

    attribute
    thread_id: UUID | None

    typing.Optional thread ID to filter by.

    attribute
    limit: int

    Maximum number of results to return.

    attribute
    offset: int

    Offset for pagination.

    Payload for searching cron jobs.

    Examples
    search_params = {
        "assistant_id": UUID("123e4567-e89b-12d3-a456-426614174000"),
        "thread_id": UUID("123e4567-e89b-12d3-a456-426614174001"),
        "limit": 10,
        "offset": 0
    }