We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 724c952 commit 4c85fc2Copy full SHA for 4c85fc2
src/yandex_cloud_ml_sdk/_models/completions/token.py
@@ -9,8 +9,13 @@
9
10
@dataclass(frozen=True)
11
class Token:
12
+ """This class encapsulates the properties of a token
13
+ and represents it in a text processing context."""
14
+ #: a unique identifier for the token
15
id: int
16
+ #: a flag indicating if the token is a special one
17
special: bool
18
+ #: the textual representation of the token
19
text: str
20
21
@classmethod
0 commit comments