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

skill_create_response.py — anthropic-sdk-python Source File

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

File python AnthropicClient 2 imports 1 dependents 1 classes

Entity Profile

Dependency Diagram

graph LR
  4de43bc0_ef54_39da_c577_348397a525cc["skill_create_response.py"]
  c14e2467_291d_6c7c_2b25_9a24e81f8565["_models"]
  4de43bc0_ef54_39da_c577_348397a525cc --> c14e2467_291d_6c7c_2b25_9a24e81f8565
  89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"]
  4de43bc0_ef54_39da_c577_348397a525cc --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875
  65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd["__init__.py"]
  65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd --> 4de43bc0_ef54_39da_c577_348397a525cc
  style 4de43bc0_ef54_39da_c577_348397a525cc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

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

from typing import Optional

from ..._models import BaseModel

__all__ = ["SkillCreateResponse"]


class SkillCreateResponse(BaseModel):
    id: str
    """Unique identifier for the skill.

    The format and length of IDs may change over time.
    """

    created_at: str
    """ISO 8601 timestamp of when the skill was created."""

    display_title: Optional[str] = None
    """Display title for the skill.

    This is a human-readable label that is not included in the prompt sent to the
    model.
    """

    latest_version: Optional[str] = None
    """The latest version identifier for the skill.

    This represents the most recent version of the skill that has been created.
    """

    source: str
    """Source of the skill.

    This may be one of the following values:

    - `"custom"`: the skill was created by a user
    - `"anthropic"`: the skill was created by Anthropic
    """

    type: str
    """Object type.

    For Skills, this is always `"skill"`.
    """

    updated_at: str
    """ISO 8601 timestamp of when the skill was last updated."""

Dependencies

  • _models
  • typing

Frequently Asked Questions

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