forked from openai/openai-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill.py
More file actions
30 lines (19 loc) · 657 Bytes
/
skill.py
File metadata and controls
30 lines (19 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing_extensions import Literal
from .._models import BaseModel
__all__ = ["Skill"]
class Skill(BaseModel):
id: str
"""Unique identifier for the skill."""
created_at: int
"""Unix timestamp (seconds) for when the skill was created."""
default_version: str
"""Default version for the skill."""
description: str
"""Description of the skill."""
latest_version: str
"""Latest version for the skill."""
name: str
"""Name of the skill."""
object: Literal["skill"]
"""The object type, which is `skill`."""