@code-yeongyu/senpi 2026.5.20-4 → 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 +12 -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/morph-xml.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"morph-xml.js","sourceRoot":"","sources":["../../../src/tool-call-middleware/protocols/morph-xml.ts"],"names":[],"mappings":"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","sourcesContent":["import type { TextContent, Tool } from \"../../types.ts\";\nimport { validateToolArguments } from \"../../utils/validation.ts\";\nimport type { ParsedToolCall, ParserOptions, StreamParser, StreamParserEvent } from \"../types.ts\";\nimport { findEarliestXmlToolTag, findSelfClosingToolTag, getSafeXmlTextLength } from \"./xml-tool-tag-scanner.ts\";\n\nconst INDENT = \" \";\n\n/**\n * Formats tools as an XML-style system prompt for MorphXml protocol.\n * Ported from ai-sdk-tool-call-middleware morph-xml-prompt.ts\n */\nexport function morphXmlFormatToolsSystemPrompt(tools: Tool[]): string {\n\tconst toolsText = renderToolsForXmlPrompt(tools);\n\n\tconst header = `# Tools\nYou may call one or more functions to assist with the user query.`;\n\n\tconst definitions = [\"You have access to the following functions:\", \"<tools>\", toolsText, \"</tools>\"].join(\"\\n\");\n\n\tconst rules = `<rules>\n- Use exactly one XML element whose tag name is the function name.\n- Put each parameter as a child element.\n- Values must follow the schema exactly (numbers, arrays, objects, enums -> copy as-is).\n- For array parameters, wrap each element in an <item> tag inside the parameter tag.\n- For array<object> parameters, every <item> must contain the object's fields as child tags.\n- Never repeat the array parameter tag to represent multiple entries.\n- Do not add or remove functions or parameters.\n- Each required parameter must appear once.\n- Output nothing before or after the function call.\n- It is also possible to call multiple types of functions in one turn or to call a single function multiple times.\n</rules>`;\n\n\tconst examples = `For each function call, output the function name and parameter in the following format:\n<example_function_name>\n <example_parameter_1>value_1</example_parameter_1>\n <example_parameter_2>This is the value for the second parameter\nthat can span\nmultiple lines</example_parameter_2>\n</example_function_name>`;\n\n\tconst arrayExample = `Array example:\n<example_array_tool>\n <items>\n <item>first</item>\n <item>second</item>\n </items>\n</example_array_tool>\n\nArray<object> example:\n<example_todo_tool>\n <todos>\n <item>\n <content>Inspect parser edge cases</content>\n <status>in_progress</status>\n <priority>high</priority>\n </item>\n <item>\n <content>Add regression tests</content>\n <status>pending</status>\n <priority>medium</priority>\n </item>\n </todos>\n</example_todo_tool>`;\n\n\treturn [header, definitions, rules, examples, arrayExample]\n\t\t.filter((section) => section.trim().length > 0)\n\t\t.join(\"\\n\\n\");\n}\n\nfunction renderToolsForXmlPrompt(tools: Tool[]): string {\n\tif (!tools.length) {\n\t\treturn \"none\";\n\t}\n\n\treturn tools.map(renderToolForXmlPrompt).join(\"\\n\\n\");\n}\n\nfunction renderToolForXmlPrompt(tool: Tool): string {\n\tconst lines: string[] = [`name: ${tool.name}`];\n\n\tif (tool.description) {\n\t\tlines.push(`description: ${tool.description}`);\n\t}\n\n\tlines.push(\"parameters:\");\n\tconst normalizedSchema = normalizeSchema(tool.parameters as Record<string, unknown>);\n\tlines.push(...renderParametersSummary(normalizedSchema, 1));\n\tlines.push(`schema: ${stringifySchema(normalizedSchema)}`);\n\n\treturn lines.join(\"\\n\");\n}\n\nfunction normalizeSchema(\n\tschema: Record<string, unknown> | boolean | string | undefined,\n): Record<string, unknown> | boolean | undefined {\n\tif (typeof schema === \"string\") {\n\t\ttry {\n\t\t\treturn JSON.parse(schema) as Record<string, unknown>;\n\t\t} catch {\n\t\t\treturn { type: \"string\", const: schema };\n\t\t}\n\t}\n\n\treturn schema;\n}\n\nfunction renderParametersSummary(schema: Record<string, unknown> | boolean | undefined, indentLevel: number): string[] {\n\tconst indent = INDENT.repeat(indentLevel);\n\n\tif (schema === undefined || schema === null) {\n\t\treturn [`${indent}(none)`];\n\t}\n\n\tif (schema === true) {\n\t\treturn [`${indent}(any)`];\n\t}\n\n\tif (schema === false) {\n\t\treturn [`${indent}(no valid parameters)`];\n\t}\n\n\tif (typeof schema !== \"object\") {\n\t\treturn [`${indent}- value (${String(schema)})`];\n\t}\n\n\tconst schemaObj = schema as Record<string, unknown>;\n\tconst schemaType = schemaObj.type;\n\tconst schemaTypeArray: string[] = [];\n\n\tif (Array.isArray(schemaType)) {\n\t\tschemaTypeArray.push(...schemaType);\n\t} else if (typeof schemaType === \"string\") {\n\t\tschemaTypeArray.push(schemaType);\n\t}\n\n\tconst isObjectLike = schemaTypeArray.includes(\"object\") || !!schemaObj.properties;\n\n\tif (isObjectLike) {\n\t\tconst properties = (schemaObj.properties ?? {}) as Record<string, Record<string, unknown> | boolean>;\n\t\tconst requiredSet = new Set(Array.isArray(schemaObj.required) ? schemaObj.required : []);\n\t\tconst propertyNames = Object.keys(properties).sort();\n\n\t\tif (propertyNames.length === 0) {\n\t\t\treturn [`${indent}(no named parameters)`];\n\t\t}\n\n\t\tconst lines: string[] = [];\n\t\tfor (const propName of propertyNames) {\n\t\t\tconst propSchema = properties[propName];\n\t\t\tlines.push(\n\t\t\t\trenderPropertySummaryLine({\n\t\t\t\t\tindent,\n\t\t\t\t\tpropName,\n\t\t\t\t\tpropSchema,\n\t\t\t\t\trequired: requiredSet.has(propName),\n\t\t\t\t}),\n\t\t\t);\n\t\t}\n\n\t\treturn lines.length ? lines : [`${indent}(no parameters)`];\n\t}\n\n\treturn [`${indent}- value (${summarizeType(schemaObj)})`];\n}\n\nfunction renderPropertySummaryLine({\n\tindent,\n\tpropName,\n\tpropSchema,\n\trequired,\n}: {\n\tindent: string;\n\tpropName: string;\n\tpropSchema: Record<string, unknown> | boolean | undefined;\n\trequired: boolean;\n}): string {\n\tconst typeLabel = summarizeType(propSchema);\n\tconst requiredLabel = required ? \"required\" : \"optional\";\n\tconst extras = collectPropertyExtras(propSchema);\n\tconst extraText = extras.length ? ` - ${extras.join(\"; \")}` : \"\";\n\n\treturn `${indent}- ${propName} (${typeLabel}, ${requiredLabel})${extraText}`;\n}\n\nfunction collectPropertyExtras(propSchema: Record<string, unknown> | boolean | undefined): string[] {\n\tif (!propSchema || typeof propSchema !== \"object\") {\n\t\treturn [];\n\t}\n\n\tconst extras: string[] = [];\n\tconst schema = propSchema as Record<string, unknown>;\n\n\tif (schema.enum && Array.isArray(schema.enum)) {\n\t\textras.push(`enum: ${formatValue(schema.enum)}`);\n\t}\n\n\tif (schema.default !== undefined) {\n\t\textras.push(`default: ${formatValue(schema.default)}`);\n\t}\n\n\tif (typeof schema.description === \"string\") {\n\t\textras.push(schema.description);\n\t}\n\n\treturn extras;\n}\n\nfunction summarizeType(schema: Record<string, unknown> | boolean | undefined): string {\n\tif (schema === undefined || schema === null) {\n\t\treturn \"unknown\";\n\t}\n\n\tif (schema === true) {\n\t\treturn \"any\";\n\t}\n\n\tif (schema === false) {\n\t\treturn \"never\";\n\t}\n\n\tif (typeof schema !== \"object\") {\n\t\treturn String(schema);\n\t}\n\n\tconst schemaType = schema.type;\n\tlet baseType = \"\";\n\n\tif (Array.isArray(schemaType) && schemaType.length) {\n\t\tbaseType = schemaType.join(\" | \");\n\t} else if (typeof schemaType === \"string\") {\n\t\tbaseType = schemaType;\n\t} else if (schema.enum && Array.isArray(schema.enum)) {\n\t\tconst inferred: string[] = Array.from(new Set(schema.enum.map((value: unknown) => typeof value)));\n\t\tif (inferred.length === 1 && inferred[0]) {\n\t\t\tbaseType = inferred[0];\n\t\t}\n\t} else if (schema.const !== undefined) {\n\t\tbaseType = typeof schema.const;\n\t}\n\n\tif (!baseType) {\n\t\tbaseType = \"any\";\n\t}\n\n\tif (baseType === \"array\" && schema.items) {\n\t\tconst itemType = Array.isArray(schema.items)\n\t\t\t? schema.items.map((item: Record<string, unknown> | boolean) => summarizeType(item)).join(\" | \")\n\t\t\t: summarizeType(schema.items as Record<string, unknown>);\n\t\treturn `array<${itemType}>`;\n\t}\n\n\tif (baseType === \"string\" && typeof schema.format === \"string\") {\n\t\treturn `string (${schema.format})`;\n\t}\n\n\treturn baseType;\n}\n\nfunction formatValue(value: unknown): string {\n\tif (typeof value === \"string\") {\n\t\treturn JSON.stringify(value);\n\t}\n\n\tif (typeof value === \"number\" || typeof value === \"boolean\") {\n\t\treturn String(value);\n\t}\n\n\tif (value === null) {\n\t\treturn \"null\";\n\t}\n\n\tif (Array.isArray(value)) {\n\t\treturn `[${value.map(formatValue).join(\", \")}]`;\n\t}\n\n\treturn JSON.stringify(value);\n}\n\nfunction stringifySchema(schema: Record<string, unknown> | boolean | undefined): string {\n\tif (schema === undefined) {\n\t\treturn \"null\";\n\t}\n\n\treturn JSON.stringify(stripSchemaKeys(schema));\n}\n\nfunction stripSchemaKeys(value: unknown): unknown {\n\tif (Array.isArray(value)) {\n\t\treturn value.map((entry) => stripSchemaKeys(entry));\n\t}\n\n\tif (value && typeof value === \"object\") {\n\t\tconst record = value as Record<string, unknown>;\n\t\tconst cleaned: Record<string, unknown> = {};\n\n\t\tfor (const [key, entry] of Object.entries(record)) {\n\t\t\tif (key === \"$schema\") {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tcleaned[key] = stripSchemaKeys(entry);\n\t\t}\n\n\t\treturn cleaned;\n\t}\n\n\treturn value;\n}\n\nexport function morphXmlFormatToolResponse(toolName: string, _toolCallId: string, content: TextContent[]): string {\n\tconst combinedText = content\n\t\t.filter((c): c is TextContent => c.type === \"text\")\n\t\t.map((c) => c.text)\n\t\t.join(\"\\n\");\n\n\tlet resultValue: unknown = combinedText;\n\ttry {\n\t\tresultValue = JSON.parse(combinedText);\n\t} catch {}\n\n\tconst resultLines = formatXmlNode(\"result\", resultValue, 1);\n\n\treturn [\n\t\t\"<tool_response>\",\n\t\t` <tool_name>${escapeXml(toolName)}</tool_name>`,\n\t\t...resultLines,\n\t\t\"</tool_response>\",\n\t].join(\"\\n\");\n}\n\n/**\n * Formats a tool call as XML for MorphXml protocol.\n */\nexport function morphXmlFormatToolCall(name: string, args: Record<string, unknown>): string {\n\tconst lines = formatXmlNode(name, args, 0);\n\treturn lines.join(\"\\n\");\n}\n\ntype JsonSchema = Record<string, unknown> | boolean | undefined;\n\ntype XmlNode = {\n\tname: string;\n\tchildren: XmlNode[];\n\tparts: Array<{ type: \"text\"; value: string } | { type: \"child\"; value: XmlNode }>;\n\ttextSegments: string[];\n};\n\ntype StreamToolState = {\n\tid: string;\n\tindex: number;\n\tlastArgumentsSnapshot: string | null;\n\tname: string;\n\tschema: JsonSchema;\n\tstarted: boolean;\n\ttool: Tool | undefined;\n};\n\nfunction shouldEmitRawToolCallTextOnError(options?: ParserOptions): boolean {\n\treturn options?.emitRawToolCallTextOnError === true;\n}\n\nfunction getSchemaTypesFromValue(schema: JsonSchema): string[] {\n\tif (!schema || typeof schema !== \"object\" || Array.isArray(schema)) {\n\t\treturn [];\n\t}\n\n\tconst typeValue = schema.type;\n\tif (typeof typeValue === \"string\") {\n\t\treturn [typeValue];\n\t}\n\tif (Array.isArray(typeValue)) {\n\t\treturn typeValue.filter((entry): entry is string => typeof entry === \"string\");\n\t}\n\treturn [];\n}\n\nfunction isStructurallyCompatibleWithSchema(value: unknown, schema: JsonSchema): boolean {\n\tif (schema === undefined || schema === true) {\n\t\treturn true;\n\t}\n\tif (schema === false) {\n\t\treturn false;\n\t}\n\tif (typeof schema !== \"object\" || Array.isArray(schema) || schema === null) {\n\t\treturn true;\n\t}\n\n\tconst schemaTypes = getSchemaTypesFromValue(schema);\n\tif (value === null) {\n\t\treturn schemaTypes.length === 0 || schemaTypes.includes(\"null\");\n\t}\n\n\tif (Array.isArray(value)) {\n\t\tif (schemaTypes.length > 0 && !schemaTypes.includes(\"array\")) {\n\t\t\treturn false;\n\t\t}\n\t\tconst itemSchema = getArrayItemSchema(schema);\n\t\treturn value.every((item) => isStructurallyCompatibleWithSchema(item, itemSchema));\n\t}\n\n\tif (typeof value === \"object\") {\n\t\tif (schemaTypes.length > 0 && !schemaTypes.includes(\"object\")) {\n\t\t\treturn false;\n\t\t}\n\t\tconst record = value as Record<string, unknown>;\n\t\treturn Object.entries(record).every(([key, entryValue]) =>\n\t\t\tisStructurallyCompatibleWithSchema(entryValue, getPropertySchema(schema, key)),\n\t\t);\n\t}\n\n\tif (typeof value === \"string\") {\n\t\treturn schemaTypes.length === 0 || schemaTypes.includes(\"string\");\n\t}\n\tif (typeof value === \"number\") {\n\t\treturn schemaTypes.length === 0 || schemaTypes.includes(\"number\") || schemaTypes.includes(\"integer\");\n\t}\n\tif (typeof value === \"boolean\") {\n\t\treturn schemaTypes.length === 0 || schemaTypes.includes(\"boolean\");\n\t}\n\n\treturn true;\n}\n\nfunction validateMorphXmlArguments(tool: Tool | undefined, argumentsRecord: Record<string, unknown>): boolean {\n\tif (!tool) {\n\t\treturn true;\n\t}\n\n\ttry {\n\t\tvalidateToolArguments(tool, {\n\t\t\ttype: \"toolCall\",\n\t\t\tid: \"morph-xml-validation\",\n\t\t\tname: tool.name,\n\t\t\targuments: argumentsRecord,\n\t\t});\n\t\treturn true;\n\t} catch {\n\t\treturn false;\n\t}\n}\n\nfunction parseAndValidateMorphXmlArguments(\n\ttool: Tool | undefined,\n\ttoolBody: string,\n\tschema: JsonSchema,\n): Record<string, unknown> | null {\n\tlet parsedArguments: Record<string, unknown>;\n\ttry {\n\t\tparsedArguments = parseMorphXmlArguments(toolBody, schema);\n\t} catch {\n\t\treturn null;\n\t}\n\tif (!isStructurallyCompatibleWithSchema(parsedArguments, schema)) {\n\t\treturn null;\n\t}\n\tif (!validateMorphXmlArguments(tool, parsedArguments)) {\n\t\treturn null;\n\t}\n\treturn parsedArguments;\n}\n\nfunction parseMorphXmlPartialArgumentsSafely(toolBody: string, schema: JsonSchema): Record<string, unknown> | null {\n\ttry {\n\t\treturn parseMorphXmlPartialArguments(toolBody, schema);\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nexport function parseMorphXmlGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[] {\n\tif (tools.length === 0 || text.length === 0) {\n\t\treturn [];\n\t}\n\n\tconst toolSchemaMap = createToolSchemaMap(tools);\n\tconst toolMap = new Map(tools.map((tool) => [tool.name, tool]));\n\tconst parsedToolCalls: ParsedToolCall[] = [];\n\n\tfor (const tool of tools) {\n\t\tlet selfClosingMatch = findSelfClosingToolTag(text, tool.name, 0);\n\t\twhile (selfClosingMatch) {\n\t\t\tconst parsedArguments = parseAndValidateMorphXmlArguments(tool, \"\", toolSchemaMap.get(tool.name));\n\t\t\tif (!parsedArguments) {\n\t\t\t\toptions?.onError?.(\"Could not process XML tool call.\", {\n\t\t\t\t\ttoolCall: selfClosingMatch.tag,\n\t\t\t\t});\n\t\t\t\tselfClosingMatch = findSelfClosingToolTag(\n\t\t\t\t\ttext,\n\t\t\t\t\ttool.name,\n\t\t\t\t\tselfClosingMatch.index + selfClosingMatch.length,\n\t\t\t\t);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tparsedToolCalls.push({\n\t\t\t\tname: tool.name,\n\t\t\t\targuments: parsedArguments,\n\t\t\t});\n\t\t\tselfClosingMatch = findSelfClosingToolTag(text, tool.name, selfClosingMatch.index + selfClosingMatch.length);\n\t\t}\n\n\t\tconst toolCallPattern = new RegExp(\n\t\t\t`<\\\\s*${escapeRegExp(tool.name)}\\\\s*>([\\\\s\\\\S]*?)<\\\\/\\\\s*${escapeRegExp(tool.name)}\\\\s*>`,\n\t\t\t\"g\",\n\t\t);\n\t\tfor (const match of text.matchAll(toolCallPattern)) {\n\t\t\tconst toolBody = match[1] ?? \"\";\n\t\t\tconst parsedArguments = parseAndValidateMorphXmlArguments(\n\t\t\t\ttoolMap.get(tool.name),\n\t\t\t\ttoolBody,\n\t\t\t\ttoolSchemaMap.get(tool.name),\n\t\t\t);\n\t\t\tif (!parsedArguments) {\n\t\t\t\toptions?.onError?.(\"Could not process XML tool call.\", {\n\t\t\t\t\ttoolCall: match[0],\n\t\t\t\t});\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tparsedToolCalls.push({\n\t\t\t\tname: tool.name,\n\t\t\t\targuments: parsedArguments,\n\t\t\t});\n\t\t}\n\t}\n\n\treturn parsedToolCalls;\n}\n\nexport function createMorphXmlStreamParser(tools: Tool[], options?: ParserOptions): StreamParser {\n\tconst toolSchemaMap = createToolSchemaMap(tools);\n\tconst toolNames = tools.map((tool) => tool.name);\n\tconst toolMap = new Map(tools.map((tool) => [tool.name, tool]));\n\n\tlet buffer = \"\";\n\tlet nextToolCallIndex = 0;\n\tlet currentToolState: StreamToolState | null = null;\n\n\tfunction emitArgumentsSnapshot(\n\t\tevents: StreamParserEvent[],\n\t\ttoolState: StreamToolState,\n\t\targumentsRecord: Record<string, unknown>,\n\t): void {\n\t\tif (!isStructurallyCompatibleWithSchema(argumentsRecord, toolState.schema)) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst argumentsSnapshot = JSON.stringify(argumentsRecord);\n\t\tif (argumentsSnapshot === toolState.lastArgumentsSnapshot || argumentsSnapshot === \"{}\") {\n\t\t\treturn;\n\t\t}\n\n\t\tif (!toolState.started) {\n\t\t\tevents.push({\n\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\tindex: toolState.index,\n\t\t\t\tname: toolState.name,\n\t\t\t\tid: toolState.id,\n\t\t\t});\n\t\t\ttoolState.started = true;\n\t\t}\n\n\t\ttoolState.lastArgumentsSnapshot = argumentsSnapshot;\n\t\tevents.push({\n\t\t\ttype: \"toolcall_delta\",\n\t\t\tindex: toolState.index,\n\t\t\targumentsDelta: argumentsSnapshot,\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 closingTagPattern = new RegExp(`</\\\\s*${escapeRegExp(currentToolState.name)}\\\\s*>`);\n\t\t\t\tconst closingTagMatch = closingTagPattern.exec(buffer);\n\n\t\t\t\tif (!closingTagMatch || closingTagMatch.index === undefined) {\n\t\t\t\t\tconst partialArguments = parseMorphXmlPartialArgumentsSafely(buffer, currentToolState.schema);\n\t\t\t\t\tif (partialArguments) {\n\t\t\t\t\t\temitArgumentsSnapshot(events, currentToolState, partialArguments);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tconst toolBody = buffer.slice(0, closingTagMatch.index);\n\t\t\t\tconst partialArguments = parseMorphXmlPartialArgumentsSafely(toolBody, currentToolState.schema);\n\t\t\t\tif (partialArguments) {\n\t\t\t\t\temitArgumentsSnapshot(events, currentToolState, partialArguments);\n\t\t\t\t}\n\n\t\t\t\tconst parsedArguments = parseAndValidateMorphXmlArguments(\n\t\t\t\t\tcurrentToolState.tool,\n\t\t\t\t\ttoolBody,\n\t\t\t\t\tcurrentToolState.schema,\n\t\t\t\t);\n\t\t\t\tconst originalCallText = `<${currentToolState.name}>${toolBody}${closingTagMatch[0]}`;\n\t\t\t\tbuffer = buffer.slice(closingTagMatch.index + closingTagMatch[0].length);\n\t\t\t\tif (!parsedArguments) {\n\t\t\t\t\toptions?.onError?.(\"Could not process streaming XML tool call.\", {\n\t\t\t\t\t\ttoolCall: originalCallText,\n\t\t\t\t\t});\n\t\t\t\t\tif (!currentToolState.started && 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\tif (!currentToolState.started) {\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\tcurrentToolState.started = true;\n\t\t\t\t\temitArgumentsSnapshot(events, currentToolState, parsedArguments);\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\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 tool = toolMap.get(openingTag.name);\n\t\t\t\tconst schema = toolSchemaMap.get(openingTag.name);\n\t\t\t\tconst parsedArguments = parseAndValidateMorphXmlArguments(tool, \"\", schema);\n\t\t\t\tif (!parsedArguments) {\n\t\t\t\t\toptions?.onError?.(\"Could not process XML tool call.\", {\n\t\t\t\t\t\ttoolCall: openingTag.tag,\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: openingTag.tag });\n\t\t\t\t\t}\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconst id = globalThis.crypto.randomUUID();\n\t\t\t\tconst index = nextToolCallIndex;\n\t\t\t\tnextToolCallIndex += 1;\n\t\t\t\tevents.push({\n\t\t\t\t\ttype: \"toolcall_start\",\n\t\t\t\t\tindex,\n\t\t\t\t\tname: openingTag.name,\n\t\t\t\t\tid,\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,\n\t\t\t\t\tname: openingTag.name,\n\t\t\t\t\tid,\n\t\t\t\t\targuments: parsedArguments,\n\t\t\t\t});\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tcurrentToolState = {\n\t\t\t\tid: globalThis.crypto.randomUUID(),\n\t\t\t\tindex: nextToolCallIndex,\n\t\t\t\tlastArgumentsSnapshot: null,\n\t\t\t\tname: openingTag.name,\n\t\t\t\tschema: toolSchemaMap.get(openingTag.name),\n\t\t\t\tstarted: false,\n\t\t\t\ttool: toolMap.get(openingTag.name),\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\n\t\t\tbuffer += textDelta;\n\t\t\treturn processBuffer();\n\t\t},\n\n\t\tfinish(): StreamParserEvent[] {\n\t\t\tconst events = processBuffer();\n\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\n\t\t\tif (currentToolState) {\n\t\t\t\tconst parsedArguments = parseAndValidateMorphXmlArguments(\n\t\t\t\t\tcurrentToolState.tool,\n\t\t\t\t\tbuffer,\n\t\t\t\t\tcurrentToolState.schema,\n\t\t\t\t);\n\t\t\t\tif (parsedArguments) {\n\t\t\t\t\tif (!currentToolState.started) {\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\tcurrentToolState.started = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (currentToolState.lastArgumentsSnapshot !== JSON.stringify(parsedArguments)) {\n\t\t\t\t\t\temitArgumentsSnapshot(events, currentToolState, parsedArguments);\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 if (currentToolState.lastArgumentsSnapshot) {\n\t\t\t\t\tconst recoveredArguments = JSON.parse(currentToolState.lastArgumentsSnapshot) as Record<string, unknown>;\n\t\t\t\t\tif (!currentToolState.started) {\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\tcurrentToolState.started = true;\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: recoveredArguments,\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 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\n\t\t\t\tbuffer = \"\";\n\t\t\t\tcurrentToolState = null;\n\t\t\t}\n\n\t\t\treturn events;\n\t\t},\n\t};\n}\n\nfunction formatXmlNode(tagName: string, value: unknown, depth: number): string[] {\n\tconst indent = INDENT.repeat(depth);\n\n\tif (value === null || value === undefined) {\n\t\treturn [`${indent}<${tagName}></${tagName}>`];\n\t}\n\n\tif (typeof value === \"string\" || typeof value === \"number\" || typeof value === \"boolean\") {\n\t\tconst escapedValue = typeof value === \"string\" ? escapeXml(value) : String(value);\n\t\treturn [`${indent}<${tagName}>${escapedValue}</${tagName}>`];\n\t}\n\n\tif (Array.isArray(value)) {\n\t\tif (value.length === 0) {\n\t\t\treturn [`${indent}<${tagName}></${tagName}>`];\n\t\t}\n\t\tconst lines = [`${indent}<${tagName}>`];\n\t\tfor (const item of value) {\n\t\t\tlines.push(...formatXmlNode(\"item\", item, depth + 1));\n\t\t}\n\t\tlines.push(`${indent}</${tagName}>`);\n\t\treturn lines;\n\t}\n\n\tconst entries = Object.entries(value as Record<string, unknown>);\n\tif (entries.length === 0) {\n\t\treturn [`${indent}<${tagName}></${tagName}>`];\n\t}\n\n\tconst lines = [`${indent}<${tagName}>`];\n\tfor (const [key, entryValue] of entries) {\n\t\tlines.push(...formatXmlNode(key, entryValue, depth + 1));\n\t}\n\tlines.push(`${indent}</${tagName}>`);\n\treturn lines;\n}\n\nfunction createToolSchemaMap(tools: Tool[]): Map<string, JsonSchema> {\n\treturn new Map(tools.map((tool) => [tool.name, normalizeSchema(tool.parameters as Record<string, unknown>)]));\n}\n\nfunction parseMorphXmlArguments(toolBody: string, schema: JsonSchema): Record<string, unknown> {\n\tconst parsedRoot = parseXmlRoot(`<root>${toolBody}</root>`);\n\tif (!parsedRoot) {\n\t\treturn {};\n\t}\n\n\treturn convertChildrenToObject(parsedRoot.children, schema);\n}\n\nfunction parseMorphXmlPartialArguments(toolBody: string, schema: JsonSchema): Record<string, unknown> {\n\tconst partialArguments: Record<string, unknown> = {};\n\tconst normalizedSchema = normalizeSchema(schema);\n\tlet position = 0;\n\n\twhile (position < toolBody.length) {\n\t\tconst nextTagIndex = toolBody.indexOf(\"<\", position);\n\t\tif (nextTagIndex === -1) {\n\t\t\tbreak;\n\t\t}\n\n\t\tif (toolBody.slice(position, nextTagIndex).trim().length > 0) {\n\t\t\tbreak;\n\t\t}\n\n\t\tconst openingTag = parseOpeningTag(toolBody, nextTagIndex);\n\t\tif (!openingTag) {\n\t\t\tbreak;\n\t\t}\n\n\t\tconst propertySchema = getPropertySchema(normalizedSchema, openingTag.name);\n\t\tconst closingTag = `</${openingTag.name}>`;\n\t\tconst closingTagIndex = toolBody.indexOf(closingTag, openingTag.endIndex);\n\n\t\tif (closingTagIndex === -1) {\n\t\t\tconst partialValueText = toolBody.slice(openingTag.endIndex);\n\t\t\tif (partialValueText.includes(\"<\")) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tpartialArguments[openingTag.name] = coercePartialXmlValue(partialValueText, propertySchema);\n\t\t\tbreak;\n\t\t}\n\n\t\tconst completeNode = parseXmlRoot(toolBody.slice(nextTagIndex, closingTagIndex + closingTag.length));\n\t\tif (!completeNode) {\n\t\t\tbreak;\n\t\t}\n\n\t\tpartialArguments[openingTag.name] = convertXmlNodeValue(completeNode, propertySchema);\n\t\tposition = closingTagIndex + closingTag.length;\n\t}\n\n\treturn partialArguments;\n}\n\nfunction parseXmlRoot(xml: string): XmlNode | null {\n\tconst tagPattern = /<\\s*(\\/)?\\s*([A-Za-z_][\\w.-]*)\\s*(\\/)?\\s*>/g;\n\tconst stack: XmlNode[] = [];\n\tlet rootNode: XmlNode | null = null;\n\tlet lastIndex = 0;\n\n\tfor (const match of xml.matchAll(tagPattern)) {\n\t\tconst fullMatch = match[0];\n\t\tconst matchIndex = match.index;\n\t\tconst isClosingTag = match[1] === \"/\";\n\t\tconst tagName = match[2];\n\t\tconst isSelfClosing = match[3] === \"/\";\n\n\t\tif (matchIndex === undefined || !fullMatch || !tagName) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst textContent = xml.slice(lastIndex, matchIndex);\n\t\tif (stack.length > 0 && textContent.length > 0) {\n\t\t\tstack[stack.length - 1]?.textSegments.push(textContent);\n\t\t\tstack[stack.length - 1]?.parts.push({ type: \"text\", value: textContent });\n\t\t} else if (stack.length === 0 && textContent.trim().length > 0) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif (isClosingTag) {\n\t\t\tconst completedNode = stack.pop();\n\t\t\tif (!completedNode || completedNode.name !== tagName) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif (stack.length > 0) {\n\t\t\t\tstack[stack.length - 1]?.children.push(completedNode);\n\t\t\t\tstack[stack.length - 1]?.parts.push({ type: \"child\", value: completedNode });\n\t\t\t} else if (!rootNode) {\n\t\t\t\trootNode = completedNode;\n\t\t\t} else {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t} else {\n\t\t\tconst node: XmlNode = {\n\t\t\t\tname: tagName,\n\t\t\t\tchildren: [],\n\t\t\t\tparts: [],\n\t\t\t\ttextSegments: [],\n\t\t\t};\n\n\t\t\tif (isSelfClosing) {\n\t\t\t\tif (stack.length > 0) {\n\t\t\t\t\tstack[stack.length - 1]?.children.push(node);\n\t\t\t\t\tstack[stack.length - 1]?.parts.push({ type: \"child\", value: node });\n\t\t\t\t} else if (!rootNode) {\n\t\t\t\t\trootNode = node;\n\t\t\t\t} else {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tstack.push(node);\n\t\t\t}\n\t\t}\n\n\t\tlastIndex = matchIndex + fullMatch.length;\n\t}\n\n\tif (stack.length > 0) {\n\t\treturn null;\n\t}\n\n\tif (lastIndex < xml.length && xml.slice(lastIndex).trim().length > 0) {\n\t\treturn null;\n\t}\n\n\treturn rootNode;\n}\n\nfunction serializeXmlNode(node: XmlNode): string {\n\tconst innerContent = node.parts\n\t\t.map((part) => (part.type === \"text\" ? part.value : serializeXmlNode(part.value)))\n\t\t.join(\"\");\n\treturn `<${node.name}>${innerContent}</${node.name}>`;\n}\n\nfunction convertChildrenToObject(children: XmlNode[], schema: JsonSchema): Record<string, unknown> {\n\tconst objectValue: Record<string, unknown> = {};\n\n\tfor (const child of children) {\n\t\tconst propertySchema = getPropertySchema(schema, child.name);\n\t\tconst propertyValue = convertXmlNodeValue(child, propertySchema);\n\t\tconst existingValue = objectValue[child.name];\n\n\t\tif (existingValue === undefined) {\n\t\t\tobjectValue[child.name] = propertyValue;\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (Array.isArray(existingValue)) {\n\t\t\texistingValue.push(propertyValue);\n\t\t\tcontinue;\n\t\t}\n\n\t\tobjectValue[child.name] = [existingValue, propertyValue];\n\t}\n\n\treturn objectValue;\n}\n\nfunction convertXmlNodeValue(node: XmlNode, schema: JsonSchema): unknown {\n\tconst normalizedSchema = normalizeSchema(schema);\n\tconst schemaTypes = getSchemaTypes(normalizedSchema);\n\n\tif (node.children.length === 0) {\n\t\treturn coerceXmlValue(node.textSegments.join(\"\"), normalizedSchema);\n\t}\n\n\tif (schemaTypes.includes(\"string\")) {\n\t\treturn node.parts\n\t\t\t.map((part) => (part.type === \"text\" ? unescapeXml(part.value) : serializeXmlNode(part.value)))\n\t\t\t.join(\"\");\n\t}\n\n\tif (shouldTreatAsArray(node, normalizedSchema)) {\n\t\tif (node.children.some((child) => child.name !== \"item\")) {\n\t\t\tthrow new Error(\"Array-valued XML nodes must wrap entries in <item> tags\");\n\t\t}\n\t\tconst itemSchema = getArrayItemSchema(normalizedSchema);\n\t\tconst itemNodes = node.children.filter((child) => child.name === \"item\");\n\t\treturn itemNodes.map((child) => convertXmlNodeValue(child, itemSchema));\n\t}\n\n\treturn convertChildrenToObject(node.children, normalizedSchema);\n}\n\nfunction shouldTreatAsArray(node: XmlNode, schema: JsonSchema): boolean {\n\tconst types = getSchemaTypes(schema);\n\tif (types.includes(\"array\")) {\n\t\treturn true;\n\t}\n\n\treturn node.children.every((child) => child.name === \"item\");\n}\n\nfunction getArrayItemSchema(schema: JsonSchema): JsonSchema {\n\tif (!schema || typeof schema !== \"object\") {\n\t\treturn undefined;\n\t}\n\n\tconst items = schema.items;\n\tif (items && !Array.isArray(items) && typeof items === \"object\") {\n\t\treturn items as Record<string, unknown>;\n\t}\n\n\treturn undefined;\n}\n\nfunction getPropertySchema(schema: JsonSchema, propertyName: string): JsonSchema {\n\tif (!schema || typeof schema !== \"object\") {\n\t\treturn undefined;\n\t}\n\n\tconst properties = schema.properties;\n\tif (properties && typeof properties === \"object\" && !Array.isArray(properties)) {\n\t\tconst propertySchema = (properties as Record<string, unknown>)[propertyName];\n\t\tif (propertySchema === undefined || typeof propertySchema === \"boolean\" || typeof propertySchema === \"object\") {\n\t\t\treturn propertySchema as JsonSchema;\n\t\t}\n\t}\n\n\tfor (const unionKey of [\"anyOf\", \"oneOf\", \"allOf\"]) {\n\t\tconst unionSchemas = schema[unionKey];\n\t\tif (!Array.isArray(unionSchemas)) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tfor (const unionSchema of unionSchemas) {\n\t\t\tif (typeof unionSchema !== \"object\" || unionSchema === null) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tconst nestedPropertySchema = getPropertySchema(unionSchema as Record<string, unknown>, propertyName);\n\t\t\tif (nestedPropertySchema !== undefined) {\n\t\t\t\treturn nestedPropertySchema;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn undefined;\n}\n\nfunction getSchemaTypes(schema: JsonSchema): string[] {\n\tif (!schema || typeof schema !== \"object\") {\n\t\treturn [];\n\t}\n\n\tconst schemaType = schema.type;\n\tif (typeof schemaType === \"string\") {\n\t\treturn [schemaType];\n\t}\n\n\tif (Array.isArray(schemaType)) {\n\t\treturn schemaType.filter((value): value is string => typeof value === \"string\");\n\t}\n\n\treturn [];\n}\n\nfunction coerceXmlValue(rawValue: string, schema: JsonSchema): unknown {\n\tconst decodedValue = unescapeXml(rawValue);\n\tconst trimmedValue = decodedValue.trim();\n\tconst types = getSchemaTypes(schema);\n\n\tif (types.includes(\"integer\") && /^-?\\d+$/.test(trimmedValue)) {\n\t\treturn Number.parseInt(trimmedValue, 10);\n\t}\n\n\tif (types.includes(\"number\") && /^-?(?:\\d+|\\d*\\.\\d+)$/.test(trimmedValue)) {\n\t\treturn Number(trimmedValue);\n\t}\n\n\tif (types.includes(\"boolean\")) {\n\t\tif (trimmedValue === \"true\") {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (trimmedValue === \"false\") {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\tif (types.includes(\"null\") && trimmedValue === \"null\") {\n\t\treturn null;\n\t}\n\n\tif ((types.includes(\"array\") || types.includes(\"object\")) && trimmedValue.length > 0) {\n\t\ttry {\n\t\t\treturn JSON.parse(trimmedValue);\n\t\t} catch {}\n\t}\n\n\treturn decodedValue;\n}\n\nfunction coercePartialXmlValue(rawValue: string, schema: JsonSchema): unknown {\n\tconst types = getSchemaTypes(schema);\n\tif (types.includes(\"integer\") || types.includes(\"number\")) {\n\t\tconst trimmedValue = unescapeXml(rawValue).trim();\n\t\tif (trimmedValue.length > 0 && /^-?(?:\\d+|\\d*\\.\\d+)$/.test(trimmedValue)) {\n\t\t\treturn types.includes(\"integer\") ? Number.parseInt(trimmedValue, 10) : Number(trimmedValue);\n\t\t}\n\t}\n\n\treturn unescapeXml(rawValue);\n}\n\nfunction parseOpeningTag(text: string, startIndex: number): { endIndex: number; name: string } | null {\n\tconst tagPattern = /<\\s*([A-Za-z_][\\w.-]*)\\s*>/y;\n\ttagPattern.lastIndex = startIndex;\n\tconst match = tagPattern.exec(text);\n\tconst tagName = match?.[1];\n\tif (!match || !tagName) {\n\t\treturn null;\n\t}\n\n\treturn {\n\t\tendIndex: match.index + match[0].length,\n\t\tname: tagName,\n\t};\n}\n\nfunction escapeXml(text: string): string {\n\treturn text\n\t\t.replace(/&/g, \"&\")\n\t\t.replace(/</g, \"<\")\n\t\t.replace(/>/g, \">\")\n\t\t.replace(/\"/g, \""\")\n\t\t.replace(/'/g, \"'\");\n}\n\nfunction unescapeXml(text: string): string {\n\treturn text\n\t\t.replace(/</g, \"<\")\n\t\t.replace(/>/g, \">\")\n\t\t.replace(/"/g, '\"')\n\t\t.replace(/'/g, \"'\")\n\t\t.replace(/&/g, \"&\");\n}\n\nfunction escapeRegExp(text: string): string {\n\treturn text.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n"]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type XmlToolTagMatch = {
|
|
2
|
+
index: number;
|
|
3
|
+
name: string;
|
|
4
|
+
tag: string;
|
|
5
|
+
selfClosing: boolean;
|
|
6
|
+
};
|
|
7
|
+
export declare function findSelfClosingToolTag(text: string, toolName: string, fromIndex: number): {
|
|
8
|
+
index: number;
|
|
9
|
+
length: number;
|
|
10
|
+
tag: string;
|
|
11
|
+
} | null;
|
|
12
|
+
export declare function findEarliestXmlToolTag(text: string, toolNames: string[]): XmlToolTagMatch | null;
|
|
13
|
+
export declare function getSafeXmlTextLength(text: string, toolNames: string[]): number;
|
|
14
|
+
//# sourceMappingURL=xml-tool-tag-scanner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"xml-tool-tag-scanner.d.ts","sourceRoot":"","sources":["../../../src/tool-call-middleware/protocols/xml-tool-tag-scanner.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,OAAO,CAAC;CACrB,CAAC;AAMF,wBAAgB,sBAAsB,CACrC,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GACf;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAQvD;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,eAAe,GAAG,IAAI,CAqBhG;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,MAAM,CAuB9E","sourcesContent":["export type XmlToolTagMatch = {\n\tindex: number;\n\tname: string;\n\ttag: string;\n\tselfClosing: boolean;\n};\n\nfunction escapeRegExp(text: string): string {\n\treturn text.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\nexport function findSelfClosingToolTag(\n\ttext: string,\n\ttoolName: string,\n\tfromIndex: number,\n): { index: number; length: number; tag: string } | null {\n\tconst pattern = new RegExp(`<\\\\s*${escapeRegExp(toolName)}\\\\s*\\\\/\\\\s*>`, \"g\");\n\tpattern.lastIndex = fromIndex;\n\tconst match = pattern.exec(text);\n\tif (!match || match.index === undefined) {\n\t\treturn null;\n\t}\n\treturn { index: match.index, length: match[0].length, tag: match[0] };\n}\n\nexport function findEarliestXmlToolTag(text: string, toolNames: string[]): XmlToolTagMatch | null {\n\tlet earliestTag: XmlToolTagMatch | null = null;\n\n\tfor (const toolName of toolNames) {\n\t\tconst tagPattern = new RegExp(`<\\\\s*${escapeRegExp(toolName)}\\\\s*(\\\\/)?\\\\s*>`);\n\t\tconst match = tagPattern.exec(text);\n\t\tif (!match || match.index === undefined) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (!earliestTag || match.index < earliestTag.index) {\n\t\t\tearliestTag = {\n\t\t\t\tindex: match.index,\n\t\t\t\tname: toolName,\n\t\t\t\ttag: match[0],\n\t\t\t\tselfClosing: match[1] === \"/\",\n\t\t\t};\n\t\t}\n\t}\n\n\treturn earliestTag;\n}\n\nexport function getSafeXmlTextLength(text: string, toolNames: string[]): number {\n\tconst lastTagIndex = text.lastIndexOf(\"<\");\n\tif (lastTagIndex === -1) {\n\t\treturn text.length;\n\t}\n\n\tconst trailingCandidate = text.slice(lastTagIndex);\n\tconst hasPotentialToolStart = toolNames.some((toolName) => {\n\t\tconst candidates = [\n\t\t\t`<${toolName}>`,\n\t\t\t`<${toolName}/>`,\n\t\t\t`< ${toolName}>`,\n\t\t\t`< ${toolName}/>`,\n\t\t\t`<${toolName} />`,\n\t\t\t`< ${toolName} />`,\n\t\t];\n\t\treturn candidates.some((candidate) => candidate.startsWith(trailingCandidate));\n\t});\n\tif (!hasPotentialToolStart) {\n\t\treturn text.length;\n\t}\n\n\treturn lastTagIndex;\n}\n"]}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
function escapeRegExp(text) {
|
|
2
|
+
return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
3
|
+
}
|
|
4
|
+
export function findSelfClosingToolTag(text, toolName, fromIndex) {
|
|
5
|
+
const pattern = new RegExp(`<\\s*${escapeRegExp(toolName)}\\s*\\/\\s*>`, "g");
|
|
6
|
+
pattern.lastIndex = fromIndex;
|
|
7
|
+
const match = pattern.exec(text);
|
|
8
|
+
if (!match || match.index === undefined) {
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
return { index: match.index, length: match[0].length, tag: match[0] };
|
|
12
|
+
}
|
|
13
|
+
export function findEarliestXmlToolTag(text, toolNames) {
|
|
14
|
+
let earliestTag = null;
|
|
15
|
+
for (const toolName of toolNames) {
|
|
16
|
+
const tagPattern = new RegExp(`<\\s*${escapeRegExp(toolName)}\\s*(\\/)?\\s*>`);
|
|
17
|
+
const match = tagPattern.exec(text);
|
|
18
|
+
if (!match || match.index === undefined) {
|
|
19
|
+
continue;
|
|
20
|
+
}
|
|
21
|
+
if (!earliestTag || match.index < earliestTag.index) {
|
|
22
|
+
earliestTag = {
|
|
23
|
+
index: match.index,
|
|
24
|
+
name: toolName,
|
|
25
|
+
tag: match[0],
|
|
26
|
+
selfClosing: match[1] === "/",
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return earliestTag;
|
|
31
|
+
}
|
|
32
|
+
export function getSafeXmlTextLength(text, toolNames) {
|
|
33
|
+
const lastTagIndex = text.lastIndexOf("<");
|
|
34
|
+
if (lastTagIndex === -1) {
|
|
35
|
+
return text.length;
|
|
36
|
+
}
|
|
37
|
+
const trailingCandidate = text.slice(lastTagIndex);
|
|
38
|
+
const hasPotentialToolStart = toolNames.some((toolName) => {
|
|
39
|
+
const candidates = [
|
|
40
|
+
`<${toolName}>`,
|
|
41
|
+
`<${toolName}/>`,
|
|
42
|
+
`< ${toolName}>`,
|
|
43
|
+
`< ${toolName}/>`,
|
|
44
|
+
`<${toolName} />`,
|
|
45
|
+
`< ${toolName} />`,
|
|
46
|
+
];
|
|
47
|
+
return candidates.some((candidate) => candidate.startsWith(trailingCandidate));
|
|
48
|
+
});
|
|
49
|
+
if (!hasPotentialToolStart) {
|
|
50
|
+
return text.length;
|
|
51
|
+
}
|
|
52
|
+
return lastTagIndex;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=xml-tool-tag-scanner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"xml-tool-tag-scanner.js","sourceRoot":"","sources":["../../../src/tool-call-middleware/protocols/xml-tool-tag-scanner.ts"],"names":[],"mappings":"AAOA,SAAS,YAAY,CAAC,IAAY,EAAU;IAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;AAAA,CACnD;AAED,MAAM,UAAU,sBAAsB,CACrC,IAAY,EACZ,QAAgB,EAChB,SAAiB,EACuC;IACxD,MAAM,OAAO,GAAG,IAAI,MAAM,CAAC,QAAQ,YAAY,CAAC,QAAQ,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;IAC9E,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC;IAC9B,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACjC,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;QACzC,OAAO,IAAI,CAAC;IACb,CAAC;IACD,OAAO,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;AAAA,CACtE;AAED,MAAM,UAAU,sBAAsB,CAAC,IAAY,EAAE,SAAmB,EAA0B;IACjG,IAAI,WAAW,GAA2B,IAAI,CAAC;IAE/C,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE,CAAC;QAClC,MAAM,UAAU,GAAG,IAAI,MAAM,CAAC,QAAQ,YAAY,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;QAC/E,MAAM,KAAK,GAAG,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpC,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;YACzC,SAAS;QACV,CAAC;QAED,IAAI,CAAC,WAAW,IAAI,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,EAAE,CAAC;YACrD,WAAW,GAAG;gBACb,KAAK,EAAE,KAAK,CAAC,KAAK;gBAClB,IAAI,EAAE,QAAQ;gBACd,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;gBACb,WAAW,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG;aAC7B,CAAC;QACH,CAAC;IACF,CAAC;IAED,OAAO,WAAW,CAAC;AAAA,CACnB;AAED,MAAM,UAAU,oBAAoB,CAAC,IAAY,EAAE,SAAmB,EAAU;IAC/E,MAAM,YAAY,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;IAC3C,IAAI,YAAY,KAAK,CAAC,CAAC,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC,MAAM,CAAC;IACpB,CAAC;IAED,MAAM,iBAAiB,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IACnD,MAAM,qBAAqB,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC;QAC1D,MAAM,UAAU,GAAG;YAClB,IAAI,QAAQ,GAAG;YACf,IAAI,QAAQ,IAAI;YAChB,KAAK,QAAQ,GAAG;YAChB,KAAK,QAAQ,IAAI;YACjB,IAAI,QAAQ,KAAK;YACjB,KAAK,QAAQ,KAAK;SAClB,CAAC;QACF,OAAO,UAAU,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC,SAAS,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAAA,CAC/E,CAAC,CAAC;IACH,IAAI,CAAC,qBAAqB,EAAE,CAAC;QAC5B,OAAO,IAAI,CAAC,MAAM,CAAC;IACpB,CAAC;IAED,OAAO,YAAY,CAAC;AAAA,CACpB","sourcesContent":["export type XmlToolTagMatch = {\n\tindex: number;\n\tname: string;\n\ttag: string;\n\tselfClosing: boolean;\n};\n\nfunction escapeRegExp(text: string): string {\n\treturn text.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\nexport function findSelfClosingToolTag(\n\ttext: string,\n\ttoolName: string,\n\tfromIndex: number,\n): { index: number; length: number; tag: string } | null {\n\tconst pattern = new RegExp(`<\\\\s*${escapeRegExp(toolName)}\\\\s*\\\\/\\\\s*>`, \"g\");\n\tpattern.lastIndex = fromIndex;\n\tconst match = pattern.exec(text);\n\tif (!match || match.index === undefined) {\n\t\treturn null;\n\t}\n\treturn { index: match.index, length: match[0].length, tag: match[0] };\n}\n\nexport function findEarliestXmlToolTag(text: string, toolNames: string[]): XmlToolTagMatch | null {\n\tlet earliestTag: XmlToolTagMatch | null = null;\n\n\tfor (const toolName of toolNames) {\n\t\tconst tagPattern = new RegExp(`<\\\\s*${escapeRegExp(toolName)}\\\\s*(\\\\/)?\\\\s*>`);\n\t\tconst match = tagPattern.exec(text);\n\t\tif (!match || match.index === undefined) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (!earliestTag || match.index < earliestTag.index) {\n\t\t\tearliestTag = {\n\t\t\t\tindex: match.index,\n\t\t\t\tname: toolName,\n\t\t\t\ttag: match[0],\n\t\t\t\tselfClosing: match[1] === \"/\",\n\t\t\t};\n\t\t}\n\t}\n\n\treturn earliestTag;\n}\n\nexport function getSafeXmlTextLength(text: string, toolNames: string[]): number {\n\tconst lastTagIndex = text.lastIndexOf(\"<\");\n\tif (lastTagIndex === -1) {\n\t\treturn text.length;\n\t}\n\n\tconst trailingCandidate = text.slice(lastTagIndex);\n\tconst hasPotentialToolStart = toolNames.some((toolName) => {\n\t\tconst candidates = [\n\t\t\t`<${toolName}>`,\n\t\t\t`<${toolName}/>`,\n\t\t\t`< ${toolName}>`,\n\t\t\t`< ${toolName}/>`,\n\t\t\t`<${toolName} />`,\n\t\t\t`< ${toolName} />`,\n\t\t];\n\t\treturn candidates.some((candidate) => candidate.startsWith(trailingCandidate));\n\t});\n\tif (!hasPotentialToolStart) {\n\t\treturn text.length;\n\t}\n\n\treturn lastTagIndex;\n}\n"]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { TextContent, Tool } from "../../types.ts";
|
|
2
|
+
import type { ParsedToolCall, ParserOptions, StreamParser } from "../types.ts";
|
|
3
|
+
export declare function yamlXmlFormatToolsSystemPrompt(tools: Tool[]): string;
|
|
4
|
+
export declare function yamlXmlFormatToolCall(name: string, args: Record<string, unknown>): string;
|
|
5
|
+
export declare function yamlXmlFormatToolResponse(toolName: string, _toolCallId: string, content: TextContent[]): string;
|
|
6
|
+
export declare function parseYamlXmlGeneratedText(text: string, tools: Tool[], options?: ParserOptions): ParsedToolCall[];
|
|
7
|
+
export declare function createYamlXmlStreamParser(tools: Tool[], options?: ParserOptions): StreamParser;
|
|
8
|
+
//# sourceMappingURL=yaml-xml.d.ts.map
|
package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"yaml-xml.d.ts","sourceRoot":"","sources":["../../../src/tool-call-middleware/protocols/yaml-xml.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,YAAY,EAAqB,MAAM,aAAa,CAAC;AAuDlG,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,MAAM,CA8BpE;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAGzF;AAED,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,EAAE,GAAG,MAAM,CAa/G;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,cAAc,EAAE,CAqDhH;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,YAAY,CA8K9F","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,295 @@
|
|
|
1
|
+
import YAML from "yaml";
|
|
2
|
+
import { findEarliestXmlToolTag, getSafeXmlTextLength } from "./xml-tool-tag-scanner.js";
|
|
3
|
+
function escapeRegExp(text) {
|
|
4
|
+
return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
5
|
+
}
|
|
6
|
+
function normalizeYamlContent(yamlContent) {
|
|
7
|
+
const trimmedLeadingNewline = yamlContent.startsWith("\n") ? yamlContent.slice(1) : yamlContent;
|
|
8
|
+
const lines = trimmedLeadingNewline.split("\n");
|
|
9
|
+
const nonEmptyLines = lines.filter((line) => line.trim().length > 0);
|
|
10
|
+
if (nonEmptyLines.length === 0) {
|
|
11
|
+
return "";
|
|
12
|
+
}
|
|
13
|
+
const minIndent = Math.min(...nonEmptyLines.map((line) => {
|
|
14
|
+
const match = line.match(/^(\s*)/);
|
|
15
|
+
return match?.[1].length ?? 0;
|
|
16
|
+
}));
|
|
17
|
+
return minIndent > 0 ? lines.map((line) => line.slice(minIndent)).join("\n") : trimmedLeadingNewline;
|
|
18
|
+
}
|
|
19
|
+
function parseYamlMapping(yamlContent) {
|
|
20
|
+
const normalized = normalizeYamlContent(yamlContent);
|
|
21
|
+
if (normalized.trim().length === 0) {
|
|
22
|
+
return {};
|
|
23
|
+
}
|
|
24
|
+
try {
|
|
25
|
+
const parsed = YAML.parse(normalized);
|
|
26
|
+
if (parsed === null) {
|
|
27
|
+
return {};
|
|
28
|
+
}
|
|
29
|
+
if (typeof parsed !== "object" || Array.isArray(parsed)) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return parsed;
|
|
33
|
+
}
|
|
34
|
+
catch {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function findClosingTagEnd(text, contentStart, toolName) {
|
|
39
|
+
const closingPattern = new RegExp(`</\\s*${escapeRegExp(toolName)}\\s*>`, "g");
|
|
40
|
+
closingPattern.lastIndex = contentStart;
|
|
41
|
+
const match = closingPattern.exec(text);
|
|
42
|
+
return match?.index === undefined ? -1 : match.index + match[0].length;
|
|
43
|
+
}
|
|
44
|
+
function shouldEmitRawToolCallTextOnError(options) {
|
|
45
|
+
return options?.emitRawToolCallTextOnError === true;
|
|
46
|
+
}
|
|
47
|
+
export function yamlXmlFormatToolsSystemPrompt(tools) {
|
|
48
|
+
if (tools.length === 0) {
|
|
49
|
+
return "";
|
|
50
|
+
}
|
|
51
|
+
const toolsRendered = JSON.stringify(tools.map((tool) => ({
|
|
52
|
+
name: tool.name,
|
|
53
|
+
description: tool.description,
|
|
54
|
+
parameters: tool.parameters,
|
|
55
|
+
})));
|
|
56
|
+
return `# Tools
|
|
57
|
+
|
|
58
|
+
You may call one or more functions to assist with the user query.
|
|
59
|
+
|
|
60
|
+
You are provided with function signatures within <tools></tools> XML tags:
|
|
61
|
+
<tools>${toolsRendered}</tools>
|
|
62
|
+
|
|
63
|
+
# Format
|
|
64
|
+
|
|
65
|
+
Use exactly one XML element whose tag name is the function name.
|
|
66
|
+
Inside the XML element, specify parameters using YAML syntax (key: value pairs).
|
|
67
|
+
|
|
68
|
+
# Example
|
|
69
|
+
<get_weather>
|
|
70
|
+
city: Seoul
|
|
71
|
+
unit: celsius
|
|
72
|
+
</get_weather>`;
|
|
73
|
+
}
|
|
74
|
+
export function yamlXmlFormatToolCall(name, args) {
|
|
75
|
+
const yamlBody = YAML.stringify(args).trimEnd();
|
|
76
|
+
return `<${name}>\n${yamlBody.length > 0 ? yamlBody : "null"}\n</${name}>`;
|
|
77
|
+
}
|
|
78
|
+
export function yamlXmlFormatToolResponse(toolName, _toolCallId, content) {
|
|
79
|
+
const textContent = content
|
|
80
|
+
.filter((entry) => entry.type === "text")
|
|
81
|
+
.map((entry) => entry.text)
|
|
82
|
+
.join("\n");
|
|
83
|
+
return [
|
|
84
|
+
`<tool_response>`,
|
|
85
|
+
`tool_name: ${toolName}`,
|
|
86
|
+
`result: |-`,
|
|
87
|
+
...textContent.split("\n").map((line) => ` ${line}`),
|
|
88
|
+
`</tool_response>`,
|
|
89
|
+
].join("\n");
|
|
90
|
+
}
|
|
91
|
+
export function parseYamlXmlGeneratedText(text, tools, options) {
|
|
92
|
+
if (tools.length === 0 || text.length === 0) {
|
|
93
|
+
return [];
|
|
94
|
+
}
|
|
95
|
+
const parsedToolCalls = [];
|
|
96
|
+
const toolNames = tools.map((tool) => tool.name);
|
|
97
|
+
let cursor = 0;
|
|
98
|
+
while (cursor < text.length) {
|
|
99
|
+
const openingTag = findEarliestXmlToolTag(text.slice(cursor), toolNames);
|
|
100
|
+
if (!openingTag) {
|
|
101
|
+
break;
|
|
102
|
+
}
|
|
103
|
+
const absoluteIndex = cursor + openingTag.index;
|
|
104
|
+
if (openingTag.selfClosing) {
|
|
105
|
+
parsedToolCalls.push({ name: openingTag.name, arguments: {} });
|
|
106
|
+
cursor = absoluteIndex + openingTag.tag.length;
|
|
107
|
+
continue;
|
|
108
|
+
}
|
|
109
|
+
const contentStart = absoluteIndex + openingTag.tag.length;
|
|
110
|
+
const closingTagEnd = findClosingTagEnd(text, contentStart, openingTag.name);
|
|
111
|
+
if (closingTagEnd === -1) {
|
|
112
|
+
break;
|
|
113
|
+
}
|
|
114
|
+
const closingTagText = text.slice(contentStart, closingTagEnd);
|
|
115
|
+
const closingTagMatch = new RegExp(`</\\s*${escapeRegExp(openingTag.name)}\\s*>`).exec(closingTagText);
|
|
116
|
+
const closingTagIndex = closingTagMatch?.index;
|
|
117
|
+
if (closingTagIndex === undefined) {
|
|
118
|
+
cursor = closingTagEnd;
|
|
119
|
+
continue;
|
|
120
|
+
}
|
|
121
|
+
const yamlContent = closingTagText.slice(0, closingTagIndex);
|
|
122
|
+
const parsedArguments = parseYamlMapping(yamlContent);
|
|
123
|
+
if (parsedArguments !== null) {
|
|
124
|
+
parsedToolCalls.push({
|
|
125
|
+
name: openingTag.name,
|
|
126
|
+
arguments: parsedArguments,
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
options?.onError?.("Could not process YAML XML tool call, keeping original text.", {
|
|
131
|
+
toolCall: text.slice(absoluteIndex, closingTagEnd),
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
cursor = closingTagEnd;
|
|
135
|
+
}
|
|
136
|
+
return parsedToolCalls;
|
|
137
|
+
}
|
|
138
|
+
export function createYamlXmlStreamParser(tools, options) {
|
|
139
|
+
const toolNames = tools.map((tool) => tool.name);
|
|
140
|
+
let buffer = "";
|
|
141
|
+
let currentToolState = null;
|
|
142
|
+
let nextToolCallIndex = 0;
|
|
143
|
+
function emitSnapshot(events, yamlContent) {
|
|
144
|
+
if (!currentToolState) {
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
const parsedArguments = parseYamlMapping(yamlContent);
|
|
148
|
+
if (parsedArguments === null) {
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
const snapshot = JSON.stringify(parsedArguments);
|
|
152
|
+
if (snapshot === "{}" || snapshot === currentToolState.lastArgumentsSnapshot) {
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
if (currentToolState.lastArgumentsSnapshot === null) {
|
|
156
|
+
events.push({
|
|
157
|
+
type: "toolcall_start",
|
|
158
|
+
index: currentToolState.index,
|
|
159
|
+
name: currentToolState.name,
|
|
160
|
+
id: currentToolState.id,
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
currentToolState.lastArgumentsSnapshot = snapshot;
|
|
164
|
+
events.push({
|
|
165
|
+
type: "toolcall_delta",
|
|
166
|
+
index: currentToolState.index,
|
|
167
|
+
argumentsDelta: snapshot,
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
function processBuffer() {
|
|
171
|
+
const events = [];
|
|
172
|
+
while (buffer.length > 0) {
|
|
173
|
+
if (currentToolState) {
|
|
174
|
+
const closingTagRegex = new RegExp(`</\\s*${escapeRegExp(currentToolState.name)}\\s*>`);
|
|
175
|
+
const closingTagMatch = closingTagRegex.exec(buffer);
|
|
176
|
+
if (!closingTagMatch || closingTagMatch.index === undefined) {
|
|
177
|
+
emitSnapshot(events, buffer);
|
|
178
|
+
break;
|
|
179
|
+
}
|
|
180
|
+
const yamlContent = buffer.slice(0, closingTagMatch.index);
|
|
181
|
+
const originalCallText = `<${currentToolState.name}>${yamlContent}${closingTagMatch[0]}`;
|
|
182
|
+
const parsedArguments = parseYamlMapping(yamlContent);
|
|
183
|
+
buffer = buffer.slice(closingTagMatch.index + closingTagMatch[0].length);
|
|
184
|
+
if (parsedArguments === null) {
|
|
185
|
+
options?.onError?.("Could not process YAML XML tool call, keeping original text.", {
|
|
186
|
+
toolCall: originalCallText,
|
|
187
|
+
});
|
|
188
|
+
if (shouldEmitRawToolCallTextOnError(options)) {
|
|
189
|
+
events.push({ type: "text", text: originalCallText });
|
|
190
|
+
}
|
|
191
|
+
currentToolState = null;
|
|
192
|
+
continue;
|
|
193
|
+
}
|
|
194
|
+
emitSnapshot(events, yamlContent);
|
|
195
|
+
if (currentToolState.lastArgumentsSnapshot === null) {
|
|
196
|
+
events.push({
|
|
197
|
+
type: "toolcall_start",
|
|
198
|
+
index: currentToolState.index,
|
|
199
|
+
name: currentToolState.name,
|
|
200
|
+
id: currentToolState.id,
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
events.push({
|
|
204
|
+
type: "toolcall_end",
|
|
205
|
+
index: currentToolState.index,
|
|
206
|
+
name: currentToolState.name,
|
|
207
|
+
id: currentToolState.id,
|
|
208
|
+
arguments: parsedArguments,
|
|
209
|
+
});
|
|
210
|
+
currentToolState = null;
|
|
211
|
+
continue;
|
|
212
|
+
}
|
|
213
|
+
const openingTag = findEarliestXmlToolTag(buffer, toolNames);
|
|
214
|
+
if (!openingTag) {
|
|
215
|
+
const textLength = getSafeXmlTextLength(buffer, toolNames);
|
|
216
|
+
if (textLength === 0) {
|
|
217
|
+
break;
|
|
218
|
+
}
|
|
219
|
+
events.push({ type: "text", text: buffer.slice(0, textLength) });
|
|
220
|
+
buffer = buffer.slice(textLength);
|
|
221
|
+
continue;
|
|
222
|
+
}
|
|
223
|
+
if (openingTag.index > 0) {
|
|
224
|
+
events.push({ type: "text", text: buffer.slice(0, openingTag.index) });
|
|
225
|
+
}
|
|
226
|
+
buffer = buffer.slice(openingTag.index + openingTag.tag.length);
|
|
227
|
+
if (openingTag.selfClosing) {
|
|
228
|
+
const id = `yaml-xml-tool-${nextToolCallIndex}`;
|
|
229
|
+
const index = nextToolCallIndex;
|
|
230
|
+
nextToolCallIndex += 1;
|
|
231
|
+
events.push({ type: "toolcall_start", index, name: openingTag.name, id });
|
|
232
|
+
events.push({ type: "toolcall_end", index, name: openingTag.name, id, arguments: {} });
|
|
233
|
+
continue;
|
|
234
|
+
}
|
|
235
|
+
currentToolState = {
|
|
236
|
+
id: `yaml-xml-tool-${nextToolCallIndex}`,
|
|
237
|
+
index: nextToolCallIndex,
|
|
238
|
+
name: openingTag.name,
|
|
239
|
+
lastArgumentsSnapshot: null,
|
|
240
|
+
};
|
|
241
|
+
nextToolCallIndex += 1;
|
|
242
|
+
}
|
|
243
|
+
return events;
|
|
244
|
+
}
|
|
245
|
+
return {
|
|
246
|
+
feed(textDelta) {
|
|
247
|
+
if (textDelta.length === 0) {
|
|
248
|
+
return [];
|
|
249
|
+
}
|
|
250
|
+
buffer += textDelta;
|
|
251
|
+
return processBuffer();
|
|
252
|
+
},
|
|
253
|
+
finish() {
|
|
254
|
+
const events = processBuffer();
|
|
255
|
+
if (!currentToolState && buffer.length > 0) {
|
|
256
|
+
events.push({ type: "text", text: buffer });
|
|
257
|
+
buffer = "";
|
|
258
|
+
}
|
|
259
|
+
if (currentToolState && buffer.length > 0) {
|
|
260
|
+
const parsedArguments = parseYamlMapping(buffer);
|
|
261
|
+
if (parsedArguments !== null) {
|
|
262
|
+
emitSnapshot(events, buffer);
|
|
263
|
+
if (currentToolState.lastArgumentsSnapshot === null) {
|
|
264
|
+
events.push({
|
|
265
|
+
type: "toolcall_start",
|
|
266
|
+
index: currentToolState.index,
|
|
267
|
+
name: currentToolState.name,
|
|
268
|
+
id: currentToolState.id,
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
events.push({
|
|
272
|
+
type: "toolcall_end",
|
|
273
|
+
index: currentToolState.index,
|
|
274
|
+
name: currentToolState.name,
|
|
275
|
+
id: currentToolState.id,
|
|
276
|
+
arguments: parsedArguments,
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
else {
|
|
280
|
+
const rawToolCall = `<${currentToolState.name}>${buffer}`;
|
|
281
|
+
options?.onError?.("Could not complete streaming YAML XML tool call at finish.", {
|
|
282
|
+
toolCall: rawToolCall,
|
|
283
|
+
});
|
|
284
|
+
if (shouldEmitRawToolCallTextOnError(options)) {
|
|
285
|
+
events.push({ type: "text", text: rawToolCall });
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
buffer = "";
|
|
289
|
+
currentToolState = null;
|
|
290
|
+
}
|
|
291
|
+
return events;
|
|
292
|
+
},
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
//# sourceMappingURL=yaml-xml.js.map
|