skill_create_params.py — anthropic-sdk-python Source File
Architecture documentation for skill_create_params.py, a python file in the anthropic-sdk-python codebase. 5 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR abfd7fa1_a9df_56f3_8c44_318b9d8b8515["skill_create_params.py"] c6699053_fad6_38a2_f621_9844eb5aedd2["_types"] abfd7fa1_a9df_56f3_8c44_318b9d8b8515 --> c6699053_fad6_38a2_f621_9844eb5aedd2 40a4d499_6b34_0763_5e68_275c9212420c["_utils"] abfd7fa1_a9df_56f3_8c44_318b9d8b8515 --> 40a4d499_6b34_0763_5e68_275c9212420c 6e6b04fb_bb37_1a1e_51c1_b5739ba58d0f["anthropic_beta_param"] abfd7fa1_a9df_56f3_8c44_318b9d8b8515 --> 6e6b04fb_bb37_1a1e_51c1_b5739ba58d0f 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"] abfd7fa1_a9df_56f3_8c44_318b9d8b8515 --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875 37c05070_ca59_d596_7250_de9d1939227f["typing_extensions"] abfd7fa1_a9df_56f3_8c44_318b9d8b8515 --> 37c05070_ca59_d596_7250_de9d1939227f 65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd["__init__.py"] 65f3d77c_c1b2_82e1_f9d7_1e7e05f3fdfd --> abfd7fa1_a9df_56f3_8c44_318b9d8b8515 style abfd7fa1_a9df_56f3_8c44_318b9d8b8515 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 ..._types import FileTypes, SequenceNotStr
from ..._utils import PropertyInfo
from ..anthropic_beta_param import AnthropicBetaParam
__all__ = ["SkillCreateParams"]
class SkillCreateParams(TypedDict, total=False):
display_title: Optional[str]
"""Display title for the skill.
This is a human-readable label that is not included in the prompt sent to the
model.
"""
files: Optional[SequenceNotStr[FileTypes]]
"""Files to upload for the skill.
All files must be in the same top-level directory and must include a SKILL.md
file at the root of that directory.
"""
betas: Annotated[List[AnthropicBetaParam], PropertyInfo(alias="anthropic-beta")]
"""Optional header to specify the beta version(s) you want to use."""
Domain
Classes
Dependencies
- _types
- _utils
- anthropic_beta_param
- typing
- typing_extensions
Imported By
Source
Frequently Asked Questions
What does skill_create_params.py do?
skill_create_params.py is a source file in the anthropic-sdk-python codebase, written in python. It belongs to the AnthropicClient domain.
What does skill_create_params.py depend on?
skill_create_params.py imports 5 module(s): _types, _utils, anthropic_beta_param, typing, typing_extensions.
What files import skill_create_params.py?
skill_create_params.py is imported by 1 file(s): __init__.py.
Where is skill_create_params.py in the architecture?
skill_create_params.py is located at src/anthropic/types/beta/skill_create_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