Files
openclaw/src/plugin-sdk/response-limit-runtime.ts
Peter Steinberger d185f9a0b4 fix(infra): preserve characters in truncated response snippets (#103136)
* fix(infra): preserve bounded response text characters

Co-authored-by: qingminlong <34085845+qingminglong@users.noreply.github.com>

* ci(plugin-sdk): refresh API baseline

---------

Co-authored-by: qingminlong <34085845+qingminglong@users.noreply.github.com>
2026-07-09 23:43:26 +01:00

9 lines
369 B
TypeScript

// Narrow response-size reader for plugins that download bounded HTTP bodies.
export { readByteStreamWithLimit } from "@openclaw/media-core/read-byte-stream-with-limit";
export { readResponseTextPrefix, readResponseWithLimit } from "../infra/http-body.js";
export type {
ReadResponseTextPrefixOptions,
ReadResponseTextPrefixResult,
} from "../infra/http-body.js";