2026-05-12 08:06:58 -05:00
|
|
|
export type { Spec, SpecRuntimeError, SpecRuntimeRequirements } from "./types.js";
|
2026-04-05 21:09:33 -05:00
|
|
|
export { ConsumerSpec } from "./consumer-spec.js";
|
|
|
|
|
export { ProducerSpec } from "./producer-spec.js";
|
|
|
|
|
export { ParameterSpec } from "./parameter-spec.js";
|
feat: add schema foundation for document pipeline, agent, and deployment
Add missing topics (librarian, knowledge, collection-management, flow),
pipeline message types (TextDocument, Chunk, Triples, EntityContexts),
service message types (Librarian, Knowledge, Collection, Flow CRUD),
and update AgentResponse for streaming chunk format.
Add RequestResponseSpec enabling flow-scoped request/response calls
(needed by knowledge extraction and agent services). Add requestor
registry to Flow class with proper lifecycle management.
Add end_of_dialog to gateway's isComplete() check for agent streaming.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 00:11:29 -05:00
|
|
|
export { RequestResponseSpec } from "./request-response-spec.js";
|