Home / File/ batch_list_params.py — anthropic-sdk-python Source File

batch_list_params.py — anthropic-sdk-python Source File

Architecture documentation for batch_list_params.py, a python file in the anthropic-sdk-python codebase. 4 imports, 1 dependents.

File python AnthropicClient 4 imports 1 dependents 1 classes

Entity Profile

Dependency Diagram

graph LR
  54b263e5_0000_9711_6942_ba85b2543a34["batch_list_params.py"]
  088f224f_e696_f788_754a_81acc469d929["_utils"]
  54b263e5_0000_9711_6942_ba85b2543a34 --> 088f224f_e696_f788_754a_81acc469d929
  40390f59_8224_a68c_3056_4576703f1ad7["anthropic_beta_param"]
  54b263e5_0000_9711_6942_ba85b2543a34 --> 40390f59_8224_a68c_3056_4576703f1ad7
  89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"]
  54b263e5_0000_9711_6942_ba85b2543a34 --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875
  37c05070_ca59_d596_7250_de9d1939227f["typing_extensions"]
  54b263e5_0000_9711_6942_ba85b2543a34 --> 37c05070_ca59_d596_7250_de9d1939227f
  dbe014d2_4baa_ad50_d7ad_0a355aa14a48["__init__.py"]
  dbe014d2_4baa_ad50_d7ad_0a355aa14a48 --> 54b263e5_0000_9711_6942_ba85b2543a34
  style 54b263e5_0000_9711_6942_ba85b2543a34 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from __future__ import annotations

from typing import List
from typing_extensions import Annotated, TypedDict

from ...._utils import PropertyInfo
from ...anthropic_beta_param import AnthropicBetaParam

__all__ = ["BatchListParams"]


class BatchListParams(TypedDict, total=False):
    after_id: str
    """ID of the object to use as a cursor for pagination.

    When provided, returns the page of results immediately after this object.
    """

    before_id: str
    """ID of the object to use as a cursor for pagination.

    When provided, returns the page of results immediately before this object.
    """

    limit: int
    """Number of items to return per page.

    Defaults to `20`. Ranges from `1` to `1000`.
    """

    betas: Annotated[List[AnthropicBetaParam], PropertyInfo(alias="anthropic-beta")]
    """Optional header to specify the beta version(s) you want to use."""

Classes

Dependencies

  • _utils
  • anthropic_beta_param
  • typing
  • typing_extensions

Frequently Asked Questions

What does batch_list_params.py do?
batch_list_params.py is a source file in the anthropic-sdk-python codebase, written in python. It belongs to the AnthropicClient domain.
What does batch_list_params.py depend on?
batch_list_params.py imports 4 module(s): _utils, anthropic_beta_param, typing, typing_extensions.
What files import batch_list_params.py?
batch_list_params.py is imported by 1 file(s): __init__.py.
Where is batch_list_params.py in the architecture?
batch_list_params.py is located at src/anthropic/types/beta/messages/batch_list_params.py (domain: AnthropicClient, directory: src/anthropic/types/beta/messages).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free