Skip to content

skeino 1.0.1

Choose a tag to compare

@ranjitjana027 ranjitjana027 released this 09 Jun 19:05
· 18 commits to main since this release
64271ff

Fixed

  • Token-by-token values streaming now works for real langgraph-sdk clients. Two fixes: (1) the incremental accumulator engages when values is among the requested stream modes (SDK clients send ["values", "messages-tuple", "custom"]), instead of only on an exact == ["values"] match that never fired — and it now forwards custom (UI) events so generative-UI consumers don't regress; (2) output-schema value filtering introspects TypedDict output schemas (the common StateGraph(State, output=OutputState) pattern) via __annotations__ instead of failing closed and stripping every field — previously it dropped messages from every streamed event, so clients only saw the message after the post-run state fetch. Genuinely opaque schemas still fail closed. (#42)

Full Changelog: v1.0.0...v1.0.1