Skip to content

Commit 102f30c

Browse files
committed
hotfix: Expose new text types in top level __init__.py
1 parent 578e6ae commit 102f30c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

dreadnode/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from dreadnode import convert, data_types
2-
from dreadnode.data_types import Audio, Image, Object3D, Table, Video
2+
from dreadnode.data_types import Audio, Code, Image, Markdown, Object3D, Table, Text, Video
33
from dreadnode.main import DEFAULT_INSTANCE, Dreadnode
44
from dreadnode.metric import Metric, MetricDict, Scorer
55
from dreadnode.object import Object
@@ -36,8 +36,10 @@
3636
__all__ = [
3737
"DEFAULT_INSTANCE",
3838
"Audio",
39+
"Code",
3940
"Dreadnode",
4041
"Image",
42+
"Markdown",
4143
"Metric",
4244
"MetricDict",
4345
"Object",
@@ -49,6 +51,7 @@
4951
"Table",
5052
"Task",
5153
"TaskSpan",
54+
"Text",
5255
"Video",
5356
"__version__",
5457
"api",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "dreadnode"
3-
version = "1.11.1"
3+
version = "1.11.2"
44
description = "Dreadnode SDK"
55
requires-python = ">=3.10,<3.14"
66

77
[tool.poetry]
88
name = "dreadnode"
9-
version = "1.11.1"
9+
version = "1.11.2"
1010
description = "Dreadnode SDK"
1111
authors = ["Nick Landers <monoxgas@gmail.com>"]
1212
repository = "https://github.com/dreadnode/sdk"

0 commit comments

Comments
 (0)