Home / Class/ SkillListParams Class — anthropic-sdk-python Architecture

SkillListParams Class — anthropic-sdk-python Architecture

Architecture documentation for the SkillListParams class in skill_list_params.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  518edb0c_7f19_12be_6e3a_3e78d48f33b4["SkillListParams"]
  9de43555_1678_73fd_9291_b594aa7242d4["skill_list_params.py"]
  518edb0c_7f19_12be_6e3a_3e78d48f33b4 -->|defined in| 9de43555_1678_73fd_9291_b594aa7242d4

Relationship Graph

Source Code

src/anthropic/types/beta/skill_list_params.py lines 14–38

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."""

Frequently Asked Questions

What is the SkillListParams class?
SkillListParams is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skill_list_params.py.
Where is SkillListParams defined?
SkillListParams is defined in src/anthropic/types/beta/skill_list_params.py at line 14.

Analyze Your Own Codebase

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

Try Supermodel Free