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

skill_list_params.py — anthropic-sdk-python Source File

Architecture documentation for skill_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
  9de43555_1678_73fd_9291_b594aa7242d4["skill_list_params.py"]
  40a4d499_6b34_0763_5e68_275c9212420c["_utils"]
  9de43555_1678_73fd_9291_b594aa7242d4 --> 40a4d499_6b34_0763_5e68_275c9212420c
  6e6b04fb_bb37_1a1e_51c1_b5739ba58d0f["anthropic_beta_param"]
  9de43555_1678_73fd_9291_b594aa7242d4 --> 6e6b04fb_bb37_1a1e_51c1_b5739ba58d0f
  89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"]
  9de43555_1678_73fd_9291_b594aa7242d4 --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875
  37c05070_ca59_d596_7250_de9d1939227f["typing_extensions"]
  9de43555_1678_73fd_9291_b594aa7242d4 --> 37c05070_ca59_d596_7250_de9d1939227f
  65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd["__init__.py"]
  65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd --> 9de43555_1678_73fd_9291_b594aa7242d4
  style 9de43555_1678_73fd_9291_b594aa7242d4 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, Optional
from typing_extensions import Annotated, TypedDict

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

__all__ = ["SkillListParams"]


class SkillListParams(TypedDict, total=False):
    limit: int
    """Number of results to return per page.

    Maximum value is 100. Defaults to 20.
    """

    page: Optional[str]
    """Pagination token for fetching a specific page of results.

    Pass the value from a previous response's `next_page` field to get the next page
    of results.
    """

    source: Optional[str]
    """Filter skills by source.

    If provided, only skills from the specified source will be returned:

    - `"custom"`: only return user-created skills
    - `"anthropic"`: only return Anthropic-created skills
    """

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

Analyze Your Own Codebase

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

Try Supermodel Free