@code-yeongyu/senpi 2026.5.20-3 → 2026.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +4 -10
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +10 -4
- package/dist/config.js.map +1 -1
- package/dist/core/agent-session-runtime.d.ts.map +1 -1
- package/dist/core/agent-session-runtime.js +2 -3
- package/dist/core/agent-session-runtime.js.map +1 -1
- package/dist/core/http-dispatcher.d.ts +21 -0
- package/dist/core/http-dispatcher.d.ts.map +1 -0
- package/dist/core/http-dispatcher.js +48 -0
- package/dist/core/http-dispatcher.js.map +1 -0
- package/dist/core/package-manager.d.ts.map +1 -1
- package/dist/core/package-manager.js +2 -1
- package/dist/core/package-manager.js.map +1 -1
- package/dist/core/settings-manager.d.ts +3 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +20 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +2 -0
- package/dist/main.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector.d.ts +2 -0
- package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector.js +15 -0
- package/dist/modes/interactive/components/settings-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +10 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/senpi +4 -10
- package/dist/utils/paths.d.ts +1 -0
- package/dist/utils/paths.d.ts.map +1 -1
- package/dist/utils/paths.js +16 -0
- package/dist/utils/paths.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +2 -2
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +2 -2
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +3 -3
- package/node_modules/@earendil-works/pi-agent-core/README.md +488 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts +24 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +610 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts +120 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +405 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.d.ts +92 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js +904 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.d.ts +53 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js +174 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts +95 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +533 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.d.ts +25 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.js +131 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.d.ts +51 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js +486 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.d.ts +52 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.js +102 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.d.ts +48 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js +230 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.d.ts +26 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.js +101 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.d.ts +33 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.js +231 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.d.ts +18 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.js +42 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.d.ts +25 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.js +114 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.d.ts +11 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.js +39 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.d.ts +32 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js +197 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.d.ts +2 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.js +50 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.d.ts +44 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js +311 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.d.ts +3 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.js +30 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.d.ts +604 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js +103 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.d.ts +14 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js +126 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.d.ts +70 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.js +290 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/index.d.ts +20 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/index.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/index.js +25 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/index.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/node.d.ts +3 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/node.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/node.js +3 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/node.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts +69 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js +278 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +394 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/types.js +2 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/package.json +61 -0
- package/node_modules/@earendil-works/pi-ai/README.md +1386 -0
- package/node_modules/@earendil-works/pi-ai/dist/api-registry.d.ts +20 -0
- package/node_modules/@earendil-works/pi-ai/dist/api-registry.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/api-registry.js +44 -0
- package/node_modules/@earendil-works/pi-ai/dist/api-registry.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.d.ts +5 -0
- package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.js +6 -0
- package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/cli.js +116 -0
- package/node_modules/@earendil-works/pi-ai/dist/cli.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.d.ts +18 -0
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js +178 -0
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.d.ts +10 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts +440 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js +442 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.js +23 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.d.ts +14 -0
- package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.js +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/images.d.ts +4 -0
- package/node_modules/@earendil-works/pi-ai/dist/images.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/images.js +14 -0
- package/node_modules/@earendil-works/pi-ai/dist/images.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/index.d.ts +33 -0
- package/node_modules/@earendil-works/pi-ai/dist/index.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/index.js +21 -0
- package/node_modules/@earendil-works/pi-ai/dist/index.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.d.ts +37 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +17658 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +16510 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.js +114 -0
- package/node_modules/@earendil-works/pi-ai/dist/models.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/oauth.d.ts +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/oauth.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/oauth.js +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/oauth.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.d.ts +38 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +787 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts +52 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +1127 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.d.ts +15 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +229 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.d.ts +13 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.js +26 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/faux.d.ts +66 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/faux.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/faux.js +401 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/faux.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.d.ts +8 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.js +29 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.d.ts +73 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.js +359 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.d.ts +15 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js +465 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google.d.ts +13 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google.js +431 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/google.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.d.ts +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js +129 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.d.ts +4 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.js +34 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.d.ts +25 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.js +542 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.d.ts +30 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +1112 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.d.ts +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +977 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.d.ts +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.js +10 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.d.ts +19 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js +579 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.d.ts +13 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +651 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.d.ts +35 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.js +254 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.d.ts +38 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js +174 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.d.ts +16 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.js +186 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/session-resources.d.ts +4 -0
- package/node_modules/@earendil-works/pi-ai/dist/session-resources.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/session-resources.js +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/session-resources.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/stream.d.ts +8 -0
- package/node_modules/@earendil-works/pi-ai/dist/stream.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/stream.js +42 -0
- package/node_modules/@earendil-works/pi-ai/dist/stream.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.d.ts +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.js +161 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.d.ts +13 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.js +23 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.d.ts +21 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.js +559 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.d.ts +21 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.js +69 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.d.ts +12 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.js +570 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.d.ts +15 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.js +935 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.d.ts +14 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.js +54 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.d.ts +8 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.js +295 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.d.ts +4 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.js +336 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.d.ts +103 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.js +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/types.d.ts +543 -0
- package/node_modules/@earendil-works/pi-ai/dist/types.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/types.js +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/types.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.d.ts +19 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.js +25 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.d.ts +21 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.js +81 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/hash.d.ts +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/hash.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/hash.js +14 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/hash.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/headers.d.ts +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/headers.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/headers.js +8 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/headers.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.d.ts +16 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.js +113 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.d.ts +10 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js +97 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.d.ts +25 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.js +335 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.d.ts +30 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js +292 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.d.ts +57 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.js +121 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.d.ts +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.js +105 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.d.ts +34 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +385 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.d.ts +13 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.js +31 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.d.ts +57 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.js +2 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts +56 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js +151 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.d.ts +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.js +26 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.d.ts +5 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.js +49 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.d.ts +17 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.js +21 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/validation.d.ts +18 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/validation.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/validation.js +281 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/validation.js.map +1 -0
- package/node_modules/@earendil-works/pi-ai/package.json +113 -0
- package/node_modules/@earendil-works/pi-tui/README.md +779 -0
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts +54 -0
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js +632 -0
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/box.d.ts +22 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/box.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/box.js +104 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/box.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.d.ts +22 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.js +35 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts +249 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +1916 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/image.d.ts +28 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/image.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/image.js +89 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/image.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/input.d.ts +37 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/input.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/input.js +426 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/input.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/loader.d.ts +40 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/loader.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/loader.js +95 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/loader.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts +90 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +634 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/select-list.d.ts +50 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/select-list.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/select-list.js +159 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/select-list.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.d.ts +50 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js +185 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/spacer.d.ts +12 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/spacer.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/spacer.js +23 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/spacer.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/text.d.ts +19 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/text.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/text.js +89 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/text.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.d.ts +13 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.js +51 -0
- package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/editor-component.d.ts +39 -0
- package/node_modules/@earendil-works/pi-tui/dist/editor-component.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/editor-component.js +2 -0
- package/node_modules/@earendil-works/pi-tui/dist/editor-component.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts +16 -0
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js +110 -0
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/index.d.ts +23 -0
- package/node_modules/@earendil-works/pi-tui/dist/index.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/index.js +32 -0
- package/node_modules/@earendil-works/pi-tui/dist/index.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/keybindings.d.ts +193 -0
- package/node_modules/@earendil-works/pi-tui/dist/keybindings.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/keybindings.js +174 -0
- package/node_modules/@earendil-works/pi-tui/dist/keybindings.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/keys.d.ts +184 -0
- package/node_modules/@earendil-works/pi-tui/dist/keys.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/keys.js +1173 -0
- package/node_modules/@earendil-works/pi-tui/dist/keys.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/kill-ring.d.ts +28 -0
- package/node_modules/@earendil-works/pi-tui/dist/kill-ring.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/kill-ring.js +44 -0
- package/node_modules/@earendil-works/pi-tui/dist/kill-ring.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.d.ts +50 -0
- package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.js +361 -0
- package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.d.ts +90 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +336 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts +88 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js +329 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts +231 -0
- package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/tui.js +1230 -0
- package/node_modules/@earendil-works/pi-tui/dist/tui.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/undo-stack.d.ts +17 -0
- package/node_modules/@earendil-works/pi-tui/dist/undo-stack.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/undo-stack.js +25 -0
- package/node_modules/@earendil-works/pi-tui/dist/undo-stack.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts +79 -0
- package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/utils.js +1031 -0
- package/node_modules/@earendil-works/pi-tui/dist/utils.js.map +1 -0
- package/node_modules/@earendil-works/pi-tui/package.json +48 -0
- package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +724 -0
- package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +216 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +11 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +11 -0
- package/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/index.js +42 -0
- package/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +42 -0
- package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +136 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +230 -0
- package/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +42 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +142 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +245 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +101 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/marked/LICENSE.md +44 -0
- package/node_modules/marked/README.md +106 -0
- package/node_modules/marked/bin/main.js +282 -0
- package/node_modules/marked/bin/marked.js +15 -0
- package/node_modules/marked/lib/marked.cjs +2211 -0
- package/node_modules/marked/lib/marked.cjs.map +7 -0
- package/node_modules/marked/lib/marked.d.cts +728 -0
- package/node_modules/marked/lib/marked.d.ts +728 -0
- package/node_modules/marked/lib/marked.esm.js +2189 -0
- package/node_modules/marked/lib/marked.esm.js.map +7 -0
- package/node_modules/marked/lib/marked.umd.js +2213 -0
- package/node_modules/marked/lib/marked.umd.js.map +7 -0
- package/node_modules/marked/man/marked.1 +111 -0
- package/node_modules/marked/man/marked.1.md +92 -0
- package/node_modules/marked/marked.min.js +69 -0
- package/node_modules/marked/package.json +111 -0
- package/npm-shrinkwrap.json +1841 -0
- package/package.json +49 -31
package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"yaml-xml.js","sourceRoot":"","sources":["../../../src/tool-call-middleware/protocols/yaml-xml.ts"],"names":[],"mappings":"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","sourcesContent":["import YAML from \"yaml\";\nimport type { TextContent, Tool } from \"../../types.ts\";\nimport type { ParsedToolCall, ParserOptions, StreamParser, StreamParserEvent } from \"../types.ts\";\nimport { findEarliestXmlToolTag, getSafeXmlTextLength } from \"./xml-tool-tag-scanner.ts\";\n\nfunction escapeRegExp(text: string): string {\n\treturn text.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\nfunction normalizeYamlContent(yamlContent: string): string {\n\tconst trimmedLeadingNewline = yamlContent.startsWith(\"\\n\") ? yamlContent.slice(1) : yamlContent;\n\tconst lines = trimmedLeadingNewline.split(\"\\n\");\n\tconst nonEmptyLines = lines.filter((line) => line.trim().length > 0);\n\tif (nonEmptyLines.length === 0) {\n\t\treturn \"\";\n\t}\n\n\tconst minIndent = Math.min(\n\t\t...nonEmptyLines.map((line) => {\n\t\t\tconst match = line.match(/^(\\s*)/);\n\t\t\treturn match?.[1].length ?? 0;\n\t\t}),\n\t);\n\treturn minIndent > 0 ? lines.map((line) => line.slice(minIndent)).join(\"\\n\") : trimmedLeadingNewline;\n}\n\nfunction parseYamlMapping(yamlContent: string): Record<string, unknown> | null {\n\tconst normalized = normalizeYamlContent(yamlContent);\n\tif (normalized.trim().length === 0) {\n\t\treturn {};\n\t}\n\n\ttry {\n\t\tconst parsed = YAML.parse(normalized) as unknown;\n\t\tif (parsed === null) {\n\t\t\treturn {};\n\t\t}\n\t\tif (typeof parsed !== \"object\" || Array.isArray(parsed)) {\n\t\t\treturn null;\n\t\t}\n\t\treturn parsed as Record<string, unknown>;\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nfunction findClosingTagEnd(text: string, contentStart: number, toolName: string): number {\n\tconst closingPattern = new RegExp(`</\\\\s*${escapeRegExp(toolName)}\\\\s*>`, \"g\");\n\tclosingPattern.lastIndex = contentStart;\n\tconst match = closingPattern.exec(text);\n\treturn match?.index === undefined ? -1 : match.index + match[0].length;\n}\n\nfunction shouldEmitRawToolCallTextOnError(options?: ParserOptions): boolean {\n\treturn options?.emitRawToolCallTextOnError === true;\n}\n\nexport function yamlXmlFormatToolsSystemPrompt(tools: Tool[]): string {\n\tif (tools.length === 0) {\n\t\treturn \"\";\n\t}\n\n\tconst toolsRendered = JSON.stringify(\n\t\ttools.map((tool) => ({\n\t\t\tname: tool.name,\n\t\t\tdescription: tool.description,\n\t\t\tparameters: tool.parameters,\n\t\t})),\n\t);\n\n\treturn `# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>${toolsRendered}</tools>\n\n# Format\n\nUse exactly one XML element whose tag name is the function name.\nInside the XML element, specify parameters using YAML syntax (key: value pairs).\n\n# Example\n<get_weather>\ncity: Seoul\nunit: celsius\n</get_weather>`;\n}\n\nexport function yamlXmlFormatToolCall(name: string, args: Record<string, unknown>): string {\n\tconst yamlBody = YAML.stringify(args).trimEnd();\n\treturn `<${name}>\\n${yamlBody.length > 0 ? yamlBody : \"null\"}\\n</${name}>`;\n}\n\nexport function yamlXmlFormatToolResponse(toolName: string, _toolCallId: string, content: TextContent[]): string {\n\tconst textContent = content\n\t\t.filter((entry): entry is TextContent => entry.type === \"text\")\n\t\t.map((entry) => entry.text)\n\t\t.join(\"\\n\");\n\n\treturn [\n\t\t`<tool_response>`,\n\t\t`tool_name: ${toolName}`,\n\t\t`result: |-`,\n\t\t...textContent.split(\"\\n\").map((line) => ` ${line}`),\n\t\t`</tool_response>`,\n\t].join(\"\\n\");\n}\n\nexport function parseYamlXmlGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[] {\n\tif (tools.length === 0 || text.length === 0) {\n\t\treturn [];\n\t}\n\n\tconst parsedToolCalls: ParsedToolCall[] = [];\n\tconst toolNames = tools.map((tool) => tool.name);\n\tlet cursor = 0;\n\n\twhile (cursor < text.length) {\n\t\tconst openingTag = findEarliestXmlToolTag(text.slice(cursor), toolNames);\n\t\tif (!openingTag) {\n\t\t\tbreak;\n\t\t}\n\n\t\tconst absoluteIndex = cursor + openingTag.index;\n\t\tif (openingTag.selfClosing) {\n\t\t\tparsedToolCalls.push({ name: openingTag.name, arguments: {} });\n\t\t\tcursor = absoluteIndex + openingTag.tag.length;\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst contentStart = absoluteIndex + openingTag.tag.length;\n\t\tconst closingTagEnd = findClosingTagEnd(text, contentStart, openingTag.name);\n\t\tif (closingTagEnd === -1) {\n\t\t\tbreak;\n\t\t}\n\n\t\tconst closingTagText = text.slice(contentStart, closingTagEnd);\n\t\tconst closingTagMatch = new RegExp(`</\\\\s*${escapeRegExp(openingTag.name)}\\\\s*>`).exec(closingTagText);\n\t\tconst closingTagIndex = closingTagMatch?.index;\n\t\tif (closingTagIndex === undefined) {\n\t\t\tcursor = closingTagEnd;\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst yamlContent = closingTagText.slice(0, closingTagIndex);\n\t\tconst parsedArguments = parseYamlMapping(yamlContent);\n\t\tif (parsedArguments !== null) {\n\t\t\tparsedToolCalls.push({\n\t\t\t\tname: openingTag.name,\n\t\t\t\targuments: parsedArguments,\n\t\t\t});\n\t\t} else {\n\t\t\toptions?.onError?.(\"Could not process YAML XML tool call, keeping original text.\", {\n\t\t\t\ttoolCall: text.slice(absoluteIndex, closingTagEnd),\n\t\t\t});\n\t\t}\n\n\t\tcursor = closingTagEnd;\n\t}\n\n\treturn parsedToolCalls;\n}\n\nexport function createYamlXmlStreamParser(tools: Tool[], options?: ParserOptions): StreamParser {\n\tconst toolNames = tools.map((tool) => tool.name);\n\tlet buffer = \"\";\n\tlet currentToolState: {\n\t\tid: string;\n\t\tindex: number;\n\t\tname: string;\n\t\tlastArgumentsSnapshot: string | null;\n\t} | null = null;\n\tlet nextToolCallIndex = 0;\n\n\tfunction emitSnapshot(events: StreamParserEvent[], yamlContent: string): void {\n\t\tif (!currentToolState) {\n\t\t\treturn;\n\t\t}\n\t\tconst parsedArguments = parseYamlMapping(yamlContent);\n\t\tif (parsedArguments === null) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst snapshot = JSON.stringify(parsedArguments);\n\t\tif (snapshot === \"{}\" || snapshot === currentToolState.lastArgumentsSnapshot) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (currentToolState.lastArgumentsSnapshot === null) {\n\t\t\tevents.push({\n\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\tindex: currentToolState.index,\n\t\t\t\tname: currentToolState.name,\n\t\t\t\tid: currentToolState.id,\n\t\t\t});\n\t\t}\n\n\t\tcurrentToolState.lastArgumentsSnapshot = snapshot;\n\t\tevents.push({\n\t\t\ttype: \"toolcall_delta\",\n\t\t\tindex: currentToolState.index,\n\t\t\targumentsDelta: snapshot,\n\t\t});\n\t}\n\n\tfunction processBuffer(): StreamParserEvent[] {\n\t\tconst events: StreamParserEvent[] = [];\n\n\t\twhile (buffer.length > 0) {\n\t\t\tif (currentToolState) {\n\t\t\t\tconst closingTagRegex = new RegExp(`</\\\\s*${escapeRegExp(currentToolState.name)}\\\\s*>`);\n\t\t\t\tconst closingTagMatch = closingTagRegex.exec(buffer);\n\t\t\t\tif (!closingTagMatch || closingTagMatch.index === undefined) {\n\t\t\t\t\temitSnapshot(events, buffer);\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tconst yamlContent = buffer.slice(0, closingTagMatch.index);\n\t\t\t\tconst originalCallText = `<${currentToolState.name}>${yamlContent}${closingTagMatch[0]}`;\n\t\t\t\tconst parsedArguments = parseYamlMapping(yamlContent);\n\t\t\t\tbuffer = buffer.slice(closingTagMatch.index + closingTagMatch[0].length);\n\t\t\t\tif (parsedArguments === null) {\n\t\t\t\t\toptions?.onError?.(\"Could not process YAML XML tool call, keeping original text.\", {\n\t\t\t\t\t\ttoolCall: originalCallText,\n\t\t\t\t\t});\n\t\t\t\t\tif (shouldEmitRawToolCallTextOnError(options)) {\n\t\t\t\t\t\tevents.push({ type: \"text\", text: originalCallText });\n\t\t\t\t\t}\n\t\t\t\t\tcurrentToolState = null;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\temitSnapshot(events, yamlContent);\n\t\t\t\tif (currentToolState.lastArgumentsSnapshot === null) {\n\t\t\t\t\tevents.push({\n\t\t\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\t\t\tindex: currentToolState.index,\n\t\t\t\t\t\tname: currentToolState.name,\n\t\t\t\t\t\tid: currentToolState.id,\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tevents.push({\n\t\t\t\t\ttype: \"toolcall_end\",\n\t\t\t\t\tindex: currentToolState.index,\n\t\t\t\t\tname: currentToolState.name,\n\t\t\t\t\tid: currentToolState.id,\n\t\t\t\t\targuments: parsedArguments,\n\t\t\t\t});\n\t\t\t\tcurrentToolState = null;\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tconst openingTag = findEarliestXmlToolTag(buffer, toolNames);\n\t\t\tif (!openingTag) {\n\t\t\t\tconst textLength = getSafeXmlTextLength(buffer, toolNames);\n\t\t\t\tif (textLength === 0) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tevents.push({ type: \"text\", text: buffer.slice(0, textLength) });\n\t\t\t\tbuffer = buffer.slice(textLength);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (openingTag.index > 0) {\n\t\t\t\tevents.push({ type: \"text\", text: buffer.slice(0, openingTag.index) });\n\t\t\t}\n\n\t\t\tbuffer = buffer.slice(openingTag.index + openingTag.tag.length);\n\t\t\tif (openingTag.selfClosing) {\n\t\t\t\tconst id = `yaml-xml-tool-${nextToolCallIndex}`;\n\t\t\t\tconst index = nextToolCallIndex;\n\t\t\t\tnextToolCallIndex += 1;\n\t\t\t\tevents.push({ type: \"toolcall_start\", index, name: openingTag.name, id });\n\t\t\t\tevents.push({ type: \"toolcall_end\", index, name: openingTag.name, id, arguments: {} });\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tcurrentToolState = {\n\t\t\t\tid: `yaml-xml-tool-${nextToolCallIndex}`,\n\t\t\t\tindex: nextToolCallIndex,\n\t\t\t\tname: openingTag.name,\n\t\t\t\tlastArgumentsSnapshot: null,\n\t\t\t};\n\t\t\tnextToolCallIndex += 1;\n\t\t}\n\n\t\treturn events;\n\t}\n\n\treturn {\n\t\tfeed(textDelta: string): StreamParserEvent[] {\n\t\t\tif (textDelta.length === 0) {\n\t\t\t\treturn [];\n\t\t\t}\n\t\t\tbuffer += textDelta;\n\t\t\treturn processBuffer();\n\t\t},\n\t\tfinish(): StreamParserEvent[] {\n\t\t\tconst events = processBuffer();\n\t\t\tif (!currentToolState && buffer.length > 0) {\n\t\t\t\tevents.push({ type: \"text\", text: buffer });\n\t\t\t\tbuffer = \"\";\n\t\t\t}\n\t\t\tif (currentToolState && buffer.length > 0) {\n\t\t\t\tconst parsedArguments = parseYamlMapping(buffer);\n\t\t\t\tif (parsedArguments !== null) {\n\t\t\t\t\temitSnapshot(events, buffer);\n\t\t\t\t\tif (currentToolState.lastArgumentsSnapshot === null) {\n\t\t\t\t\t\tevents.push({\n\t\t\t\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\t\t\t\tindex: currentToolState.index,\n\t\t\t\t\t\t\tname: currentToolState.name,\n\t\t\t\t\t\t\tid: currentToolState.id,\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tevents.push({\n\t\t\t\t\t\ttype: \"toolcall_end\",\n\t\t\t\t\t\tindex: currentToolState.index,\n\t\t\t\t\t\tname: currentToolState.name,\n\t\t\t\t\t\tid: currentToolState.id,\n\t\t\t\t\t\targuments: parsedArguments,\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tconst rawToolCall = `<${currentToolState.name}>${buffer}`;\n\t\t\t\t\toptions?.onError?.(\"Could not complete streaming YAML XML tool call at finish.\", {\n\t\t\t\t\t\ttoolCall: rawToolCall,\n\t\t\t\t\t});\n\t\t\t\t\tif (shouldEmitRawToolCallTextOnError(options)) {\n\t\t\t\t\t\tevents.push({ type: \"text\", text: rawToolCall });\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbuffer = \"\";\n\t\t\t\tcurrentToolState = null;\n\t\t\t}\n\t\t\treturn events;\n\t\t},\n\t};\n}\n"]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { AssistantMessageEventStream, Tool } from "../types.ts";
|
|
2
|
+
import type { ToolCallProtocol } from "./types.ts";
|
|
3
|
+
export declare function wrapStreamWithToolCallMiddleware(innerStream: AssistantMessageEventStream, protocol: ToolCallProtocol, tools: Tool[]): AssistantMessageEventStream;
|
|
4
|
+
//# sourceMappingURL=stream-wrapper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stream-wrapper.d.ts","sourceRoot":"","sources":["../../src/tool-call-middleware/stream-wrapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEX,2BAA2B,EAE3B,IAAI,EAGJ,MAAM,aAAa,CAAC;AAGrB,OAAO,KAAK,EAAqB,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAwPtE,wBAAgB,gCAAgC,CAC/C,WAAW,EAAE,2BAA2B,EACxC,QAAQ,EAAE,gBAAgB,EAC1B,KAAK,EAAE,IAAI,EAAE,GACX,2BAA2B,CAqL7B","sourcesContent":["import type {\n\tAssistantMessage,\n\tAssistantMessageEventStream,\n\tThinkingContent,\n\tTool,\n\tToolCall,\n\tUsage,\n} from \"../types.ts\";\nimport { AssistantMessageEventStream as AssistantMessageEventStreamImpl } from \"../utils/event-stream.ts\";\nimport { parseStreamingJson } from \"../utils/json-parse.ts\";\nimport type { StreamParserEvent, ToolCallProtocol } from \"./types.ts\";\n\ntype PartialToolCall = ToolCall & {\n\tpartialJson: string;\n};\n\nfunction isPartialToolCall(block: AssistantMessage[\"content\"][number] | undefined): block is PartialToolCall {\n\treturn block?.type === \"toolCall\" && typeof (block as PartialToolCall).partialJson === \"string\";\n}\n\nfunction cloneUsage(usage: Usage): Usage {\n\treturn {\n\t\tinput: usage.input,\n\t\toutput: usage.output,\n\t\tcacheRead: usage.cacheRead,\n\t\tcacheWrite: usage.cacheWrite,\n\t\ttotalTokens: usage.totalTokens,\n\t\tcost: {\n\t\t\tinput: usage.cost.input,\n\t\t\toutput: usage.cost.output,\n\t\t\tcacheRead: usage.cost.cacheRead,\n\t\t\tcacheWrite: usage.cost.cacheWrite,\n\t\t\ttotal: usage.cost.total,\n\t\t},\n\t};\n}\n\nfunction createOuterMessage(message: AssistantMessage): AssistantMessage {\n\treturn {\n\t\trole: \"assistant\",\n\t\tapi: message.api,\n\t\tprovider: message.provider,\n\t\tmodel: message.model,\n\t\tresponseId: message.responseId,\n\t\tcontent: [],\n\t\tusage: cloneUsage(message.usage),\n\t\tstopReason: message.stopReason,\n\t\terrorMessage: message.errorMessage,\n\t\ttimestamp: message.timestamp,\n\t};\n}\n\nfunction syncOuterMetadata(target: AssistantMessage, source: AssistantMessage): void {\n\ttarget.api = source.api;\n\ttarget.provider = source.provider;\n\ttarget.model = source.model;\n\ttarget.responseId = source.responseId;\n\ttarget.usage = cloneUsage(source.usage);\n\ttarget.stopReason = source.stopReason;\n\ttarget.errorMessage = source.errorMessage;\n\ttarget.timestamp = source.timestamp;\n}\n\nfunction pushParserEvent(\n\tparserEvent: StreamParserEvent,\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n): void {\n\tswitch (parserEvent.type) {\n\t\tcase \"text\": {\n\t\t\tif (currentInnerTextIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet textBlockIndex = textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null;\n\t\t\tif (textBlockIndex == null) {\n\t\t\t\ttextBlockIndex = outerMessage.content.length;\n\t\t\t\touterMessage.content.push({ type: \"text\", text: parserEvent.text });\n\t\t\t\ttextBlockIndexByInnerIndex.set(currentInnerTextIndex, textBlockIndex);\n\t\t\t} else {\n\t\t\t\tconst block = outerMessage.content[textBlockIndex];\n\t\t\t\tif (block?.type !== \"text\") {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tblock.text += parserEvent.text;\n\t\t\t}\n\n\t\t\touterStream.push({\n\t\t\t\ttype: \"text_delta\",\n\t\t\t\tcontentIndex: textBlockIndex,\n\t\t\t\tdelta: parserEvent.text,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_start\": {\n\t\t\tconst contentIndex = outerMessage.content.length;\n\t\t\tconst toolCall: PartialToolCall = {\n\t\t\t\ttype: \"toolCall\",\n\t\t\t\tid: parserEvent.id,\n\t\t\t\tname: parserEvent.name,\n\t\t\t\targuments: {},\n\t\t\t\tpartialJson: \"\",\n\t\t\t};\n\t\t\touterMessage.content.push(toolCall);\n\t\t\ttoolCallIndexByParserIndex.set(parserEvent.index, contentIndex);\n\t\t\tif (currentInnerTextIndex != null) {\n\t\t\t\ttextBlockIndexByInnerIndex.set(currentInnerTextIndex, null);\n\t\t\t}\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\tcontentIndex,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_delta\": {\n\t\t\tconst contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);\n\t\t\tif (contentIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\tif (!isPartialToolCall(block)) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tblock.partialJson += parserEvent.argumentsDelta;\n\t\t\tblock.arguments = parseStreamingJson<Record<string, unknown>>(block.partialJson);\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_delta\",\n\t\t\t\tcontentIndex,\n\t\t\t\tdelta: parserEvent.argumentsDelta,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_end\": {\n\t\t\tconst contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);\n\t\t\tif (contentIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\tif (block?.type !== \"toolCall\") {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst finalToolCall: ToolCall = {\n\t\t\t\ttype: \"toolCall\",\n\t\t\t\tid: parserEvent.id,\n\t\t\t\tname: parserEvent.name,\n\t\t\t\targuments: parserEvent.arguments,\n\t\t\t};\n\t\t\touterMessage.content[contentIndex] = finalToolCall;\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_end\",\n\t\t\t\tcontentIndex,\n\t\t\t\ttoolCall: finalToolCall,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t}\n\t}\n}\n\nfunction processParserEvents(\n\tparserEvents: StreamParserEvent[],\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n): boolean {\n\tlet emittedToolCall = false;\n\tfor (const parserEvent of parserEvents) {\n\t\tif (\n\t\t\tparserEvent.type === \"toolcall_start\" ||\n\t\t\tparserEvent.type === \"toolcall_delta\" ||\n\t\t\tparserEvent.type === \"toolcall_end\"\n\t\t) {\n\t\t\temittedToolCall = true;\n\t\t}\n\n\t\tpushParserEvent(\n\t\t\tparserEvent,\n\t\t\touterStream,\n\t\t\touterMessage,\n\t\t\ttextBlockIndexByInnerIndex,\n\t\t\ttoolCallIndexByParserIndex,\n\t\t\tcurrentInnerTextIndex,\n\t\t);\n\t}\n\treturn emittedToolCall;\n}\n\nfunction finalizeMessage(\n\touterMessage: AssistantMessage,\n\tdoneMessage: AssistantMessage,\n\tsawToolCall: boolean,\n): AssistantMessage {\n\tconst finalMessage: AssistantMessage = {\n\t\t...createOuterMessage(doneMessage),\n\t\tcontent: outerMessage.content,\n\t};\n\n\tif (sawToolCall && finalMessage.stopReason === \"stop\") {\n\t\tfinalMessage.stopReason = \"toolUse\";\n\t}\n\n\treturn finalMessage;\n}\n\nfunction hasCompletedToolCallContent(message: AssistantMessage): boolean {\n\treturn message.content.some((block) => block.type === \"toolCall\");\n}\n\nfunction finalizePendingTextBlock(\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\tparser: ReturnType<ToolCallProtocol[\"createStreamParser\"]>,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n\tsawToolCall: boolean,\n): { currentInnerTextIndex: null; sawToolCall: boolean } {\n\tconst nextSawToolCall =\n\t\tprocessParserEvents(\n\t\t\tparser.finish(),\n\t\t\touterStream,\n\t\t\touterMessage,\n\t\t\ttextBlockIndexByInnerIndex,\n\t\t\ttoolCallIndexByParserIndex,\n\t\t\tcurrentInnerTextIndex,\n\t\t) || sawToolCall;\n\n\tconst outerContentIndex =\n\t\tcurrentInnerTextIndex == null ? null : (textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null);\n\tif (outerContentIndex != null) {\n\t\tconst outerBlock = outerMessage.content[outerContentIndex];\n\t\tif (outerBlock?.type === \"text\") {\n\t\t\touterStream.push({\n\t\t\t\ttype: \"text_end\",\n\t\t\t\tcontentIndex: outerContentIndex,\n\t\t\t\tcontent: outerBlock.text,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t}\n\t}\n\n\treturn {\n\t\tcurrentInnerTextIndex: null,\n\t\tsawToolCall: nextSawToolCall,\n\t};\n}\n\nexport function wrapStreamWithToolCallMiddleware(\n\tinnerStream: AssistantMessageEventStream,\n\tprotocol: ToolCallProtocol,\n\ttools: Tool[],\n): AssistantMessageEventStream {\n\tconst outerStream = new AssistantMessageEventStreamImpl();\n\tconst parser = protocol.createStreamParser(tools);\n\n\tvoid (async (): Promise<void> => {\n\t\tlet outerMessage: AssistantMessage | null = null;\n\t\tlet currentInnerTextIndex: number | null = null;\n\t\tlet sawToolCall = false;\n\t\tconst textBlockIndexByInnerIndex = new Map<number, number | null>();\n\t\tconst thinkingBlockIndexByInnerIndex = new Map<number, number>();\n\t\tconst toolCallIndexByParserIndex = new Map<number, number>();\n\n\t\ttry {\n\t\t\tfor await (const event of innerStream) {\n\t\t\t\tswitch (event.type) {\n\t\t\t\t\tcase \"start\": {\n\t\t\t\t\t\touterMessage = createOuterMessage(event.partial);\n\t\t\t\t\t\touterStream.push({ type: \"start\", partial: outerMessage });\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_start\": {\n\t\t\t\t\t\tif (outerMessage) {\n\t\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcurrentInnerTextIndex = event.contentIndex;\n\t\t\t\t\t\ttextBlockIndexByInnerIndex.set(event.contentIndex, null);\n\t\t\t\t\t\tif (outerMessage) {\n\t\t\t\t\t\t\touterStream.push({ ...event, partial: outerMessage });\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_delta\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tsawToolCall =\n\t\t\t\t\t\t\tprocessParserEvents(\n\t\t\t\t\t\t\t\tparser.feed(event.delta),\n\t\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\t) || sawToolCall;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_end\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\t({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(\n\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\tparser,\n\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\tsawToolCall,\n\t\t\t\t\t\t));\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_start\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = outerMessage.content.length;\n\t\t\t\t\t\tconst thinkingBlock: ThinkingContent = { type: \"thinking\", thinking: \"\" };\n\t\t\t\t\t\touterMessage.content.push(thinkingBlock);\n\t\t\t\t\t\tthinkingBlockIndexByInnerIndex.set(event.contentIndex, contentIndex);\n\t\t\t\t\t\touterStream.push({ type: \"thinking_start\", contentIndex, partial: outerMessage });\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_delta\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);\n\t\t\t\t\t\tif (contentIndex == null) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\t\t\t\tif (block?.type !== \"thinking\") {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tblock.thinking += event.delta;\n\t\t\t\t\t\touterStream.push({\n\t\t\t\t\t\t\ttype: \"thinking_delta\",\n\t\t\t\t\t\t\tcontentIndex,\n\t\t\t\t\t\t\tdelta: event.delta,\n\t\t\t\t\t\t\tpartial: outerMessage,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_end\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);\n\t\t\t\t\t\tif (contentIndex == null) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\t\t\t\tif (block?.type !== \"thinking\") {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tblock.thinking = event.content;\n\t\t\t\t\t\touterStream.push({\n\t\t\t\t\t\t\ttype: \"thinking_end\",\n\t\t\t\t\t\t\tcontentIndex,\n\t\t\t\t\t\t\tcontent: event.content,\n\t\t\t\t\t\t\tpartial: outerMessage,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"done\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\touterMessage = createOuterMessage(event.message);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst finalMessage = finalizeMessage(outerMessage, event.message, sawToolCall);\n\t\t\t\t\t\tconst finalReason = sawToolCall && event.reason === \"stop\" ? \"toolUse\" : event.reason;\n\t\t\t\t\t\touterStream.push({ type: \"done\", reason: finalReason, message: finalMessage });\n\t\t\t\t\t\touterStream.end();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"error\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\touterStream.push(event);\n\t\t\t\t\t\t\touterStream.end(event.error);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.error);\n\t\t\t\t\t\tif (currentInnerTextIndex != null) {\n\t\t\t\t\t\t\t({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(\n\t\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\t\tparser,\n\t\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\t\tsawToolCall,\n\t\t\t\t\t\t\t));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tconst finalErrorMessage = finalizeMessage(outerMessage, event.error, sawToolCall);\n\t\t\t\t\t\tif (sawToolCall && hasCompletedToolCallContent(finalErrorMessage)) {\n\t\t\t\t\t\t\tconst recoveredMessage: AssistantMessage = {\n\t\t\t\t\t\t\t\t...finalErrorMessage,\n\t\t\t\t\t\t\t\tstopReason: \"toolUse\",\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\touterStream.push({ type: \"done\", reason: \"toolUse\", message: recoveredMessage });\n\t\t\t\t\t\t\touterStream.end(recoveredMessage);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t\touterStream.push({ type: \"error\", reason: event.reason, error: finalErrorMessage });\n\t\t\t\t\t\touterStream.end(finalErrorMessage);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tconst finalInnerMessage = await innerStream.result();\n\t\t\tif (!outerMessage) {\n\t\t\t\touterMessage = createOuterMessage(finalInnerMessage);\n\t\t\t}\n\t\t\touterStream.end(finalizeMessage(outerMessage, finalInnerMessage, sawToolCall));\n\t\t} catch (error) {\n\t\t\tconst fallbackMessage = outerMessage ?? createOuterMessage(await innerStream.result());\n\t\t\tfallbackMessage.stopReason = \"error\";\n\t\t\tfallbackMessage.errorMessage = error instanceof Error ? error.message : JSON.stringify(error);\n\t\t\touterStream.push({ type: \"error\", reason: \"error\", error: fallbackMessage });\n\t\t\touterStream.end();\n\t\t}\n\t})();\n\n\treturn outerStream;\n}\n"]}
|
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
import { AssistantMessageEventStream as AssistantMessageEventStreamImpl } from "../utils/event-stream.js";
|
|
2
|
+
import { parseStreamingJson } from "../utils/json-parse.js";
|
|
3
|
+
function isPartialToolCall(block) {
|
|
4
|
+
return block?.type === "toolCall" && typeof block.partialJson === "string";
|
|
5
|
+
}
|
|
6
|
+
function cloneUsage(usage) {
|
|
7
|
+
return {
|
|
8
|
+
input: usage.input,
|
|
9
|
+
output: usage.output,
|
|
10
|
+
cacheRead: usage.cacheRead,
|
|
11
|
+
cacheWrite: usage.cacheWrite,
|
|
12
|
+
totalTokens: usage.totalTokens,
|
|
13
|
+
cost: {
|
|
14
|
+
input: usage.cost.input,
|
|
15
|
+
output: usage.cost.output,
|
|
16
|
+
cacheRead: usage.cost.cacheRead,
|
|
17
|
+
cacheWrite: usage.cost.cacheWrite,
|
|
18
|
+
total: usage.cost.total,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function createOuterMessage(message) {
|
|
23
|
+
return {
|
|
24
|
+
role: "assistant",
|
|
25
|
+
api: message.api,
|
|
26
|
+
provider: message.provider,
|
|
27
|
+
model: message.model,
|
|
28
|
+
responseId: message.responseId,
|
|
29
|
+
content: [],
|
|
30
|
+
usage: cloneUsage(message.usage),
|
|
31
|
+
stopReason: message.stopReason,
|
|
32
|
+
errorMessage: message.errorMessage,
|
|
33
|
+
timestamp: message.timestamp,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
function syncOuterMetadata(target, source) {
|
|
37
|
+
target.api = source.api;
|
|
38
|
+
target.provider = source.provider;
|
|
39
|
+
target.model = source.model;
|
|
40
|
+
target.responseId = source.responseId;
|
|
41
|
+
target.usage = cloneUsage(source.usage);
|
|
42
|
+
target.stopReason = source.stopReason;
|
|
43
|
+
target.errorMessage = source.errorMessage;
|
|
44
|
+
target.timestamp = source.timestamp;
|
|
45
|
+
}
|
|
46
|
+
function pushParserEvent(parserEvent, outerStream, outerMessage, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex) {
|
|
47
|
+
switch (parserEvent.type) {
|
|
48
|
+
case "text": {
|
|
49
|
+
if (currentInnerTextIndex == null) {
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
let textBlockIndex = textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null;
|
|
53
|
+
if (textBlockIndex == null) {
|
|
54
|
+
textBlockIndex = outerMessage.content.length;
|
|
55
|
+
outerMessage.content.push({ type: "text", text: parserEvent.text });
|
|
56
|
+
textBlockIndexByInnerIndex.set(currentInnerTextIndex, textBlockIndex);
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
const block = outerMessage.content[textBlockIndex];
|
|
60
|
+
if (block?.type !== "text") {
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
block.text += parserEvent.text;
|
|
64
|
+
}
|
|
65
|
+
outerStream.push({
|
|
66
|
+
type: "text_delta",
|
|
67
|
+
contentIndex: textBlockIndex,
|
|
68
|
+
delta: parserEvent.text,
|
|
69
|
+
partial: outerMessage,
|
|
70
|
+
});
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
case "toolcall_start": {
|
|
74
|
+
const contentIndex = outerMessage.content.length;
|
|
75
|
+
const toolCall = {
|
|
76
|
+
type: "toolCall",
|
|
77
|
+
id: parserEvent.id,
|
|
78
|
+
name: parserEvent.name,
|
|
79
|
+
arguments: {},
|
|
80
|
+
partialJson: "",
|
|
81
|
+
};
|
|
82
|
+
outerMessage.content.push(toolCall);
|
|
83
|
+
toolCallIndexByParserIndex.set(parserEvent.index, contentIndex);
|
|
84
|
+
if (currentInnerTextIndex != null) {
|
|
85
|
+
textBlockIndexByInnerIndex.set(currentInnerTextIndex, null);
|
|
86
|
+
}
|
|
87
|
+
outerStream.push({
|
|
88
|
+
type: "toolcall_start",
|
|
89
|
+
contentIndex,
|
|
90
|
+
partial: outerMessage,
|
|
91
|
+
});
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
case "toolcall_delta": {
|
|
95
|
+
const contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);
|
|
96
|
+
if (contentIndex == null) {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
const block = outerMessage.content[contentIndex];
|
|
100
|
+
if (!isPartialToolCall(block)) {
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
block.partialJson += parserEvent.argumentsDelta;
|
|
104
|
+
block.arguments = parseStreamingJson(block.partialJson);
|
|
105
|
+
outerStream.push({
|
|
106
|
+
type: "toolcall_delta",
|
|
107
|
+
contentIndex,
|
|
108
|
+
delta: parserEvent.argumentsDelta,
|
|
109
|
+
partial: outerMessage,
|
|
110
|
+
});
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
case "toolcall_end": {
|
|
114
|
+
const contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);
|
|
115
|
+
if (contentIndex == null) {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
const block = outerMessage.content[contentIndex];
|
|
119
|
+
if (block?.type !== "toolCall") {
|
|
120
|
+
return;
|
|
121
|
+
}
|
|
122
|
+
const finalToolCall = {
|
|
123
|
+
type: "toolCall",
|
|
124
|
+
id: parserEvent.id,
|
|
125
|
+
name: parserEvent.name,
|
|
126
|
+
arguments: parserEvent.arguments,
|
|
127
|
+
};
|
|
128
|
+
outerMessage.content[contentIndex] = finalToolCall;
|
|
129
|
+
outerStream.push({
|
|
130
|
+
type: "toolcall_end",
|
|
131
|
+
contentIndex,
|
|
132
|
+
toolCall: finalToolCall,
|
|
133
|
+
partial: outerMessage,
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
function processParserEvents(parserEvents, outerStream, outerMessage, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex) {
|
|
139
|
+
let emittedToolCall = false;
|
|
140
|
+
for (const parserEvent of parserEvents) {
|
|
141
|
+
if (parserEvent.type === "toolcall_start" ||
|
|
142
|
+
parserEvent.type === "toolcall_delta" ||
|
|
143
|
+
parserEvent.type === "toolcall_end") {
|
|
144
|
+
emittedToolCall = true;
|
|
145
|
+
}
|
|
146
|
+
pushParserEvent(parserEvent, outerStream, outerMessage, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex);
|
|
147
|
+
}
|
|
148
|
+
return emittedToolCall;
|
|
149
|
+
}
|
|
150
|
+
function finalizeMessage(outerMessage, doneMessage, sawToolCall) {
|
|
151
|
+
const finalMessage = {
|
|
152
|
+
...createOuterMessage(doneMessage),
|
|
153
|
+
content: outerMessage.content,
|
|
154
|
+
};
|
|
155
|
+
if (sawToolCall && finalMessage.stopReason === "stop") {
|
|
156
|
+
finalMessage.stopReason = "toolUse";
|
|
157
|
+
}
|
|
158
|
+
return finalMessage;
|
|
159
|
+
}
|
|
160
|
+
function hasCompletedToolCallContent(message) {
|
|
161
|
+
return message.content.some((block) => block.type === "toolCall");
|
|
162
|
+
}
|
|
163
|
+
function finalizePendingTextBlock(outerStream, outerMessage, parser, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex, sawToolCall) {
|
|
164
|
+
const nextSawToolCall = processParserEvents(parser.finish(), outerStream, outerMessage, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex) || sawToolCall;
|
|
165
|
+
const outerContentIndex = currentInnerTextIndex == null ? null : (textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null);
|
|
166
|
+
if (outerContentIndex != null) {
|
|
167
|
+
const outerBlock = outerMessage.content[outerContentIndex];
|
|
168
|
+
if (outerBlock?.type === "text") {
|
|
169
|
+
outerStream.push({
|
|
170
|
+
type: "text_end",
|
|
171
|
+
contentIndex: outerContentIndex,
|
|
172
|
+
content: outerBlock.text,
|
|
173
|
+
partial: outerMessage,
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
return {
|
|
178
|
+
currentInnerTextIndex: null,
|
|
179
|
+
sawToolCall: nextSawToolCall,
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
export function wrapStreamWithToolCallMiddleware(innerStream, protocol, tools) {
|
|
183
|
+
const outerStream = new AssistantMessageEventStreamImpl();
|
|
184
|
+
const parser = protocol.createStreamParser(tools);
|
|
185
|
+
void (async () => {
|
|
186
|
+
let outerMessage = null;
|
|
187
|
+
let currentInnerTextIndex = null;
|
|
188
|
+
let sawToolCall = false;
|
|
189
|
+
const textBlockIndexByInnerIndex = new Map();
|
|
190
|
+
const thinkingBlockIndexByInnerIndex = new Map();
|
|
191
|
+
const toolCallIndexByParserIndex = new Map();
|
|
192
|
+
try {
|
|
193
|
+
for await (const event of innerStream) {
|
|
194
|
+
switch (event.type) {
|
|
195
|
+
case "start": {
|
|
196
|
+
outerMessage = createOuterMessage(event.partial);
|
|
197
|
+
outerStream.push({ type: "start", partial: outerMessage });
|
|
198
|
+
break;
|
|
199
|
+
}
|
|
200
|
+
case "text_start": {
|
|
201
|
+
if (outerMessage) {
|
|
202
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
203
|
+
}
|
|
204
|
+
currentInnerTextIndex = event.contentIndex;
|
|
205
|
+
textBlockIndexByInnerIndex.set(event.contentIndex, null);
|
|
206
|
+
if (outerMessage) {
|
|
207
|
+
outerStream.push({ ...event, partial: outerMessage });
|
|
208
|
+
}
|
|
209
|
+
break;
|
|
210
|
+
}
|
|
211
|
+
case "text_delta": {
|
|
212
|
+
if (!outerMessage) {
|
|
213
|
+
break;
|
|
214
|
+
}
|
|
215
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
216
|
+
sawToolCall =
|
|
217
|
+
processParserEvents(parser.feed(event.delta), outerStream, outerMessage, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex) || sawToolCall;
|
|
218
|
+
break;
|
|
219
|
+
}
|
|
220
|
+
case "text_end": {
|
|
221
|
+
if (!outerMessage) {
|
|
222
|
+
break;
|
|
223
|
+
}
|
|
224
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
225
|
+
({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(outerStream, outerMessage, parser, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex, sawToolCall));
|
|
226
|
+
break;
|
|
227
|
+
}
|
|
228
|
+
case "thinking_start": {
|
|
229
|
+
if (!outerMessage) {
|
|
230
|
+
break;
|
|
231
|
+
}
|
|
232
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
233
|
+
const contentIndex = outerMessage.content.length;
|
|
234
|
+
const thinkingBlock = { type: "thinking", thinking: "" };
|
|
235
|
+
outerMessage.content.push(thinkingBlock);
|
|
236
|
+
thinkingBlockIndexByInnerIndex.set(event.contentIndex, contentIndex);
|
|
237
|
+
outerStream.push({ type: "thinking_start", contentIndex, partial: outerMessage });
|
|
238
|
+
break;
|
|
239
|
+
}
|
|
240
|
+
case "thinking_delta": {
|
|
241
|
+
if (!outerMessage) {
|
|
242
|
+
break;
|
|
243
|
+
}
|
|
244
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
245
|
+
const contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);
|
|
246
|
+
if (contentIndex == null) {
|
|
247
|
+
break;
|
|
248
|
+
}
|
|
249
|
+
const block = outerMessage.content[contentIndex];
|
|
250
|
+
if (block?.type !== "thinking") {
|
|
251
|
+
break;
|
|
252
|
+
}
|
|
253
|
+
block.thinking += event.delta;
|
|
254
|
+
outerStream.push({
|
|
255
|
+
type: "thinking_delta",
|
|
256
|
+
contentIndex,
|
|
257
|
+
delta: event.delta,
|
|
258
|
+
partial: outerMessage,
|
|
259
|
+
});
|
|
260
|
+
break;
|
|
261
|
+
}
|
|
262
|
+
case "thinking_end": {
|
|
263
|
+
if (!outerMessage) {
|
|
264
|
+
break;
|
|
265
|
+
}
|
|
266
|
+
syncOuterMetadata(outerMessage, event.partial);
|
|
267
|
+
const contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);
|
|
268
|
+
if (contentIndex == null) {
|
|
269
|
+
break;
|
|
270
|
+
}
|
|
271
|
+
const block = outerMessage.content[contentIndex];
|
|
272
|
+
if (block?.type !== "thinking") {
|
|
273
|
+
break;
|
|
274
|
+
}
|
|
275
|
+
block.thinking = event.content;
|
|
276
|
+
outerStream.push({
|
|
277
|
+
type: "thinking_end",
|
|
278
|
+
contentIndex,
|
|
279
|
+
content: event.content,
|
|
280
|
+
partial: outerMessage,
|
|
281
|
+
});
|
|
282
|
+
break;
|
|
283
|
+
}
|
|
284
|
+
case "done": {
|
|
285
|
+
if (!outerMessage) {
|
|
286
|
+
outerMessage = createOuterMessage(event.message);
|
|
287
|
+
}
|
|
288
|
+
const finalMessage = finalizeMessage(outerMessage, event.message, sawToolCall);
|
|
289
|
+
const finalReason = sawToolCall && event.reason === "stop" ? "toolUse" : event.reason;
|
|
290
|
+
outerStream.push({ type: "done", reason: finalReason, message: finalMessage });
|
|
291
|
+
outerStream.end();
|
|
292
|
+
return;
|
|
293
|
+
}
|
|
294
|
+
case "error": {
|
|
295
|
+
if (!outerMessage) {
|
|
296
|
+
outerStream.push(event);
|
|
297
|
+
outerStream.end(event.error);
|
|
298
|
+
return;
|
|
299
|
+
}
|
|
300
|
+
syncOuterMetadata(outerMessage, event.error);
|
|
301
|
+
if (currentInnerTextIndex != null) {
|
|
302
|
+
({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(outerStream, outerMessage, parser, textBlockIndexByInnerIndex, toolCallIndexByParserIndex, currentInnerTextIndex, sawToolCall));
|
|
303
|
+
}
|
|
304
|
+
const finalErrorMessage = finalizeMessage(outerMessage, event.error, sawToolCall);
|
|
305
|
+
if (sawToolCall && hasCompletedToolCallContent(finalErrorMessage)) {
|
|
306
|
+
const recoveredMessage = {
|
|
307
|
+
...finalErrorMessage,
|
|
308
|
+
stopReason: "toolUse",
|
|
309
|
+
};
|
|
310
|
+
outerStream.push({ type: "done", reason: "toolUse", message: recoveredMessage });
|
|
311
|
+
outerStream.end(recoveredMessage);
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
outerStream.push({ type: "error", reason: event.reason, error: finalErrorMessage });
|
|
315
|
+
outerStream.end(finalErrorMessage);
|
|
316
|
+
return;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
const finalInnerMessage = await innerStream.result();
|
|
321
|
+
if (!outerMessage) {
|
|
322
|
+
outerMessage = createOuterMessage(finalInnerMessage);
|
|
323
|
+
}
|
|
324
|
+
outerStream.end(finalizeMessage(outerMessage, finalInnerMessage, sawToolCall));
|
|
325
|
+
}
|
|
326
|
+
catch (error) {
|
|
327
|
+
const fallbackMessage = outerMessage ?? createOuterMessage(await innerStream.result());
|
|
328
|
+
fallbackMessage.stopReason = "error";
|
|
329
|
+
fallbackMessage.errorMessage = error instanceof Error ? error.message : JSON.stringify(error);
|
|
330
|
+
outerStream.push({ type: "error", reason: "error", error: fallbackMessage });
|
|
331
|
+
outerStream.end();
|
|
332
|
+
}
|
|
333
|
+
})();
|
|
334
|
+
return outerStream;
|
|
335
|
+
}
|
|
336
|
+
//# sourceMappingURL=stream-wrapper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stream-wrapper.js","sourceRoot":"","sources":["../../src/tool-call-middleware/stream-wrapper.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,2BAA2B,IAAI,+BAA+B,EAAE,MAAM,0BAA0B,CAAC;AAC1G,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAO5D,SAAS,iBAAiB,CAAC,KAAsD,EAA4B;IAC5G,OAAO,KAAK,EAAE,IAAI,KAAK,UAAU,IAAI,OAAQ,KAAyB,CAAC,WAAW,KAAK,QAAQ,CAAC;AAAA,CAChG;AAED,SAAS,UAAU,CAAC,KAAY,EAAS;IACxC,OAAO;QACN,KAAK,EAAE,KAAK,CAAC,KAAK;QAClB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,SAAS,EAAE,KAAK,CAAC,SAAS;QAC1B,UAAU,EAAE,KAAK,CAAC,UAAU;QAC5B,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,IAAI,EAAE;YACL,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK;YACvB,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM;YACzB,SAAS,EAAE,KAAK,CAAC,IAAI,CAAC,SAAS;YAC/B,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,UAAU;YACjC,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK;SACvB;KACD,CAAC;AAAA,CACF;AAED,SAAS,kBAAkB,CAAC,OAAyB,EAAoB;IACxE,OAAO;QACN,IAAI,EAAE,WAAW;QACjB,GAAG,EAAE,OAAO,CAAC,GAAG;QAChB,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,UAAU,EAAE,OAAO,CAAC,UAAU;QAC9B,OAAO,EAAE,EAAE;QACX,KAAK,EAAE,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC;QAChC,UAAU,EAAE,OAAO,CAAC,UAAU;QAC9B,YAAY,EAAE,OAAO,CAAC,YAAY;QAClC,SAAS,EAAE,OAAO,CAAC,SAAS;KAC5B,CAAC;AAAA,CACF;AAED,SAAS,iBAAiB,CAAC,MAAwB,EAAE,MAAwB,EAAQ;IACpF,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;IACxB,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;IAClC,MAAM,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;IAC5B,MAAM,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IACtC,MAAM,CAAC,KAAK,GAAG,UAAU,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACxC,MAAM,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IACtC,MAAM,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;IAC1C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;AAAA,CACpC;AAED,SAAS,eAAe,CACvB,WAA8B,EAC9B,WAAwC,EACxC,YAA8B,EAC9B,0BAAsD,EACtD,0BAA+C,EAC/C,qBAAoC,EAC7B;IACP,QAAQ,WAAW,CAAC,IAAI,EAAE,CAAC;QAC1B,KAAK,MAAM,EAAE,CAAC;YACb,IAAI,qBAAqB,IAAI,IAAI,EAAE,CAAC;gBACnC,OAAO;YACR,CAAC;YAED,IAAI,cAAc,GAAG,0BAA0B,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,IAAI,CAAC;YACnF,IAAI,cAAc,IAAI,IAAI,EAAE,CAAC;gBAC5B,cAAc,GAAG,YAAY,CAAC,OAAO,CAAC,MAAM,CAAC;gBAC7C,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,WAAW,CAAC,IAAI,EAAE,CAAC,CAAC;gBACpE,0BAA0B,CAAC,GAAG,CAAC,qBAAqB,EAAE,cAAc,CAAC,CAAC;YACvE,CAAC;iBAAM,CAAC;gBACP,MAAM,KAAK,GAAG,YAAY,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;gBACnD,IAAI,KAAK,EAAE,IAAI,KAAK,MAAM,EAAE,CAAC;oBAC5B,OAAO;gBACR,CAAC;gBACD,KAAK,CAAC,IAAI,IAAI,WAAW,CAAC,IAAI,CAAC;YAChC,CAAC;YAED,WAAW,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,YAAY;gBAClB,YAAY,EAAE,cAAc;gBAC5B,KAAK,EAAE,WAAW,CAAC,IAAI;gBACvB,OAAO,EAAE,YAAY;aACrB,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,KAAK,gBAAgB,EAAE,CAAC;YACvB,MAAM,YAAY,GAAG,YAAY,CAAC,OAAO,CAAC,MAAM,CAAC;YACjD,MAAM,QAAQ,GAAoB;gBACjC,IAAI,EAAE,UAAU;gBAChB,EAAE,EAAE,WAAW,CAAC,EAAE;gBAClB,IAAI,EAAE,WAAW,CAAC,IAAI;gBACtB,SAAS,EAAE,EAAE;gBACb,WAAW,EAAE,EAAE;aACf,CAAC;YACF,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YACpC,0BAA0B,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;YAChE,IAAI,qBAAqB,IAAI,IAAI,EAAE,CAAC;gBACnC,0BAA0B,CAAC,GAAG,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC;YAC7D,CAAC;YACD,WAAW,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,gBAAgB;gBACtB,YAAY;gBACZ,OAAO,EAAE,YAAY;aACrB,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,KAAK,gBAAgB,EAAE,CAAC;YACvB,MAAM,YAAY,GAAG,0BAA0B,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,YAAY,IAAI,IAAI,EAAE,CAAC;gBAC1B,OAAO;YACR,CAAC;YAED,MAAM,KAAK,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACjD,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC/B,OAAO;YACR,CAAC;YAED,KAAK,CAAC,WAAW,IAAI,WAAW,CAAC,cAAc,CAAC;YAChD,KAAK,CAAC,SAAS,GAAG,kBAAkB,CAA0B,KAAK,CAAC,WAAW,CAAC,CAAC;YACjF,WAAW,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,gBAAgB;gBACtB,YAAY;gBACZ,KAAK,EAAE,WAAW,CAAC,cAAc;gBACjC,OAAO,EAAE,YAAY;aACrB,CAAC,CAAC;YACH,OAAO;QACR,CAAC;QACD,KAAK,cAAc,EAAE,CAAC;YACrB,MAAM,YAAY,GAAG,0BAA0B,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;YACvE,IAAI,YAAY,IAAI,IAAI,EAAE,CAAC;gBAC1B,OAAO;YACR,CAAC;YAED,MAAM,KAAK,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACjD,IAAI,KAAK,EAAE,IAAI,KAAK,UAAU,EAAE,CAAC;gBAChC,OAAO;YACR,CAAC;YAED,MAAM,aAAa,GAAa;gBAC/B,IAAI,EAAE,UAAU;gBAChB,EAAE,EAAE,WAAW,CAAC,EAAE;gBAClB,IAAI,EAAE,WAAW,CAAC,IAAI;gBACtB,SAAS,EAAE,WAAW,CAAC,SAAS;aAChC,CAAC;YACF,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,aAAa,CAAC;YACnD,WAAW,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,cAAc;gBACpB,YAAY;gBACZ,QAAQ,EAAE,aAAa;gBACvB,OAAO,EAAE,YAAY;aACrB,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;AAAA,CACD;AAED,SAAS,mBAAmB,CAC3B,YAAiC,EACjC,WAAwC,EACxC,YAA8B,EAC9B,0BAAsD,EACtD,0BAA+C,EAC/C,qBAAoC,EAC1B;IACV,IAAI,eAAe,GAAG,KAAK,CAAC;IAC5B,KAAK,MAAM,WAAW,IAAI,YAAY,EAAE,CAAC;QACxC,IACC,WAAW,CAAC,IAAI,KAAK,gBAAgB;YACrC,WAAW,CAAC,IAAI,KAAK,gBAAgB;YACrC,WAAW,CAAC,IAAI,KAAK,cAAc,EAClC,CAAC;YACF,eAAe,GAAG,IAAI,CAAC;QACxB,CAAC;QAED,eAAe,CACd,WAAW,EACX,WAAW,EACX,YAAY,EACZ,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,CACrB,CAAC;IACH,CAAC;IACD,OAAO,eAAe,CAAC;AAAA,CACvB;AAED,SAAS,eAAe,CACvB,YAA8B,EAC9B,WAA6B,EAC7B,WAAoB,EACD;IACnB,MAAM,YAAY,GAAqB;QACtC,GAAG,kBAAkB,CAAC,WAAW,CAAC;QAClC,OAAO,EAAE,YAAY,CAAC,OAAO;KAC7B,CAAC;IAEF,IAAI,WAAW,IAAI,YAAY,CAAC,UAAU,KAAK,MAAM,EAAE,CAAC;QACvD,YAAY,CAAC,UAAU,GAAG,SAAS,CAAC;IACrC,CAAC;IAED,OAAO,YAAY,CAAC;AAAA,CACpB;AAED,SAAS,2BAA2B,CAAC,OAAyB,EAAW;IACxE,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,KAAK,UAAU,CAAC,CAAC;AAAA,CAClE;AAED,SAAS,wBAAwB,CAChC,WAAwC,EACxC,YAA8B,EAC9B,MAA0D,EAC1D,0BAAsD,EACtD,0BAA+C,EAC/C,qBAAoC,EACpC,WAAoB,EACoC;IACxD,MAAM,eAAe,GACpB,mBAAmB,CAClB,MAAM,CAAC,MAAM,EAAE,EACf,WAAW,EACX,YAAY,EACZ,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,CACrB,IAAI,WAAW,CAAC;IAElB,MAAM,iBAAiB,GACtB,qBAAqB,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,0BAA0B,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,IAAI,CAAC,CAAC;IACxG,IAAI,iBAAiB,IAAI,IAAI,EAAE,CAAC;QAC/B,MAAM,UAAU,GAAG,YAAY,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC;QAC3D,IAAI,UAAU,EAAE,IAAI,KAAK,MAAM,EAAE,CAAC;YACjC,WAAW,CAAC,IAAI,CAAC;gBAChB,IAAI,EAAE,UAAU;gBAChB,YAAY,EAAE,iBAAiB;gBAC/B,OAAO,EAAE,UAAU,CAAC,IAAI;gBACxB,OAAO,EAAE,YAAY;aACrB,CAAC,CAAC;QACJ,CAAC;IACF,CAAC;IAED,OAAO;QACN,qBAAqB,EAAE,IAAI;QAC3B,WAAW,EAAE,eAAe;KAC5B,CAAC;AAAA,CACF;AAED,MAAM,UAAU,gCAAgC,CAC/C,WAAwC,EACxC,QAA0B,EAC1B,KAAa,EACiB;IAC9B,MAAM,WAAW,GAAG,IAAI,+BAA+B,EAAE,CAAC;IAC1D,MAAM,MAAM,GAAG,QAAQ,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;IAElD,KAAK,CAAC,KAAK,IAAmB,EAAE,CAAC;QAChC,IAAI,YAAY,GAA4B,IAAI,CAAC;QACjD,IAAI,qBAAqB,GAAkB,IAAI,CAAC;QAChD,IAAI,WAAW,GAAG,KAAK,CAAC;QACxB,MAAM,0BAA0B,GAAG,IAAI,GAAG,EAAyB,CAAC;QACpE,MAAM,8BAA8B,GAAG,IAAI,GAAG,EAAkB,CAAC;QACjE,MAAM,0BAA0B,GAAG,IAAI,GAAG,EAAkB,CAAC;QAE7D,IAAI,CAAC;YACJ,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,WAAW,EAAE,CAAC;gBACvC,QAAQ,KAAK,CAAC,IAAI,EAAE,CAAC;oBACpB,KAAK,OAAO,EAAE,CAAC;wBACd,YAAY,GAAG,kBAAkB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBACjD,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,CAAC;wBAC3D,MAAM;oBACP,CAAC;oBACD,KAAK,YAAY,EAAE,CAAC;wBACnB,IAAI,YAAY,EAAE,CAAC;4BAClB,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAChD,CAAC;wBACD,qBAAqB,GAAG,KAAK,CAAC,YAAY,CAAC;wBAC3C,0BAA0B,CAAC,GAAG,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;wBACzD,IAAI,YAAY,EAAE,CAAC;4BAClB,WAAW,CAAC,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,CAAC;wBACvD,CAAC;wBACD,MAAM;oBACP,CAAC;oBACD,KAAK,YAAY,EAAE,CAAC;wBACnB,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,MAAM;wBACP,CAAC;wBACD,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC/C,WAAW;4BACV,mBAAmB,CAClB,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EACxB,WAAW,EACX,YAAY,EACZ,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,CACrB,IAAI,WAAW,CAAC;wBAClB,MAAM;oBACP,CAAC;oBACD,KAAK,UAAU,EAAE,CAAC;wBACjB,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,MAAM;wBACP,CAAC;wBACD,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC/C,CAAC,EAAE,qBAAqB,EAAE,WAAW,EAAE,GAAG,wBAAwB,CACjE,WAAW,EACX,YAAY,EACZ,MAAM,EACN,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,EACrB,WAAW,CACX,CAAC,CAAC;wBACH,MAAM;oBACP,CAAC;oBACD,KAAK,gBAAgB,EAAE,CAAC;wBACvB,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,MAAM;wBACP,CAAC;wBACD,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC/C,MAAM,YAAY,GAAG,YAAY,CAAC,OAAO,CAAC,MAAM,CAAC;wBACjD,MAAM,aAAa,GAAoB,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;wBAC1E,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;wBACzC,8BAA8B,CAAC,GAAG,CAAC,KAAK,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;wBACrE,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,YAAY,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,CAAC;wBAClF,MAAM;oBACP,CAAC;oBACD,KAAK,gBAAgB,EAAE,CAAC;wBACvB,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,MAAM;wBACP,CAAC;wBACD,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC/C,MAAM,YAAY,GAAG,8BAA8B,CAAC,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;wBAC5E,IAAI,YAAY,IAAI,IAAI,EAAE,CAAC;4BAC1B,MAAM;wBACP,CAAC;wBACD,MAAM,KAAK,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;wBACjD,IAAI,KAAK,EAAE,IAAI,KAAK,UAAU,EAAE,CAAC;4BAChC,MAAM;wBACP,CAAC;wBACD,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,KAAK,CAAC;wBAC9B,WAAW,CAAC,IAAI,CAAC;4BAChB,IAAI,EAAE,gBAAgB;4BACtB,YAAY;4BACZ,KAAK,EAAE,KAAK,CAAC,KAAK;4BAClB,OAAO,EAAE,YAAY;yBACrB,CAAC,CAAC;wBACH,MAAM;oBACP,CAAC;oBACD,KAAK,cAAc,EAAE,CAAC;wBACrB,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,MAAM;wBACP,CAAC;wBACD,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC/C,MAAM,YAAY,GAAG,8BAA8B,CAAC,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;wBAC5E,IAAI,YAAY,IAAI,IAAI,EAAE,CAAC;4BAC1B,MAAM;wBACP,CAAC;wBACD,MAAM,KAAK,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;wBACjD,IAAI,KAAK,EAAE,IAAI,KAAK,UAAU,EAAE,CAAC;4BAChC,MAAM;wBACP,CAAC;wBACD,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,OAAO,CAAC;wBAC/B,WAAW,CAAC,IAAI,CAAC;4BAChB,IAAI,EAAE,cAAc;4BACpB,YAAY;4BACZ,OAAO,EAAE,KAAK,CAAC,OAAO;4BACtB,OAAO,EAAE,YAAY;yBACrB,CAAC,CAAC;wBACH,MAAM;oBACP,CAAC;oBACD,KAAK,MAAM,EAAE,CAAC;wBACb,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,YAAY,GAAG,kBAAkB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBAClD,CAAC;wBACD,MAAM,YAAY,GAAG,eAAe,CAAC,YAAY,EAAE,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;wBAC/E,MAAM,WAAW,GAAG,WAAW,IAAI,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC;wBACtF,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,CAAC;wBAC/E,WAAW,CAAC,GAAG,EAAE,CAAC;wBAClB,OAAO;oBACR,CAAC;oBACD,KAAK,OAAO,EAAE,CAAC;wBACd,IAAI,CAAC,YAAY,EAAE,CAAC;4BACnB,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;4BACxB,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;4BAC7B,OAAO;wBACR,CAAC;wBAED,iBAAiB,CAAC,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC;wBAC7C,IAAI,qBAAqB,IAAI,IAAI,EAAE,CAAC;4BACnC,CAAC,EAAE,qBAAqB,EAAE,WAAW,EAAE,GAAG,wBAAwB,CACjE,WAAW,EACX,YAAY,EACZ,MAAM,EACN,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,EACrB,WAAW,CACX,CAAC,CAAC;wBACJ,CAAC;wBAED,MAAM,iBAAiB,GAAG,eAAe,CAAC,YAAY,EAAE,KAAK,CAAC,KAAK,EAAE,WAAW,CAAC,CAAC;wBAClF,IAAI,WAAW,IAAI,2BAA2B,CAAC,iBAAiB,CAAC,EAAE,CAAC;4BACnE,MAAM,gBAAgB,GAAqB;gCAC1C,GAAG,iBAAiB;gCACpB,UAAU,EAAE,SAAS;6BACrB,CAAC;4BACF,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,EAAE,gBAAgB,EAAE,CAAC,CAAC;4BACjF,WAAW,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;4BAClC,OAAO;wBACR,CAAC;wBACD,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,MAAM,EAAE,KAAK,EAAE,iBAAiB,EAAE,CAAC,CAAC;wBACpF,WAAW,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;wBACnC,OAAO;oBACR,CAAC;gBACF,CAAC;YACF,CAAC;YAED,MAAM,iBAAiB,GAAG,MAAM,WAAW,CAAC,MAAM,EAAE,CAAC;YACrD,IAAI,CAAC,YAAY,EAAE,CAAC;gBACnB,YAAY,GAAG,kBAAkB,CAAC,iBAAiB,CAAC,CAAC;YACtD,CAAC;YACD,WAAW,CAAC,GAAG,CAAC,eAAe,CAAC,YAAY,EAAE,iBAAiB,EAAE,WAAW,CAAC,CAAC,CAAC;QAChF,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YAChB,MAAM,eAAe,GAAG,YAAY,IAAI,kBAAkB,CAAC,MAAM,WAAW,CAAC,MAAM,EAAE,CAAC,CAAC;YACvF,eAAe,CAAC,UAAU,GAAG,OAAO,CAAC;YACrC,eAAe,CAAC,YAAY,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC9F,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,eAAe,EAAE,CAAC,CAAC;YAC7E,WAAW,CAAC,GAAG,EAAE,CAAC;QACnB,CAAC;IAAA,CACD,CAAC,EAAE,CAAC;IAEL,OAAO,WAAW,CAAC;AAAA,CACnB","sourcesContent":["import type {\n\tAssistantMessage,\n\tAssistantMessageEventStream,\n\tThinkingContent,\n\tTool,\n\tToolCall,\n\tUsage,\n} from \"../types.ts\";\nimport { AssistantMessageEventStream as AssistantMessageEventStreamImpl } from \"../utils/event-stream.ts\";\nimport { parseStreamingJson } from \"../utils/json-parse.ts\";\nimport type { StreamParserEvent, ToolCallProtocol } from \"./types.ts\";\n\ntype PartialToolCall = ToolCall & {\n\tpartialJson: string;\n};\n\nfunction isPartialToolCall(block: AssistantMessage[\"content\"][number] | undefined): block is PartialToolCall {\n\treturn block?.type === \"toolCall\" && typeof (block as PartialToolCall).partialJson === \"string\";\n}\n\nfunction cloneUsage(usage: Usage): Usage {\n\treturn {\n\t\tinput: usage.input,\n\t\toutput: usage.output,\n\t\tcacheRead: usage.cacheRead,\n\t\tcacheWrite: usage.cacheWrite,\n\t\ttotalTokens: usage.totalTokens,\n\t\tcost: {\n\t\t\tinput: usage.cost.input,\n\t\t\toutput: usage.cost.output,\n\t\t\tcacheRead: usage.cost.cacheRead,\n\t\t\tcacheWrite: usage.cost.cacheWrite,\n\t\t\ttotal: usage.cost.total,\n\t\t},\n\t};\n}\n\nfunction createOuterMessage(message: AssistantMessage): AssistantMessage {\n\treturn {\n\t\trole: \"assistant\",\n\t\tapi: message.api,\n\t\tprovider: message.provider,\n\t\tmodel: message.model,\n\t\tresponseId: message.responseId,\n\t\tcontent: [],\n\t\tusage: cloneUsage(message.usage),\n\t\tstopReason: message.stopReason,\n\t\terrorMessage: message.errorMessage,\n\t\ttimestamp: message.timestamp,\n\t};\n}\n\nfunction syncOuterMetadata(target: AssistantMessage, source: AssistantMessage): void {\n\ttarget.api = source.api;\n\ttarget.provider = source.provider;\n\ttarget.model = source.model;\n\ttarget.responseId = source.responseId;\n\ttarget.usage = cloneUsage(source.usage);\n\ttarget.stopReason = source.stopReason;\n\ttarget.errorMessage = source.errorMessage;\n\ttarget.timestamp = source.timestamp;\n}\n\nfunction pushParserEvent(\n\tparserEvent: StreamParserEvent,\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n): void {\n\tswitch (parserEvent.type) {\n\t\tcase \"text\": {\n\t\t\tif (currentInnerTextIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet textBlockIndex = textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null;\n\t\t\tif (textBlockIndex == null) {\n\t\t\t\ttextBlockIndex = outerMessage.content.length;\n\t\t\t\touterMessage.content.push({ type: \"text\", text: parserEvent.text });\n\t\t\t\ttextBlockIndexByInnerIndex.set(currentInnerTextIndex, textBlockIndex);\n\t\t\t} else {\n\t\t\t\tconst block = outerMessage.content[textBlockIndex];\n\t\t\t\tif (block?.type !== \"text\") {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tblock.text += parserEvent.text;\n\t\t\t}\n\n\t\t\touterStream.push({\n\t\t\t\ttype: \"text_delta\",\n\t\t\t\tcontentIndex: textBlockIndex,\n\t\t\t\tdelta: parserEvent.text,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_start\": {\n\t\t\tconst contentIndex = outerMessage.content.length;\n\t\t\tconst toolCall: PartialToolCall = {\n\t\t\t\ttype: \"toolCall\",\n\t\t\t\tid: parserEvent.id,\n\t\t\t\tname: parserEvent.name,\n\t\t\t\targuments: {},\n\t\t\t\tpartialJson: \"\",\n\t\t\t};\n\t\t\touterMessage.content.push(toolCall);\n\t\t\ttoolCallIndexByParserIndex.set(parserEvent.index, contentIndex);\n\t\t\tif (currentInnerTextIndex != null) {\n\t\t\t\ttextBlockIndexByInnerIndex.set(currentInnerTextIndex, null);\n\t\t\t}\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\tcontentIndex,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_delta\": {\n\t\t\tconst contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);\n\t\t\tif (contentIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\tif (!isPartialToolCall(block)) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tblock.partialJson += parserEvent.argumentsDelta;\n\t\t\tblock.arguments = parseStreamingJson<Record<string, unknown>>(block.partialJson);\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_delta\",\n\t\t\t\tcontentIndex,\n\t\t\t\tdelta: parserEvent.argumentsDelta,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tcase \"toolcall_end\": {\n\t\t\tconst contentIndex = toolCallIndexByParserIndex.get(parserEvent.index);\n\t\t\tif (contentIndex == null) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\tif (block?.type !== \"toolCall\") {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst finalToolCall: ToolCall = {\n\t\t\t\ttype: \"toolCall\",\n\t\t\t\tid: parserEvent.id,\n\t\t\t\tname: parserEvent.name,\n\t\t\t\targuments: parserEvent.arguments,\n\t\t\t};\n\t\t\touterMessage.content[contentIndex] = finalToolCall;\n\t\t\touterStream.push({\n\t\t\t\ttype: \"toolcall_end\",\n\t\t\t\tcontentIndex,\n\t\t\t\ttoolCall: finalToolCall,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t}\n\t}\n}\n\nfunction processParserEvents(\n\tparserEvents: StreamParserEvent[],\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n): boolean {\n\tlet emittedToolCall = false;\n\tfor (const parserEvent of parserEvents) {\n\t\tif (\n\t\t\tparserEvent.type === \"toolcall_start\" ||\n\t\t\tparserEvent.type === \"toolcall_delta\" ||\n\t\t\tparserEvent.type === \"toolcall_end\"\n\t\t) {\n\t\t\temittedToolCall = true;\n\t\t}\n\n\t\tpushParserEvent(\n\t\t\tparserEvent,\n\t\t\touterStream,\n\t\t\touterMessage,\n\t\t\ttextBlockIndexByInnerIndex,\n\t\t\ttoolCallIndexByParserIndex,\n\t\t\tcurrentInnerTextIndex,\n\t\t);\n\t}\n\treturn emittedToolCall;\n}\n\nfunction finalizeMessage(\n\touterMessage: AssistantMessage,\n\tdoneMessage: AssistantMessage,\n\tsawToolCall: boolean,\n): AssistantMessage {\n\tconst finalMessage: AssistantMessage = {\n\t\t...createOuterMessage(doneMessage),\n\t\tcontent: outerMessage.content,\n\t};\n\n\tif (sawToolCall && finalMessage.stopReason === \"stop\") {\n\t\tfinalMessage.stopReason = \"toolUse\";\n\t}\n\n\treturn finalMessage;\n}\n\nfunction hasCompletedToolCallContent(message: AssistantMessage): boolean {\n\treturn message.content.some((block) => block.type === \"toolCall\");\n}\n\nfunction finalizePendingTextBlock(\n\touterStream: AssistantMessageEventStream,\n\touterMessage: AssistantMessage,\n\tparser: ReturnType<ToolCallProtocol[\"createStreamParser\"]>,\n\ttextBlockIndexByInnerIndex: Map<number, number | null>,\n\ttoolCallIndexByParserIndex: Map<number, number>,\n\tcurrentInnerTextIndex: number | null,\n\tsawToolCall: boolean,\n): { currentInnerTextIndex: null; sawToolCall: boolean } {\n\tconst nextSawToolCall =\n\t\tprocessParserEvents(\n\t\t\tparser.finish(),\n\t\t\touterStream,\n\t\t\touterMessage,\n\t\t\ttextBlockIndexByInnerIndex,\n\t\t\ttoolCallIndexByParserIndex,\n\t\t\tcurrentInnerTextIndex,\n\t\t) || sawToolCall;\n\n\tconst outerContentIndex =\n\t\tcurrentInnerTextIndex == null ? null : (textBlockIndexByInnerIndex.get(currentInnerTextIndex) ?? null);\n\tif (outerContentIndex != null) {\n\t\tconst outerBlock = outerMessage.content[outerContentIndex];\n\t\tif (outerBlock?.type === \"text\") {\n\t\t\touterStream.push({\n\t\t\t\ttype: \"text_end\",\n\t\t\t\tcontentIndex: outerContentIndex,\n\t\t\t\tcontent: outerBlock.text,\n\t\t\t\tpartial: outerMessage,\n\t\t\t});\n\t\t}\n\t}\n\n\treturn {\n\t\tcurrentInnerTextIndex: null,\n\t\tsawToolCall: nextSawToolCall,\n\t};\n}\n\nexport function wrapStreamWithToolCallMiddleware(\n\tinnerStream: AssistantMessageEventStream,\n\tprotocol: ToolCallProtocol,\n\ttools: Tool[],\n): AssistantMessageEventStream {\n\tconst outerStream = new AssistantMessageEventStreamImpl();\n\tconst parser = protocol.createStreamParser(tools);\n\n\tvoid (async (): Promise<void> => {\n\t\tlet outerMessage: AssistantMessage | null = null;\n\t\tlet currentInnerTextIndex: number | null = null;\n\t\tlet sawToolCall = false;\n\t\tconst textBlockIndexByInnerIndex = new Map<number, number | null>();\n\t\tconst thinkingBlockIndexByInnerIndex = new Map<number, number>();\n\t\tconst toolCallIndexByParserIndex = new Map<number, number>();\n\n\t\ttry {\n\t\t\tfor await (const event of innerStream) {\n\t\t\t\tswitch (event.type) {\n\t\t\t\t\tcase \"start\": {\n\t\t\t\t\t\touterMessage = createOuterMessage(event.partial);\n\t\t\t\t\t\touterStream.push({ type: \"start\", partial: outerMessage });\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_start\": {\n\t\t\t\t\t\tif (outerMessage) {\n\t\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcurrentInnerTextIndex = event.contentIndex;\n\t\t\t\t\t\ttextBlockIndexByInnerIndex.set(event.contentIndex, null);\n\t\t\t\t\t\tif (outerMessage) {\n\t\t\t\t\t\t\touterStream.push({ ...event, partial: outerMessage });\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_delta\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tsawToolCall =\n\t\t\t\t\t\t\tprocessParserEvents(\n\t\t\t\t\t\t\t\tparser.feed(event.delta),\n\t\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\t) || sawToolCall;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"text_end\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\t({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(\n\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\tparser,\n\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\tsawToolCall,\n\t\t\t\t\t\t));\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_start\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = outerMessage.content.length;\n\t\t\t\t\t\tconst thinkingBlock: ThinkingContent = { type: \"thinking\", thinking: \"\" };\n\t\t\t\t\t\touterMessage.content.push(thinkingBlock);\n\t\t\t\t\t\tthinkingBlockIndexByInnerIndex.set(event.contentIndex, contentIndex);\n\t\t\t\t\t\touterStream.push({ type: \"thinking_start\", contentIndex, partial: outerMessage });\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_delta\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);\n\t\t\t\t\t\tif (contentIndex == null) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\t\t\t\tif (block?.type !== \"thinking\") {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tblock.thinking += event.delta;\n\t\t\t\t\t\touterStream.push({\n\t\t\t\t\t\t\ttype: \"thinking_delta\",\n\t\t\t\t\t\t\tcontentIndex,\n\t\t\t\t\t\t\tdelta: event.delta,\n\t\t\t\t\t\t\tpartial: outerMessage,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"thinking_end\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.partial);\n\t\t\t\t\t\tconst contentIndex = thinkingBlockIndexByInnerIndex.get(event.contentIndex);\n\t\t\t\t\t\tif (contentIndex == null) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst block = outerMessage.content[contentIndex];\n\t\t\t\t\t\tif (block?.type !== \"thinking\") {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tblock.thinking = event.content;\n\t\t\t\t\t\touterStream.push({\n\t\t\t\t\t\t\ttype: \"thinking_end\",\n\t\t\t\t\t\t\tcontentIndex,\n\t\t\t\t\t\t\tcontent: event.content,\n\t\t\t\t\t\t\tpartial: outerMessage,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"done\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\touterMessage = createOuterMessage(event.message);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tconst finalMessage = finalizeMessage(outerMessage, event.message, sawToolCall);\n\t\t\t\t\t\tconst finalReason = sawToolCall && event.reason === \"stop\" ? \"toolUse\" : event.reason;\n\t\t\t\t\t\touterStream.push({ type: \"done\", reason: finalReason, message: finalMessage });\n\t\t\t\t\t\touterStream.end();\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tcase \"error\": {\n\t\t\t\t\t\tif (!outerMessage) {\n\t\t\t\t\t\t\touterStream.push(event);\n\t\t\t\t\t\t\touterStream.end(event.error);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tsyncOuterMetadata(outerMessage, event.error);\n\t\t\t\t\t\tif (currentInnerTextIndex != null) {\n\t\t\t\t\t\t\t({ currentInnerTextIndex, sawToolCall } = finalizePendingTextBlock(\n\t\t\t\t\t\t\t\touterStream,\n\t\t\t\t\t\t\t\touterMessage,\n\t\t\t\t\t\t\t\tparser,\n\t\t\t\t\t\t\t\ttextBlockIndexByInnerIndex,\n\t\t\t\t\t\t\t\ttoolCallIndexByParserIndex,\n\t\t\t\t\t\t\t\tcurrentInnerTextIndex,\n\t\t\t\t\t\t\t\tsawToolCall,\n\t\t\t\t\t\t\t));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tconst finalErrorMessage = finalizeMessage(outerMessage, event.error, sawToolCall);\n\t\t\t\t\t\tif (sawToolCall && hasCompletedToolCallContent(finalErrorMessage)) {\n\t\t\t\t\t\t\tconst recoveredMessage: AssistantMessage = {\n\t\t\t\t\t\t\t\t...finalErrorMessage,\n\t\t\t\t\t\t\t\tstopReason: \"toolUse\",\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\touterStream.push({ type: \"done\", reason: \"toolUse\", message: recoveredMessage });\n\t\t\t\t\t\t\touterStream.end(recoveredMessage);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t\touterStream.push({ type: \"error\", reason: event.reason, error: finalErrorMessage });\n\t\t\t\t\t\touterStream.end(finalErrorMessage);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tconst finalInnerMessage = await innerStream.result();\n\t\t\tif (!outerMessage) {\n\t\t\t\touterMessage = createOuterMessage(finalInnerMessage);\n\t\t\t}\n\t\t\touterStream.end(finalizeMessage(outerMessage, finalInnerMessage, sawToolCall));\n\t\t} catch (error) {\n\t\t\tconst fallbackMessage = outerMessage ?? createOuterMessage(await innerStream.result());\n\t\t\tfallbackMessage.stopReason = \"error\";\n\t\t\tfallbackMessage.errorMessage = error instanceof Error ? error.message : JSON.stringify(error);\n\t\t\touterStream.push({ type: \"error\", reason: \"error\", error: fallbackMessage });\n\t\t\touterStream.end();\n\t\t}\n\t})();\n\n\treturn outerStream;\n}\n"]}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import type { ImageContent, TextContent, Tool } from "../types.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Supported tool call formats for models that don't natively support tool calling.
|
|
4
|
+
* - "hermes": Hermes 2/3 format with special delimiters
|
|
5
|
+
* - "xml": XML-based tool call format
|
|
6
|
+
* - "gemma4-delimiter": Gemma 4 specific delimiter format
|
|
7
|
+
*/
|
|
8
|
+
export type ToolCallFormat = "hermes" | "xml" | "yaml-xml" | "gemma4-delimiter";
|
|
9
|
+
/**
|
|
10
|
+
* Content type for tool results (text or image)
|
|
11
|
+
*/
|
|
12
|
+
export type ToolResultContent = TextContent | ImageContent;
|
|
13
|
+
export interface ParserOptions {
|
|
14
|
+
emitRawToolCallTextOnError?: boolean;
|
|
15
|
+
onError?: (message: string, metadata?: Record<string, unknown>) => void;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* A parsed tool call extracted from generated text
|
|
19
|
+
*/
|
|
20
|
+
export interface ParsedToolCall {
|
|
21
|
+
name: string;
|
|
22
|
+
arguments: Record<string, unknown>;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Events emitted by the stream parser during text processing.
|
|
26
|
+
* Maps 1:1 to AssistantMessageEventStream events for seamless integration.
|
|
27
|
+
*/
|
|
28
|
+
export type StreamParserEvent = {
|
|
29
|
+
type: "text";
|
|
30
|
+
text: string;
|
|
31
|
+
} | {
|
|
32
|
+
type: "toolcall_start";
|
|
33
|
+
index: number;
|
|
34
|
+
name: string;
|
|
35
|
+
id: string;
|
|
36
|
+
} | {
|
|
37
|
+
type: "toolcall_delta";
|
|
38
|
+
index: number;
|
|
39
|
+
argumentsDelta: string;
|
|
40
|
+
} | {
|
|
41
|
+
type: "toolcall_end";
|
|
42
|
+
index: number;
|
|
43
|
+
name: string;
|
|
44
|
+
id: string;
|
|
45
|
+
arguments: Record<string, unknown>;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Stream parser for incremental tool call parsing during streaming.
|
|
49
|
+
*/
|
|
50
|
+
export interface StreamParser {
|
|
51
|
+
/**
|
|
52
|
+
* Feed a text delta into the parser and receive any events generated.
|
|
53
|
+
* @param textDelta - The next chunk of text to parse
|
|
54
|
+
* @returns Array of parser events (text or tool call events)
|
|
55
|
+
*/
|
|
56
|
+
feed(textDelta: string): StreamParserEvent[];
|
|
57
|
+
/**
|
|
58
|
+
* Signal that the stream has ended and receive any final events.
|
|
59
|
+
* @returns Array of final parser events
|
|
60
|
+
*/
|
|
61
|
+
finish(): StreamParserEvent[];
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Protocol interface for formatting and parsing tool calls in different formats.
|
|
65
|
+
* Implementations handle the specifics of each tool call format (Hermes, XML, etc.)
|
|
66
|
+
*/
|
|
67
|
+
export interface ToolCallProtocol {
|
|
68
|
+
/**
|
|
69
|
+
* Format tools into a system prompt that instructs the model how to use tools.
|
|
70
|
+
* @param tools - Array of available tools
|
|
71
|
+
* @returns Formatted system prompt string
|
|
72
|
+
*/
|
|
73
|
+
formatToolsSystemPrompt(tools: Tool[]): string;
|
|
74
|
+
/**
|
|
75
|
+
* Format a tool response for inclusion in the conversation context.
|
|
76
|
+
* @param toolName - Name of the tool that was called
|
|
77
|
+
* @param toolCallId - Unique identifier for this tool call
|
|
78
|
+
* @param content - Array of content blocks (text or images) representing the result
|
|
79
|
+
* @returns Formatted tool response string
|
|
80
|
+
*/
|
|
81
|
+
formatToolResponse(toolName: string, toolCallId: string, content: ToolResultContent[]): string;
|
|
82
|
+
/**
|
|
83
|
+
* Format a tool call for sending to the model.
|
|
84
|
+
* @param name - Name of the tool to call
|
|
85
|
+
* @param args - Arguments for the tool call
|
|
86
|
+
* @returns Formatted tool call string
|
|
87
|
+
*/
|
|
88
|
+
formatToolCall(name: string, args: Record<string, unknown>): string;
|
|
89
|
+
/**
|
|
90
|
+
* Parse generated text to extract tool calls.
|
|
91
|
+
* @param text - The generated text to parse
|
|
92
|
+
* @param tools - Available tools for validation
|
|
93
|
+
* @returns Array of parsed tool calls
|
|
94
|
+
*/
|
|
95
|
+
parseGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[];
|
|
96
|
+
/**
|
|
97
|
+
* Create a stream parser for incremental parsing during streaming.
|
|
98
|
+
* @param tools - Available tools for the parser to recognize
|
|
99
|
+
* @returns A new StreamParser instance
|
|
100
|
+
*/
|
|
101
|
+
createStreamParser(tools: Tool[], options?: ParserOptions): StreamParser;
|
|
102
|
+
}
|
|
103
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/tool-call-middleware/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAEnE;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,KAAK,GAAG,UAAU,GAAG,kBAAkB,CAAC;AAEhF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG,YAAY,CAAC;AAE3D,MAAM,WAAW,aAAa;IAC7B,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;CACxE;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC;AAED;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAC1B;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GAC9B;IAAE,IAAI,EAAE,gBAAgB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,gBAAgB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,cAAc,EAAE,MAAM,CAAA;CAAE,GACjE;IACA,IAAI,EAAE,cAAc,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC,CAAC;AAEL;;GAEG;AACH,MAAM,WAAW,YAAY;IAC5B;;;;OAIG;IACH,IAAI,CAAC,SAAS,EAAE,MAAM,GAAG,iBAAiB,EAAE,CAAC;IAE7C;;;OAGG;IACH,MAAM,IAAI,iBAAiB,EAAE,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAChC;;;;OAIG;IACH,uBAAuB,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,MAAM,CAAC;IAE/C;;;;;;OAMG;IACH,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,GAAG,MAAM,CAAC;IAE/F;;;;;OAKG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC;IAEpE;;;;;OAKG;IACH,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,cAAc,EAAE,CAAC;IAE3F;;;;OAIG;IACH,kBAAkB,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC;CACzE","sourcesContent":["import type { ImageContent, TextContent, Tool } from \"../types.ts\";\n\n/**\n * Supported tool call formats for models that don't natively support tool calling.\n * - \"hermes\": Hermes 2/3 format with special delimiters\n * - \"xml\": XML-based tool call format\n * - \"gemma4-delimiter\": Gemma 4 specific delimiter format\n */\nexport type ToolCallFormat = \"hermes\" | \"xml\" | \"yaml-xml\" | \"gemma4-delimiter\";\n\n/**\n * Content type for tool results (text or image)\n */\nexport type ToolResultContent = TextContent | ImageContent;\n\nexport interface ParserOptions {\n\temitRawToolCallTextOnError?: boolean;\n\tonError?: (message: string, metadata?: Record<string, unknown>) => void;\n}\n\n/**\n * A parsed tool call extracted from generated text\n */\nexport interface ParsedToolCall {\n\tname: string;\n\targuments: Record<string, unknown>;\n}\n\n/**\n * Events emitted by the stream parser during text processing.\n * Maps 1:1 to AssistantMessageEventStream events for seamless integration.\n */\nexport type StreamParserEvent =\n\t| { type: \"text\"; text: string }\n\t| { type: \"toolcall_start\"; index: number; name: string; id: string }\n\t| { type: \"toolcall_delta\"; index: number; argumentsDelta: string }\n\t| {\n\t\t\ttype: \"toolcall_end\";\n\t\t\tindex: number;\n\t\t\tname: string;\n\t\t\tid: string;\n\t\t\targuments: Record<string, unknown>;\n\t };\n\n/**\n * Stream parser for incremental tool call parsing during streaming.\n */\nexport interface StreamParser {\n\t/**\n\t * Feed a text delta into the parser and receive any events generated.\n\t * @param textDelta - The next chunk of text to parse\n\t * @returns Array of parser events (text or tool call events)\n\t */\n\tfeed(textDelta: string): StreamParserEvent[];\n\n\t/**\n\t * Signal that the stream has ended and receive any final events.\n\t * @returns Array of final parser events\n\t */\n\tfinish(): StreamParserEvent[];\n}\n\n/**\n * Protocol interface for formatting and parsing tool calls in different formats.\n * Implementations handle the specifics of each tool call format (Hermes, XML, etc.)\n */\nexport interface ToolCallProtocol {\n\t/**\n\t * Format tools into a system prompt that instructs the model how to use tools.\n\t * @param tools - Array of available tools\n\t * @returns Formatted system prompt string\n\t */\n\tformatToolsSystemPrompt(tools: Tool[]): string;\n\n\t/**\n\t * Format a tool response for inclusion in the conversation context.\n\t * @param toolName - Name of the tool that was called\n\t * @param toolCallId - Unique identifier for this tool call\n\t * @param content - Array of content blocks (text or images) representing the result\n\t * @returns Formatted tool response string\n\t */\n\tformatToolResponse(toolName: string, toolCallId: string, content: ToolResultContent[]): string;\n\n\t/**\n\t * Format a tool call for sending to the model.\n\t * @param name - Name of the tool to call\n\t * @param args - Arguments for the tool call\n\t * @returns Formatted tool call string\n\t */\n\tformatToolCall(name: string, args: Record<string, unknown>): string;\n\n\t/**\n\t * Parse generated text to extract tool calls.\n\t * @param text - The generated text to parse\n\t * @param tools - Available tools for validation\n\t * @returns Array of parsed tool calls\n\t */\n\tparseGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[];\n\n\t/**\n\t * Create a stream parser for incremental parsing during streaming.\n\t * @param tools - Available tools for the parser to recognize\n\t * @returns A new StreamParser instance\n\t */\n\tcreateStreamParser(tools: Tool[], options?: ParserOptions): StreamParser;\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/tool-call-middleware/types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ImageContent, TextContent, Tool } from \"../types.ts\";\n\n/**\n * Supported tool call formats for models that don't natively support tool calling.\n * - \"hermes\": Hermes 2/3 format with special delimiters\n * - \"xml\": XML-based tool call format\n * - \"gemma4-delimiter\": Gemma 4 specific delimiter format\n */\nexport type ToolCallFormat = \"hermes\" | \"xml\" | \"yaml-xml\" | \"gemma4-delimiter\";\n\n/**\n * Content type for tool results (text or image)\n */\nexport type ToolResultContent = TextContent | ImageContent;\n\nexport interface ParserOptions {\n\temitRawToolCallTextOnError?: boolean;\n\tonError?: (message: string, metadata?: Record<string, unknown>) => void;\n}\n\n/**\n * A parsed tool call extracted from generated text\n */\nexport interface ParsedToolCall {\n\tname: string;\n\targuments: Record<string, unknown>;\n}\n\n/**\n * Events emitted by the stream parser during text processing.\n * Maps 1:1 to AssistantMessageEventStream events for seamless integration.\n */\nexport type StreamParserEvent =\n\t| { type: \"text\"; text: string }\n\t| { type: \"toolcall_start\"; index: number; name: string; id: string }\n\t| { type: \"toolcall_delta\"; index: number; argumentsDelta: string }\n\t| {\n\t\t\ttype: \"toolcall_end\";\n\t\t\tindex: number;\n\t\t\tname: string;\n\t\t\tid: string;\n\t\t\targuments: Record<string, unknown>;\n\t };\n\n/**\n * Stream parser for incremental tool call parsing during streaming.\n */\nexport interface StreamParser {\n\t/**\n\t * Feed a text delta into the parser and receive any events generated.\n\t * @param textDelta - The next chunk of text to parse\n\t * @returns Array of parser events (text or tool call events)\n\t */\n\tfeed(textDelta: string): StreamParserEvent[];\n\n\t/**\n\t * Signal that the stream has ended and receive any final events.\n\t * @returns Array of final parser events\n\t */\n\tfinish(): StreamParserEvent[];\n}\n\n/**\n * Protocol interface for formatting and parsing tool calls in different formats.\n * Implementations handle the specifics of each tool call format (Hermes, XML, etc.)\n */\nexport interface ToolCallProtocol {\n\t/**\n\t * Format tools into a system prompt that instructs the model how to use tools.\n\t * @param tools - Array of available tools\n\t * @returns Formatted system prompt string\n\t */\n\tformatToolsSystemPrompt(tools: Tool[]): string;\n\n\t/**\n\t * Format a tool response for inclusion in the conversation context.\n\t * @param toolName - Name of the tool that was called\n\t * @param toolCallId - Unique identifier for this tool call\n\t * @param content - Array of content blocks (text or images) representing the result\n\t * @returns Formatted tool response string\n\t */\n\tformatToolResponse(toolName: string, toolCallId: string, content: ToolResultContent[]): string;\n\n\t/**\n\t * Format a tool call for sending to the model.\n\t * @param name - Name of the tool to call\n\t * @param args - Arguments for the tool call\n\t * @returns Formatted tool call string\n\t */\n\tformatToolCall(name: string, args: Record<string, unknown>): string;\n\n\t/**\n\t * Parse generated text to extract tool calls.\n\t * @param text - The generated text to parse\n\t * @param tools - Available tools for validation\n\t * @returns Array of parsed tool calls\n\t */\n\tparseGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[];\n\n\t/**\n\t * Create a stream parser for incremental parsing during streaming.\n\t * @param tools - Available tools for the parser to recognize\n\t * @returns A new StreamParser instance\n\t */\n\tcreateStreamParser(tools: Tool[], options?: ParserOptions): StreamParser;\n}\n"]}
|