feat(generate): export SentenceAssembler, SentencePlan, assemble_surface from __init__

This commit is contained in:
Shay 2026-05-14 13:24:19 -07:00 committed by GitHub
parent 9ee27e0792
commit bab4790c10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,7 @@ from .dialogue import (
trajectory_blade,
)
from .stream import generate, agenerate
from .surface import SentenceAssembler, SentencePlan, assemble as assemble_surface
__all__ = [
"DialogueRole",
@ -29,4 +30,7 @@ __all__ = [
"propose",
"propose_dialogue",
"trajectory_blade",
"SentenceAssembler",
"SentencePlan",
"assemble_surface",
]