Skip to content

Commit a89c744

Browse files
committed
Merge branch 'refactor/until-callbacks' into v3
2 parents 99e2323 + 72a7ce0 commit a89c744

27 files changed

+1782
-1165
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ target-version = "py310"
114114
line-length = 100
115115
extend-exclude = [
116116
"*.ipynb", # jupyter notebooks
117-
"tests/*"
118117
]
119118

120119
[tool.ruff.lint]

rigging/__init__.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
from rigging import data, error, generator, logging, model, parsing, watchers
2-
from rigging.chat import Chat, ChatPipeline, MapChatCallback, ThenChatCallback
2+
from rigging.chat import (
3+
Chat,
4+
ChatPipeline,
5+
MapChatCallback,
6+
PipelineStep,
7+
PipelineStepContextManager,
8+
PipelineStepGenerator,
9+
ThenChatCallback,
10+
)
311
from rigging.completion import (
412
Completion,
513
CompletionPipeline,
@@ -65,6 +73,9 @@
6573
"MapChatCallback",
6674
"ThenCompletionCallback",
6775
"MapCompletionCallback",
76+
"PipelineStep",
77+
"PipelineStepGenerator",
78+
"PipelineStepContextManager",
6879
"generator",
6980
"mcp",
7081
"robopages",

0 commit comments

Comments
 (0)