Skip to content

Commit

Permalink
Fix throttle symbol availability
Browse files Browse the repository at this point in the history
  • Loading branch information
KaQuMiQ authored Aug 29, 2024
1 parent be9ee9d commit abf0476
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "draive"
description = "Framework designed to simplify and accelerate the development of LLM-based applications."
version = "0.28.1"
version = "0.28.2"
readme = "README.md"
maintainers = [
{ name = "Kacper Kaliński", email = "[email protected]" },
Expand Down
2 changes: 2 additions & 0 deletions src/draive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@
not_missing,
setup_logging,
split_sequence,
throttle,
with_timeout,
)

Expand Down Expand Up @@ -320,6 +321,7 @@
"TextGeneration",
"TextGenerator",
"TextTokenizer",
"throttle",
"Tokenization",
"tokenize_text",
"TokenUsage",
Expand Down
2 changes: 2 additions & 0 deletions src/draive/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from draive.utils.queue import AsyncQueue
from draive.utils.split_sequence import split_sequence
from draive.utils.stream import AsyncStream
from draive.utils.throttling import throttle
from draive.utils.timeout import with_timeout

__all__ = [
Expand All @@ -37,5 +38,6 @@
"not_missing",
"setup_logging",
"split_sequence",
"throttle",
"with_timeout",
]
File renamed without changes.

0 comments on commit abf0476

Please sign in to comment.