skill_retrieve_response.py — anthropic-sdk-python Source File
Architecture documentation for skill_retrieve_response.py, a python file in the anthropic-sdk-python codebase. 2 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR 401b90ef_8e56_f8d1_1630_29a9ac56d0eb["skill_retrieve_response.py"] c14e2467_291d_6c7c_2b25_9a24e81f8565["_models"] 401b90ef_8e56_f8d1_1630_29a9ac56d0eb --> c14e2467_291d_6c7c_2b25_9a24e81f8565 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"] 401b90ef_8e56_f8d1_1630_29a9ac56d0eb --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875 65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd["__init__.py"] 65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd --> 401b90ef_8e56_f8d1_1630_29a9ac56d0eb style 401b90ef_8e56_f8d1_1630_29a9ac56d0eb 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__ = ["SkillRetrieveResponse"]
class SkillRetrieveResponse(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."""
Domain
Classes
Dependencies
- _models
- typing
Imported By
Source
Frequently Asked Questions
What does skill_retrieve_response.py do?
skill_retrieve_response.py is a source file in the anthropic-sdk-python codebase, written in python. It belongs to the AnthropicClient domain.
What does skill_retrieve_response.py depend on?
skill_retrieve_response.py imports 2 module(s): _models, typing.
What files import skill_retrieve_response.py?
skill_retrieve_response.py is imported by 1 file(s): __init__.py.
Where is skill_retrieve_response.py in the architecture?
skill_retrieve_response.py is located at src/anthropic/types/beta/skill_retrieve_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