@herbertgao/pi-extensions 2026.8.2 → 2026.8.3
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/README.md +9 -2
- package/node_modules/@herbertgao/pi-cc-extensions/README.en.md +6 -8
- package/node_modules/@herbertgao/pi-cc-extensions/README.md +5 -7
- package/node_modules/@herbertgao/pi-cc-extensions/assets/readme/hero.en.svg +101 -0
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/config.ts +1 -17
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/panel.ts +5 -3
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/{utils/agent-summary.ts → feature/agent-summary/core.ts} +37 -35
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{agent-summary.ts → agent-summary/index.ts} +2 -6
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{session-reference.ts → reference/index.ts} +1 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{agent-autocomplete.ts → reference/subagent.ts} +19 -9
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{pi-startup-header.ts → shell/startup-header.ts} +1 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{working-message.ts → shell/working-message.ts} +5 -2
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/index.ts +32 -28
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/compact-mode.ts +379 -85
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/default-mode.ts +727 -0
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/index.ts +65 -775
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/{feature → renderer}/markdown-enhance.ts +35 -31
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{mouse-hover.ts → mouse/hover.ts} +5 -5
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{mouse-interaction.ts → mouse/interaction.ts} +34 -35
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{mouse-layout.ts → mouse/layout.ts} +5 -21
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{mouse-packets.ts → mouse/packets.ts} +1 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{mouse-scroll.ts → mouse/scroll.ts} +48 -37
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/ansi-utils.ts +56 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/diff-renderer.ts +2 -2
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/line-width-safety.ts +1 -1
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/diff/write-display-utils.ts +12 -0
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/write-execution.ts +1 -2
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-grouping.ts → tool/grouping.ts} +18 -8
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-result.ts → tool/result.ts} +4 -13
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/utils/fullscreen-detect.ts +0 -27
- package/node_modules/@herbertgao/pi-cc-extensions/package.json +3 -3
- package/node_modules/@herbertgao/pi-subagents/CHANGELOG.md +6 -0
- package/node_modules/@herbertgao/pi-subagents/package.json +2 -2
- package/node_modules/@herbertgao/pi-subagents/src/agent-manager.ts +1 -0
- package/node_modules/@herbertgao/pi-subagents/src/agent-runner.ts +3 -1
- package/node_modules/@herbertgao/pi-subagents/src/index.ts +33 -35
- package/node_modules/@herbertgao/pi-subagents/src/nested-tools.ts +26 -35
- package/node_modules/@herbertgao/pi-subagents/src/prompts.ts +15 -1
- package/node_modules/pi-mcp-adapter/CHANGELOG.md +19 -0
- package/node_modules/pi-mcp-adapter/README.md +19 -4
- package/node_modules/pi-mcp-adapter/agent-dir.ts +40 -0
- package/node_modules/pi-mcp-adapter/commands.ts +12 -2
- package/node_modules/pi-mcp-adapter/direct-tools.ts +6 -8
- package/node_modules/pi-mcp-adapter/index.ts +15 -3
- package/node_modules/pi-mcp-adapter/mcp-auth-flow.ts +87 -4
- package/node_modules/pi-mcp-adapter/mcp-callback-server.ts +138 -61
- package/node_modules/pi-mcp-adapter/mcp-oauth-provider.ts +43 -4
- package/node_modules/pi-mcp-adapter/oauth.ts +48 -0
- package/node_modules/pi-mcp-adapter/package.json +8 -2
- package/node_modules/pi-mcp-adapter/proxy-modes.ts +8 -10
- package/node_modules/pi-mcp-adapter/tool-registrar.ts +187 -3
- package/node_modules/pi-mcp-adapter/types.ts +2 -0
- package/node_modules/pi-web-access/CHANGELOG.md +45 -0
- package/node_modules/pi-web-access/README.md +104 -29
- package/node_modules/pi-web-access/bocha.ts +221 -0
- package/node_modules/pi-web-access/curator-page.ts +113 -12
- package/node_modules/pi-web-access/curator-server.ts +56 -20
- package/node_modules/pi-web-access/datalab-pdf-extract.ts +568 -0
- package/node_modules/pi-web-access/duckduckgo.ts +123 -0
- package/node_modules/pi-web-access/extract.ts +288 -143
- package/node_modules/pi-web-access/feature-config.ts +29 -0
- package/node_modules/pi-web-access/gemini-api.ts +4 -0
- package/node_modules/pi-web-access/gemini-search.ts +45 -12
- package/node_modules/pi-web-access/gemini-web.ts +68 -3
- package/node_modules/pi-web-access/index.ts +160 -71
- package/node_modules/pi-web-access/jina-search.ts +284 -0
- package/node_modules/pi-web-access/kagi.ts +12 -12
- package/node_modules/pi-web-access/openai-search.ts +12 -2
- package/node_modules/pi-web-access/package.json +4 -3
- package/node_modules/pi-web-access/pdf-extract.ts +327 -228
- package/node_modules/pi-web-access/storage.ts +440 -2
- package/node_modules/pi-web-access/summary-model-scope.ts +1 -1
- package/node_modules/pi-web-access/summary-review.ts +4 -2
- package/node_modules/pi-web-access/video-extract.ts +10 -8
- package/node_modules/pi-web-access/xai-search.ts +12 -2
- package/node_modules/pi-web-access/youtube-extract.ts +2 -1
- package/node_modules/remote-pi/LICENSE +21 -0
- package/node_modules/remote-pi/README.md +675 -0
- package/node_modules/remote-pi/dist/actions/handlers.d.ts +122 -0
- package/node_modules/remote-pi/dist/actions/handlers.js +160 -0
- package/node_modules/remote-pi/dist/actions/handlers.js.map +1 -0
- package/node_modules/remote-pi/dist/actions/registry.d.ts +39 -0
- package/node_modules/remote-pi/dist/actions/registry.js +58 -0
- package/node_modules/remote-pi/dist/actions/registry.js.map +1 -0
- package/node_modules/remote-pi/dist/bin/supervisord.d.ts +2 -0
- package/node_modules/remote-pi/dist/bin/supervisord.js +86 -0
- package/node_modules/remote-pi/dist/bin/supervisord.js.map +1 -0
- package/node_modules/remote-pi/dist/commands/builtin_mirror.d.ts +58 -0
- package/node_modules/remote-pi/dist/commands/builtin_mirror.js +71 -0
- package/node_modules/remote-pi/dist/commands/builtin_mirror.js.map +1 -0
- package/node_modules/remote-pi/dist/commands/list_commands.d.ts +60 -0
- package/node_modules/remote-pi/dist/commands/list_commands.js +73 -0
- package/node_modules/remote-pi/dist/commands/list_commands.js.map +1 -0
- package/node_modules/remote-pi/dist/config.d.ts +62 -0
- package/node_modules/remote-pi/dist/config.js +115 -0
- package/node_modules/remote-pi/dist/config.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/client.d.ts +20 -0
- package/node_modules/remote-pi/dist/daemon/client.js +131 -0
- package/node_modules/remote-pi/dist/daemon/client.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/control_protocol.d.ts +176 -0
- package/node_modules/remote-pi/dist/daemon/control_protocol.js +63 -0
- package/node_modules/remote-pi/dist/daemon/control_protocol.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/cron_log.d.ts +45 -0
- package/node_modules/remote-pi/dist/daemon/cron_log.js +72 -0
- package/node_modules/remote-pi/dist/daemon/cron_log.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/cron_registry.d.ts +80 -0
- package/node_modules/remote-pi/dist/daemon/cron_registry.js +194 -0
- package/node_modules/remote-pi/dist/daemon/cron_registry.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/id.d.ts +24 -0
- package/node_modules/remote-pi/dist/daemon/id.js +36 -0
- package/node_modules/remote-pi/dist/daemon/id.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/install.d.ts +170 -0
- package/node_modules/remote-pi/dist/daemon/install.js +547 -0
- package/node_modules/remote-pi/dist/daemon/install.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/registry.d.ts +63 -0
- package/node_modules/remote-pi/dist/daemon/registry.js +153 -0
- package/node_modules/remote-pi/dist/daemon/registry.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/rpc_child.d.ts +194 -0
- package/node_modules/remote-pi/dist/daemon/rpc_child.js +389 -0
- package/node_modules/remote-pi/dist/daemon/rpc_child.js.map +1 -0
- package/node_modules/remote-pi/dist/daemon/supervisor.d.ts +93 -0
- package/node_modules/remote-pi/dist/daemon/supervisor.js +596 -0
- package/node_modules/remote-pi/dist/daemon/supervisor.js.map +1 -0
- package/node_modules/remote-pi/dist/extension_ui_bridge.d.ts +26 -0
- package/node_modules/remote-pi/dist/extension_ui_bridge.js +341 -0
- package/node_modules/remote-pi/dist/extension_ui_bridge.js.map +1 -0
- package/node_modules/remote-pi/dist/index.d.ts +213 -0
- package/node_modules/remote-pi/dist/index.js +4996 -0
- package/node_modules/remote-pi/dist/index.js.map +1 -0
- package/node_modules/remote-pi/dist/mcp/mesh_result.d.ts +10 -0
- package/node_modules/remote-pi/dist/mcp/mesh_result.js +42 -0
- package/node_modules/remote-pi/dist/mcp/mesh_result.js.map +1 -0
- package/node_modules/remote-pi/dist/mcp/mesh_server.d.ts +16 -0
- package/node_modules/remote-pi/dist/mcp/mesh_server.js +327 -0
- package/node_modules/remote-pi/dist/mcp/mesh_server.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/canonical.d.ts +30 -0
- package/node_modules/remote-pi/dist/mesh/canonical.js +61 -0
- package/node_modules/remote-pi/dist/mesh/canonical.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/client.d.ts +18 -0
- package/node_modules/remote-pi/dist/mesh/client.js +125 -0
- package/node_modules/remote-pi/dist/mesh/client.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/encoding.d.ts +38 -0
- package/node_modules/remote-pi/dist/mesh/encoding.js +216 -0
- package/node_modules/remote-pi/dist/mesh/encoding.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/self_revoke.d.ts +73 -0
- package/node_modules/remote-pi/dist/mesh/self_revoke.js +401 -0
- package/node_modules/remote-pi/dist/mesh/self_revoke.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/siblings.d.ts +49 -0
- package/node_modules/remote-pi/dist/mesh/siblings.js +159 -0
- package/node_modules/remote-pi/dist/mesh/siblings.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/types.d.ts +34 -0
- package/node_modules/remote-pi/dist/mesh/types.js +11 -0
- package/node_modules/remote-pi/dist/mesh/types.js.map +1 -0
- package/node_modules/remote-pi/dist/mesh/verify.d.ts +17 -0
- package/node_modules/remote-pi/dist/mesh/verify.js +86 -0
- package/node_modules/remote-pi/dist/mesh/verify.js.map +1 -0
- package/node_modules/remote-pi/dist/pairing/crypto.d.ts +8 -0
- package/node_modules/remote-pi/dist/pairing/crypto.js +22 -0
- package/node_modules/remote-pi/dist/pairing/crypto.js.map +1 -0
- package/node_modules/remote-pi/dist/pairing/handshake.d.ts +28 -0
- package/node_modules/remote-pi/dist/pairing/handshake.js +113 -0
- package/node_modules/remote-pi/dist/pairing/handshake.js.map +1 -0
- package/node_modules/remote-pi/dist/pairing/noise-sha256.d.ts +16 -0
- package/node_modules/remote-pi/dist/pairing/noise-sha256.js +103 -0
- package/node_modules/remote-pi/dist/pairing/noise-sha256.js.map +1 -0
- package/node_modules/remote-pi/dist/pairing/qr.d.ts +59 -0
- package/node_modules/remote-pi/dist/pairing/qr.js +125 -0
- package/node_modules/remote-pi/dist/pairing/qr.js.map +1 -0
- package/node_modules/remote-pi/dist/pairing/storage.d.ts +120 -0
- package/node_modules/remote-pi/dist/pairing/storage.js +604 -0
- package/node_modules/remote-pi/dist/pairing/storage.js.map +1 -0
- package/node_modules/remote-pi/dist/protocol/codec.d.ts +7 -0
- package/node_modules/remote-pi/dist/protocol/codec.js +49 -0
- package/node_modules/remote-pi/dist/protocol/codec.js.map +1 -0
- package/node_modules/remote-pi/dist/protocol/types.d.ts +393 -0
- package/node_modules/remote-pi/dist/protocol/types.js +2 -0
- package/node_modules/remote-pi/dist/protocol/types.js.map +1 -0
- package/node_modules/remote-pi/dist/rooms.d.ts +29 -0
- package/node_modules/remote-pi/dist/rooms.js +57 -0
- package/node_modules/remote-pi/dist/rooms.js.map +1 -0
- package/node_modules/remote-pi/dist/session/address.d.ts +49 -0
- package/node_modules/remote-pi/dist/session/address.js +58 -0
- package/node_modules/remote-pi/dist/session/address.js.map +1 -0
- package/node_modules/remote-pi/dist/session/agent_bridge.d.ts +55 -0
- package/node_modules/remote-pi/dist/session/agent_bridge.js +146 -0
- package/node_modules/remote-pi/dist/session/agent_bridge.js.map +1 -0
- package/node_modules/remote-pi/dist/session/bridge.d.ts +37 -0
- package/node_modules/remote-pi/dist/session/bridge.js +130 -0
- package/node_modules/remote-pi/dist/session/bridge.js.map +1 -0
- package/node_modules/remote-pi/dist/session/broker.d.ts +189 -0
- package/node_modules/remote-pi/dist/session/broker.js +507 -0
- package/node_modules/remote-pi/dist/session/broker.js.map +1 -0
- package/node_modules/remote-pi/dist/session/broker_remote.d.ts +74 -0
- package/node_modules/remote-pi/dist/session/broker_remote.js +583 -0
- package/node_modules/remote-pi/dist/session/broker_remote.js.map +1 -0
- package/node_modules/remote-pi/dist/session/cwd_lock.d.ts +33 -0
- package/node_modules/remote-pi/dist/session/cwd_lock.js +126 -0
- package/node_modules/remote-pi/dist/session/cwd_lock.js.map +1 -0
- package/node_modules/remote-pi/dist/session/envelope.d.ts +33 -0
- package/node_modules/remote-pi/dist/session/envelope.js +117 -0
- package/node_modules/remote-pi/dist/session/envelope.js.map +1 -0
- package/node_modules/remote-pi/dist/session/global_config.d.ts +33 -0
- package/node_modules/remote-pi/dist/session/global_config.js +73 -0
- package/node_modules/remote-pi/dist/session/global_config.js.map +1 -0
- package/node_modules/remote-pi/dist/session/ipc.d.ts +27 -0
- package/node_modules/remote-pi/dist/session/ipc.js +22 -0
- package/node_modules/remote-pi/dist/session/ipc.js.map +1 -0
- package/node_modules/remote-pi/dist/session/leader_election.d.ts +32 -0
- package/node_modules/remote-pi/dist/session/leader_election.js +106 -0
- package/node_modules/remote-pi/dist/session/leader_election.js.map +1 -0
- package/node_modules/remote-pi/dist/session/local_config.d.ts +55 -0
- package/node_modules/remote-pi/dist/session/local_config.js +157 -0
- package/node_modules/remote-pi/dist/session/local_config.js.map +1 -0
- package/node_modules/remote-pi/dist/session/mesh_message.d.ts +20 -0
- package/node_modules/remote-pi/dist/session/mesh_message.js +28 -0
- package/node_modules/remote-pi/dist/session/mesh_message.js.map +1 -0
- package/node_modules/remote-pi/dist/session/mesh_node.d.ts +116 -0
- package/node_modules/remote-pi/dist/session/mesh_node.js +573 -0
- package/node_modules/remote-pi/dist/session/mesh_node.js.map +1 -0
- package/node_modules/remote-pi/dist/session/peer.d.ts +139 -0
- package/node_modules/remote-pi/dist/session/peer.js +451 -0
- package/node_modules/remote-pi/dist/session/peer.js.map +1 -0
- package/node_modules/remote-pi/dist/session/peer_inventory.d.ts +13 -0
- package/node_modules/remote-pi/dist/session/peer_inventory.js +48 -0
- package/node_modules/remote-pi/dist/session/peer_inventory.js.map +1 -0
- package/node_modules/remote-pi/dist/session/peer_limits.d.ts +9 -0
- package/node_modules/remote-pi/dist/session/peer_limits.js +21 -0
- package/node_modules/remote-pi/dist/session/peer_limits.js.map +1 -0
- package/node_modules/remote-pi/dist/session/setup_wizard.d.ts +39 -0
- package/node_modules/remote-pi/dist/session/setup_wizard.js +63 -0
- package/node_modules/remote-pi/dist/session/setup_wizard.js.map +1 -0
- package/node_modules/remote-pi/dist/session/tool_gate.d.ts +5 -0
- package/node_modules/remote-pi/dist/session/tool_gate.js +11 -0
- package/node_modules/remote-pi/dist/session/tool_gate.js.map +1 -0
- package/node_modules/remote-pi/dist/session/tools.d.ts +24 -0
- package/node_modules/remote-pi/dist/session/tools.js +252 -0
- package/node_modules/remote-pi/dist/session/tools.js.map +1 -0
- package/node_modules/remote-pi/dist/session/wizard.d.ts +13 -0
- package/node_modules/remote-pi/dist/session/wizard.js +20 -0
- package/node_modules/remote-pi/dist/session/wizard.js.map +1 -0
- package/node_modules/remote-pi/dist/settings.d.ts +15 -0
- package/node_modules/remote-pi/dist/settings.js +52 -0
- package/node_modules/remote-pi/dist/settings.js.map +1 -0
- package/node_modules/remote-pi/dist/transport/peer_channel.d.ts +37 -0
- package/node_modules/remote-pi/dist/transport/peer_channel.js +98 -0
- package/node_modules/remote-pi/dist/transport/peer_channel.js.map +1 -0
- package/node_modules/remote-pi/dist/transport/pi_forward_client.d.ts +29 -0
- package/node_modules/remote-pi/dist/transport/pi_forward_client.js +62 -0
- package/node_modules/remote-pi/dist/transport/pi_forward_client.js.map +1 -0
- package/node_modules/remote-pi/dist/transport/relay_client.d.ts +91 -0
- package/node_modules/remote-pi/dist/transport/relay_client.js +206 -0
- package/node_modules/remote-pi/dist/transport/relay_client.js.map +1 -0
- package/node_modules/remote-pi/dist/ui/footer.d.ts +32 -0
- package/node_modules/remote-pi/dist/ui/footer.js +34 -0
- package/node_modules/remote-pi/dist/ui/footer.js.map +1 -0
- package/node_modules/remote-pi/docs/daemon.md +289 -0
- package/node_modules/remote-pi/package.json +88 -0
- package/node_modules/remote-pi/service-templates/launchd.plist.template +35 -0
- package/node_modules/remote-pi/service-templates/systemd.service.template +19 -0
- package/node_modules/remote-pi/service-templates/task-launcher.vbs.template +10 -0
- package/node_modules/remote-pi/service-templates/task-scheduler.xml.template +38 -0
- package/node_modules/remote-pi/skills/agent-network/SKILL.md +310 -0
- package/package.json +19 -9
- package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool-diff/write-display-utils.ts +0 -29
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{session-reference-core.ts → reference/session.ts} +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/{pi-aliases.ts → shell/aliases.ts} +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/ATTRIBUTION.md +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/diff-presentation.ts +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/index.ts +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/render-utils.ts +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/shiki-highlight.ts +0 -0
- /package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/{tool-diff → tool/diff}/types.ts +0 -0
|
@@ -0,0 +1,568 @@
|
|
|
1
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
2
|
+
import {
|
|
3
|
+
hasCredentialSource,
|
|
4
|
+
resolveCredential,
|
|
5
|
+
redactCredential,
|
|
6
|
+
} from "./credential-source.ts";
|
|
7
|
+
import { getWebSearchConfigPath } from "./utils.ts";
|
|
8
|
+
|
|
9
|
+
const DEFAULT_API_HOST = "https://www.datalab.to";
|
|
10
|
+
const API_PREFIX = "/api/v1";
|
|
11
|
+
const DEFAULT_TIMEOUT_MS = 120_000;
|
|
12
|
+
const DEFAULT_POLL_INTERVAL_MS = 1_500;
|
|
13
|
+
const MAX_RESPONSE_BYTES = 4 * 1024 * 1024;
|
|
14
|
+
const MAX_ERROR_BODY_BYTES = 300;
|
|
15
|
+
const CLEANUP_TIMEOUT_MS = 5_000;
|
|
16
|
+
const CONFIG_PATH = getWebSearchConfigPath();
|
|
17
|
+
|
|
18
|
+
export type DatalabMode = "fast" | "balanced" | "accurate";
|
|
19
|
+
export type DatalabProcessingLocation = "eu" | "us";
|
|
20
|
+
|
|
21
|
+
export const DATALAB_MODE_VALUES = new Set<DatalabMode>([
|
|
22
|
+
"fast",
|
|
23
|
+
"balanced",
|
|
24
|
+
"accurate",
|
|
25
|
+
]);
|
|
26
|
+
export const DATALAB_LOCATION_VALUES = new Set<DatalabProcessingLocation>([
|
|
27
|
+
"eu",
|
|
28
|
+
"us",
|
|
29
|
+
]);
|
|
30
|
+
export const DEFAULT_DATALAB_MODE: DatalabMode = "balanced";
|
|
31
|
+
export const DEFAULT_PROCESSING_LOCATION: DatalabProcessingLocation = "us";
|
|
32
|
+
export const DEFAULT_DATALAB_TIMEOUT_MS = DEFAULT_TIMEOUT_MS;
|
|
33
|
+
|
|
34
|
+
interface DatalabConfig {
|
|
35
|
+
datalabApiKey?: unknown;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
let cachedConfig: DatalabConfig | null = null;
|
|
39
|
+
|
|
40
|
+
function loadConfig(): DatalabConfig {
|
|
41
|
+
if (cachedConfig) return cachedConfig;
|
|
42
|
+
if (!existsSync(CONFIG_PATH)) {
|
|
43
|
+
cachedConfig = {};
|
|
44
|
+
return cachedConfig;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const rawText = readFileSync(CONFIG_PATH, "utf-8");
|
|
48
|
+
try {
|
|
49
|
+
cachedConfig = JSON.parse(rawText) as DatalabConfig;
|
|
50
|
+
return cachedConfig;
|
|
51
|
+
} catch (err) {
|
|
52
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
53
|
+
throw new Error(`Failed to parse ${CONFIG_PATH}: ${message}`);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function normalizeString(value: unknown): string | null {
|
|
58
|
+
if (typeof value !== "string") return null;
|
|
59
|
+
const normalized = value.trim();
|
|
60
|
+
return normalized.length > 0 ? normalized : null;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function normalizeFileId(value: unknown): string | null {
|
|
64
|
+
if (typeof value === "number" && Number.isFinite(value)) return String(value);
|
|
65
|
+
return normalizeString(value);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function isDatalabApiAvailable(): boolean {
|
|
69
|
+
return hasCredentialSource({
|
|
70
|
+
provider: "Datalab",
|
|
71
|
+
configuredValue: loadConfig().datalabApiKey,
|
|
72
|
+
environmentValue: process.env.DATALAB_API_KEY,
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export async function getDatalabApiKey(
|
|
77
|
+
signal?: AbortSignal,
|
|
78
|
+
): Promise<string | null> {
|
|
79
|
+
return resolveCredential({
|
|
80
|
+
provider: "Datalab",
|
|
81
|
+
configuredValue: loadConfig().datalabApiKey,
|
|
82
|
+
environmentValue: process.env.DATALAB_API_KEY,
|
|
83
|
+
signal,
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function getDatalabApiBase(): string {
|
|
88
|
+
const normalized = normalizeString(process.env.DATALAB_API_BASE)?.replace(
|
|
89
|
+
/\/+$/,
|
|
90
|
+
"",
|
|
91
|
+
);
|
|
92
|
+
return normalized || `${DEFAULT_API_HOST}${API_PREFIX}`;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Resolve the processing region. US storage and processing is the default;
|
|
97
|
+
* set `DATALAB_PROCESSING_LOCATION=eu` to use EU data residency at Datalab's
|
|
98
|
+
* documented 1.25× usage rate. Only `eu` and `us` are supported by the API.
|
|
99
|
+
* Config errors are thrown with a `Failed to parse` prefix so the
|
|
100
|
+
* extraction fallback chain treats them as fatal, mirroring how malformed
|
|
101
|
+
* web-search config is handled elsewhere.
|
|
102
|
+
*/
|
|
103
|
+
export function getDatalabProcessingLocation(): DatalabProcessingLocation {
|
|
104
|
+
const value =
|
|
105
|
+
normalizeString(process.env.DATALAB_PROCESSING_LOCATION) ??
|
|
106
|
+
DEFAULT_PROCESSING_LOCATION;
|
|
107
|
+
const normalized = value.toLowerCase() as DatalabProcessingLocation;
|
|
108
|
+
if (!DATALAB_LOCATION_VALUES.has(normalized)) {
|
|
109
|
+
throw new Error(
|
|
110
|
+
`Failed to parse DATALAB_PROCESSING_LOCATION: expected "eu" or "us", got "${value}"`,
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
return normalized;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export function normalizeDatalabMode(value: unknown): DatalabMode {
|
|
117
|
+
const raw = normalizeString(value);
|
|
118
|
+
if (!raw) return DEFAULT_DATALAB_MODE;
|
|
119
|
+
const normalized = raw.toLowerCase() as DatalabMode;
|
|
120
|
+
if (DATALAB_MODE_VALUES.has(normalized)) return normalized;
|
|
121
|
+
throw new Error(
|
|
122
|
+
`Failed to parse datalab mode: expected "fast", "balanced", or "accurate", got "${value}"`,
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface DatalabPDFExtractOptions {
|
|
127
|
+
maxPages: number;
|
|
128
|
+
title: string;
|
|
129
|
+
signal?: AbortSignal;
|
|
130
|
+
timeoutMs?: number;
|
|
131
|
+
mode?: DatalabMode;
|
|
132
|
+
processingLocation?: DatalabProcessingLocation;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export interface DatalabPDFExtractResult {
|
|
136
|
+
markdown: string;
|
|
137
|
+
pages: number;
|
|
138
|
+
parseQualityScore?: number;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
interface DatalabUploadRequest {
|
|
142
|
+
file_id?: unknown;
|
|
143
|
+
upload_url?: unknown;
|
|
144
|
+
reference?: unknown;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
interface DatalabConfirmResponse {
|
|
148
|
+
file_id?: unknown;
|
|
149
|
+
reference?: unknown;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
interface DatalabConversionState {
|
|
153
|
+
status?: unknown;
|
|
154
|
+
success?: unknown;
|
|
155
|
+
request_check_url?: unknown;
|
|
156
|
+
markdown?: unknown;
|
|
157
|
+
page_count?: unknown;
|
|
158
|
+
parse_quality_score?: unknown;
|
|
159
|
+
error?: unknown;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Convert a PDF buffer to Markdown through the Datalab hosted API.
|
|
164
|
+
*
|
|
165
|
+
* Datalab converts documents with a dedicated extraction engine (Marker),
|
|
166
|
+
* which preserves tables, multi-column reading order, headings, and math
|
|
167
|
+
* where the local `unpdf` fallback only produces flattened text. Conversion
|
|
168
|
+
* is deterministic (no LLM transcription drift), and `accurate` mode handles
|
|
169
|
+
* scanned pages. Completed responses may include a `parse_quality_score` (0–5)
|
|
170
|
+
* for quality gating. Billing is per processed page; the free tier includes a
|
|
171
|
+
* monthly credit (see README) so light use costs nothing.
|
|
172
|
+
*
|
|
173
|
+
* The flow is:
|
|
174
|
+
* 1. request a presigned upload URL for the selected processing region,
|
|
175
|
+
* 2. PUT the PDF bytes directly to storage,
|
|
176
|
+
* 3. confirm the upload to obtain a `datalab://` reference,
|
|
177
|
+
* 4. submit the conversion with that reference, then
|
|
178
|
+
* 5. poll the returned `request_check_url` until `complete` or `failed`.
|
|
179
|
+
*
|
|
180
|
+
* The processing region is fixed at the upload step (US by default; set
|
|
181
|
+
* `DATALAB_PROCESSING_LOCATION=eu` for EU data residency). The convert step
|
|
182
|
+
* deliberately omits `processing_location` because the API rejects multipart form data that
|
|
183
|
+
* carries it; the server processes the file from the storage region it was
|
|
184
|
+
* uploaded to. The uploaded file is deleted best-effort after conversion.
|
|
185
|
+
* The caller's signal and a shared deadline bound the whole exchange.
|
|
186
|
+
*/
|
|
187
|
+
export async function extractPDFViaDatalab(
|
|
188
|
+
buffer: ArrayBuffer,
|
|
189
|
+
options: DatalabPDFExtractOptions,
|
|
190
|
+
): Promise<DatalabPDFExtractResult> {
|
|
191
|
+
options.signal?.throwIfAborted();
|
|
192
|
+
const apiKey = await getDatalabApiKey(options.signal);
|
|
193
|
+
options.signal?.throwIfAborted();
|
|
194
|
+
if (!apiKey) {
|
|
195
|
+
throw new Error(
|
|
196
|
+
"Datalab PDF conversion requires a configured Datalab API key",
|
|
197
|
+
);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const mode = options.mode ?? normalizeDatalabMode(process.env.DATALAB_MODE);
|
|
201
|
+
const processingLocation =
|
|
202
|
+
options.processingLocation ?? getDatalabProcessingLocation();
|
|
203
|
+
const timeoutMs =
|
|
204
|
+
typeof options.timeoutMs === "number" &&
|
|
205
|
+
Number.isFinite(options.timeoutMs) &&
|
|
206
|
+
options.timeoutMs > 0
|
|
207
|
+
? Math.floor(options.timeoutMs)
|
|
208
|
+
: DEFAULT_TIMEOUT_MS;
|
|
209
|
+
const deadline = Date.now() + timeoutMs;
|
|
210
|
+
|
|
211
|
+
const upload = await requestUploadUrl({
|
|
212
|
+
apiKey,
|
|
213
|
+
title: options.title,
|
|
214
|
+
processingLocation,
|
|
215
|
+
signal: options.signal,
|
|
216
|
+
deadline,
|
|
217
|
+
});
|
|
218
|
+
if (typeof upload.upload_url !== "string" || !upload.upload_url) {
|
|
219
|
+
throw new Error("Datalab PDF conversion failed: missing upload_url");
|
|
220
|
+
}
|
|
221
|
+
const uploadFileId = normalizeFileId(upload.file_id);
|
|
222
|
+
if (!uploadFileId) {
|
|
223
|
+
throw new Error("Datalab PDF conversion failed: missing file_id");
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
let fileId = uploadFileId;
|
|
227
|
+
let reference = normalizeString(upload.reference);
|
|
228
|
+
|
|
229
|
+
try {
|
|
230
|
+
const put = await fetchDatalab(
|
|
231
|
+
upload.upload_url,
|
|
232
|
+
{
|
|
233
|
+
method: "PUT",
|
|
234
|
+
headers: { "content-type": "application/pdf" },
|
|
235
|
+
body: new Blob([buffer], { type: "application/pdf" }),
|
|
236
|
+
signal: withTimeout(options.signal, remaining(deadline)),
|
|
237
|
+
},
|
|
238
|
+
apiKey,
|
|
239
|
+
);
|
|
240
|
+
if (!put.ok) {
|
|
241
|
+
throw new Error(
|
|
242
|
+
`Datalab PDF upload failed: HTTP ${put.status} ${put.statusText}`,
|
|
243
|
+
);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
const confirmed = await confirmUpload(
|
|
247
|
+
apiKey,
|
|
248
|
+
String(fileId),
|
|
249
|
+
options.signal,
|
|
250
|
+
deadline,
|
|
251
|
+
);
|
|
252
|
+
fileId = normalizeFileId(confirmed.file_id) ?? fileId;
|
|
253
|
+
reference = normalizeString(confirmed.reference) ?? reference;
|
|
254
|
+
if (!reference) {
|
|
255
|
+
throw new Error("Datalab PDF conversion failed: missing file reference");
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
const form = new FormData();
|
|
259
|
+
form.append("file_url", reference);
|
|
260
|
+
form.append("output_format", "markdown");
|
|
261
|
+
form.append("mode", mode);
|
|
262
|
+
form.append("max_pages", String(options.maxPages));
|
|
263
|
+
form.append("paginate", "true");
|
|
264
|
+
|
|
265
|
+
// The conversion itself must NOT repeat processing_location: the API
|
|
266
|
+
// rejects multipart form data carrying processing_location (HTTP 403).
|
|
267
|
+
// The region was already fixed when the presigned upload was issued for
|
|
268
|
+
// storage in the selected region, so the server processes the file
|
|
269
|
+
// wherever it was stored (US by default; use the env override for EU).
|
|
270
|
+
|
|
271
|
+
const submit = await fetchDatalab(
|
|
272
|
+
`${getDatalabApiBase()}/convert`,
|
|
273
|
+
{
|
|
274
|
+
method: "POST",
|
|
275
|
+
headers: { "x-api-key": apiKey },
|
|
276
|
+
body: form,
|
|
277
|
+
signal: withTimeout(options.signal, remaining(deadline)),
|
|
278
|
+
},
|
|
279
|
+
apiKey,
|
|
280
|
+
);
|
|
281
|
+
const state = await readJsonResponse(submit, apiKey);
|
|
282
|
+
|
|
283
|
+
// The submit response is an acceptance ack ({ success: true,
|
|
284
|
+
// request_check_url }) with no status field and no markdown; only the
|
|
285
|
+
// polled result carries a status. Key on status, never on success.
|
|
286
|
+
if (state.status === "complete") return toResult(state);
|
|
287
|
+
if (state.status === "failed") {
|
|
288
|
+
throw new Error(
|
|
289
|
+
`Datalab PDF conversion failed: ${state.error ?? "unknown error"}`,
|
|
290
|
+
);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const checkUrl = normalizeCheckUrl(state.request_check_url);
|
|
294
|
+
while (Date.now() < deadline) {
|
|
295
|
+
await sleep(
|
|
296
|
+
Math.min(DEFAULT_POLL_INTERVAL_MS, remaining(deadline)),
|
|
297
|
+
options.signal,
|
|
298
|
+
);
|
|
299
|
+
if (Date.now() >= deadline) break;
|
|
300
|
+
const poll = await fetchDatalab(
|
|
301
|
+
checkUrl,
|
|
302
|
+
{
|
|
303
|
+
method: "GET",
|
|
304
|
+
headers: { "x-api-key": apiKey },
|
|
305
|
+
signal: withTimeout(options.signal, remaining(deadline)),
|
|
306
|
+
},
|
|
307
|
+
apiKey,
|
|
308
|
+
);
|
|
309
|
+
const next = await readJsonResponse(poll, apiKey);
|
|
310
|
+
if (next.status === "complete") return toResult(next);
|
|
311
|
+
if (next.status === "failed") {
|
|
312
|
+
throw new Error(
|
|
313
|
+
`Datalab PDF conversion failed: ${next.error ?? "unknown error"}`,
|
|
314
|
+
);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
throw new Error("Datalab PDF conversion timed out");
|
|
319
|
+
} finally {
|
|
320
|
+
// File deletion is best-effort. Do not extend a caller's timeout or
|
|
321
|
+
// cancellation while waiting for a remote cleanup request.
|
|
322
|
+
void deleteDatalabFile(apiKey, fileId);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
async function requestUploadUrl(options: {
|
|
327
|
+
apiKey: string;
|
|
328
|
+
title: string;
|
|
329
|
+
processingLocation: DatalabProcessingLocation;
|
|
330
|
+
signal: AbortSignal | undefined;
|
|
331
|
+
deadline: number;
|
|
332
|
+
}): Promise<DatalabUploadRequest> {
|
|
333
|
+
const { apiKey, title, processingLocation, signal, deadline } = options;
|
|
334
|
+
const response = await fetchDatalab(
|
|
335
|
+
`${getDatalabApiBase()}/files/upload`,
|
|
336
|
+
{
|
|
337
|
+
method: "POST",
|
|
338
|
+
headers: {
|
|
339
|
+
"x-api-key": apiKey,
|
|
340
|
+
"content-type": "application/json",
|
|
341
|
+
},
|
|
342
|
+
body: JSON.stringify({
|
|
343
|
+
filename: `${datalabFilename(title)}.pdf`,
|
|
344
|
+
content_type: "application/pdf",
|
|
345
|
+
processing_location: processingLocation,
|
|
346
|
+
}),
|
|
347
|
+
signal: withTimeout(signal, remaining(deadline)),
|
|
348
|
+
},
|
|
349
|
+
apiKey,
|
|
350
|
+
);
|
|
351
|
+
return readJsonResponse(response, apiKey);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
async function confirmUpload(
|
|
355
|
+
apiKey: string,
|
|
356
|
+
fileId: string,
|
|
357
|
+
signal: AbortSignal | undefined,
|
|
358
|
+
deadline: number,
|
|
359
|
+
): Promise<DatalabConfirmResponse> {
|
|
360
|
+
const response = await fetchDatalab(
|
|
361
|
+
`${getDatalabApiBase()}/files/${encodeURIComponent(fileId)}/confirm`,
|
|
362
|
+
{
|
|
363
|
+
method: "GET",
|
|
364
|
+
headers: { "x-api-key": apiKey },
|
|
365
|
+
signal: withTimeout(signal, remaining(deadline)),
|
|
366
|
+
},
|
|
367
|
+
apiKey,
|
|
368
|
+
);
|
|
369
|
+
return readJsonResponse(response, apiKey);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
async function deleteDatalabFile(
|
|
373
|
+
apiKey: string,
|
|
374
|
+
fileId: string,
|
|
375
|
+
): Promise<void> {
|
|
376
|
+
try {
|
|
377
|
+
await fetchDatalab(
|
|
378
|
+
`${getDatalabApiBase()}/files/${encodeURIComponent(fileId)}`,
|
|
379
|
+
{
|
|
380
|
+
method: "DELETE",
|
|
381
|
+
headers: { "x-api-key": apiKey },
|
|
382
|
+
signal: AbortSignal.timeout(CLEANUP_TIMEOUT_MS),
|
|
383
|
+
},
|
|
384
|
+
apiKey,
|
|
385
|
+
);
|
|
386
|
+
} catch {
|
|
387
|
+
// Best-effort cleanup; a leftover file is not worth failing the conversion.
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
function toResult(state: DatalabConversionState): DatalabPDFExtractResult {
|
|
392
|
+
const markdown = normalizeString(state.markdown);
|
|
393
|
+
if (!markdown) {
|
|
394
|
+
throw new Error("Datalab PDF conversion returned empty markdown");
|
|
395
|
+
}
|
|
396
|
+
const quality = state.parse_quality_score;
|
|
397
|
+
return {
|
|
398
|
+
markdown,
|
|
399
|
+
pages: numericField(state.page_count) ?? countPageMarkers(markdown),
|
|
400
|
+
...(typeof quality === "number" && Number.isFinite(quality)
|
|
401
|
+
? { parseQualityScore: quality }
|
|
402
|
+
: {}),
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
function numericField(value: unknown): number | null {
|
|
407
|
+
return typeof value === "number" && Number.isFinite(value) && value > 0
|
|
408
|
+
? Math.floor(value)
|
|
409
|
+
: null;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
function countPageMarkers(markdown: string): number {
|
|
413
|
+
return [...markdown.matchAll(/^<!-- Page (\d+) -->$/gm)].length;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
function normalizeCheckUrl(value: unknown): string {
|
|
417
|
+
if (typeof value !== "string" || !value.trim()) {
|
|
418
|
+
throw new Error("Datalab PDF conversion failed: missing request_check_url");
|
|
419
|
+
}
|
|
420
|
+
const apiBase = getDatalabApiUrl();
|
|
421
|
+
let checkUrl: URL;
|
|
422
|
+
try {
|
|
423
|
+
checkUrl = new URL(value.trim(), apiBase);
|
|
424
|
+
} catch {
|
|
425
|
+
throw new Error("Datalab PDF conversion failed: invalid request_check_url");
|
|
426
|
+
}
|
|
427
|
+
if (checkUrl.origin !== apiBase.origin) {
|
|
428
|
+
throw new Error(
|
|
429
|
+
"Datalab PDF conversion failed: request_check_url has an unexpected origin",
|
|
430
|
+
);
|
|
431
|
+
}
|
|
432
|
+
return checkUrl.toString();
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
function getDatalabApiUrl(): URL {
|
|
436
|
+
try {
|
|
437
|
+
return new URL(getDatalabApiBase());
|
|
438
|
+
} catch {
|
|
439
|
+
throw new Error(
|
|
440
|
+
"Failed to parse DATALAB_API_BASE: expected an absolute URL",
|
|
441
|
+
);
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
function remaining(deadline: number): number {
|
|
446
|
+
return Math.max(1, deadline - Date.now());
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
function withTimeout(
|
|
450
|
+
signal: AbortSignal | undefined,
|
|
451
|
+
timeoutMs: number,
|
|
452
|
+
): AbortSignal {
|
|
453
|
+
const timeout = AbortSignal.timeout(timeoutMs);
|
|
454
|
+
return signal ? AbortSignal.any([signal, timeout]) : timeout;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
function sleep(ms: number, signal?: AbortSignal): Promise<void> {
|
|
458
|
+
return new Promise((resolve, reject) => {
|
|
459
|
+
let timer: ReturnType<typeof setTimeout>;
|
|
460
|
+
const cleanup = () => signal?.removeEventListener("abort", onAbort);
|
|
461
|
+
const onTimeout = () => {
|
|
462
|
+
cleanup();
|
|
463
|
+
resolve();
|
|
464
|
+
};
|
|
465
|
+
const onAbort = () => {
|
|
466
|
+
clearTimeout(timer);
|
|
467
|
+
cleanup();
|
|
468
|
+
reject(signal?.reason);
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
if (signal?.aborted) {
|
|
472
|
+
onAbort();
|
|
473
|
+
return;
|
|
474
|
+
}
|
|
475
|
+
timer = setTimeout(onTimeout, ms);
|
|
476
|
+
signal?.addEventListener("abort", onAbort, { once: true });
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
async function fetchDatalab(
|
|
481
|
+
url: string,
|
|
482
|
+
init: RequestInit,
|
|
483
|
+
apiKey: string,
|
|
484
|
+
): Promise<Response> {
|
|
485
|
+
try {
|
|
486
|
+
return await fetch(url, { ...init, redirect: init.redirect ?? "error" });
|
|
487
|
+
} catch (error) {
|
|
488
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
489
|
+
const redacted = redactCredential(message, apiKey);
|
|
490
|
+
if (redacted === message) throw error;
|
|
491
|
+
const redactedError = new Error(redacted);
|
|
492
|
+
if (error instanceof Error) redactedError.name = error.name;
|
|
493
|
+
throw redactedError;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
async function readJsonResponse(
|
|
498
|
+
response: Response,
|
|
499
|
+
apiKey: string,
|
|
500
|
+
): Promise<Record<string, unknown>> {
|
|
501
|
+
const text = await readResponseText(response);
|
|
502
|
+
if (!response.ok) {
|
|
503
|
+
const detail = text.trim().slice(0, MAX_ERROR_BODY_BYTES);
|
|
504
|
+
const message = detail
|
|
505
|
+
? `Datalab PDF conversion failed: HTTP ${response.status} ${response.statusText}: ${detail}`
|
|
506
|
+
: `Datalab PDF conversion failed: HTTP ${response.status} ${response.statusText}`;
|
|
507
|
+
throw new Error(redactCredential(message, apiKey));
|
|
508
|
+
}
|
|
509
|
+
return parseJsonRecord(text);
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
function parseJsonRecord(text: string): Record<string, unknown> {
|
|
513
|
+
let parsed: unknown;
|
|
514
|
+
try {
|
|
515
|
+
parsed = JSON.parse(text);
|
|
516
|
+
} catch (error) {
|
|
517
|
+
throw new Error("Datalab PDF conversion returned invalid JSON", { cause: error });
|
|
518
|
+
}
|
|
519
|
+
if (Object.prototype.toString.call(parsed) !== "[object Object]") {
|
|
520
|
+
throw new Error("Datalab PDF conversion returned invalid JSON object");
|
|
521
|
+
}
|
|
522
|
+
return parsed as Record<string, unknown>;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
async function readResponseText(response: Response): Promise<string> {
|
|
526
|
+
const contentLength = Number(response.headers.get("content-length"));
|
|
527
|
+
if (Number.isFinite(contentLength) && contentLength > MAX_RESPONSE_BYTES) {
|
|
528
|
+
throw new Error("Datalab PDF conversion response too large");
|
|
529
|
+
}
|
|
530
|
+
if (!response.body) return "";
|
|
531
|
+
|
|
532
|
+
const reader = response.body.getReader();
|
|
533
|
+
const decoder = new TextDecoder();
|
|
534
|
+
const chunks: string[] = [];
|
|
535
|
+
let bytesRead = 0;
|
|
536
|
+
try {
|
|
537
|
+
while (true) {
|
|
538
|
+
const { done, value } = await reader.read();
|
|
539
|
+
if (done) break;
|
|
540
|
+
bytesRead += value.byteLength;
|
|
541
|
+
if (bytesRead > MAX_RESPONSE_BYTES) {
|
|
542
|
+
try {
|
|
543
|
+
await reader.cancel();
|
|
544
|
+
} catch {
|
|
545
|
+
// The response is already too large; cancellation is best-effort.
|
|
546
|
+
}
|
|
547
|
+
throw new Error("Datalab PDF conversion response too large");
|
|
548
|
+
}
|
|
549
|
+
chunks.push(decoder.decode(value, { stream: true }));
|
|
550
|
+
}
|
|
551
|
+
chunks.push(decoder.decode());
|
|
552
|
+
return chunks.join("");
|
|
553
|
+
} finally {
|
|
554
|
+
reader.releaseLock();
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
function datalabFilename(title: string): string {
|
|
559
|
+
return (
|
|
560
|
+
title
|
|
561
|
+
.toLowerCase()
|
|
562
|
+
.replace(/[^a-z0-9\s-]/g, "")
|
|
563
|
+
.replace(/\s+/g, "-")
|
|
564
|
+
.replace(/-+/g, "-")
|
|
565
|
+
.replace(/^-|-$/g, "")
|
|
566
|
+
.slice(0, 60) || "document"
|
|
567
|
+
);
|
|
568
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { parseHTML } from "linkedom";
|
|
2
|
+
import { activityMonitor } from "./activity.ts";
|
|
3
|
+
import type { SearchOptions, SearchResult, SearchResponse } from "./perplexity.ts";
|
|
4
|
+
|
|
5
|
+
const SEARCH_URL = "https://html.duckduckgo.com/html/";
|
|
6
|
+
const SEARCH_TIMEOUT_MS = 30_000;
|
|
7
|
+
|
|
8
|
+
interface NormalizedDomainFilters {
|
|
9
|
+
allowed: string[];
|
|
10
|
+
blocked: string[];
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function normalizeCount(value: number | undefined): number {
|
|
14
|
+
if (typeof value !== "number" || !Number.isFinite(value)) return 5;
|
|
15
|
+
return Math.max(1, Math.min(Math.floor(value), 20));
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function normalizeDomain(value: string): string | null {
|
|
19
|
+
let input = value.trim().toLowerCase();
|
|
20
|
+
if (!input) return null;
|
|
21
|
+
if (input.startsWith("-")) input = input.slice(1).trim();
|
|
22
|
+
if (!input) return null;
|
|
23
|
+
try {
|
|
24
|
+
const parsed = input.includes("://") ? new URL(input) : new URL(`https://${input}`);
|
|
25
|
+
input = parsed.hostname;
|
|
26
|
+
} catch {
|
|
27
|
+
input = input.split("/")[0]?.split(":")[0] ?? "";
|
|
28
|
+
}
|
|
29
|
+
input = input.replace(/^\.+|\.+$/g, "");
|
|
30
|
+
return /^[a-z0-9][a-z0-9.-]*\.[a-z]{2,}$/i.test(input) ? input : null;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function normalizeDomainFilters(domainFilter: string[] | undefined): NormalizedDomainFilters {
|
|
34
|
+
const filters: NormalizedDomainFilters = { allowed: [], blocked: [] };
|
|
35
|
+
for (const raw of domainFilter ?? []) {
|
|
36
|
+
const domain = normalizeDomain(raw);
|
|
37
|
+
if (!domain) continue;
|
|
38
|
+
const target = raw.trim().startsWith("-") ? filters.blocked : filters.allowed;
|
|
39
|
+
if (!target.includes(domain)) target.push(domain);
|
|
40
|
+
}
|
|
41
|
+
return filters;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function hostMatchesDomain(hostname: string, domain: string): boolean {
|
|
45
|
+
return hostname === domain || hostname.endsWith(`.${domain}`);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function matchesDomainFilters(url: string, filters: NormalizedDomainFilters): boolean {
|
|
49
|
+
if (filters.allowed.length === 0 && filters.blocked.length === 0) return true;
|
|
50
|
+
const hostname = new URL(url).hostname.toLowerCase();
|
|
51
|
+
if (filters.allowed.length > 0 && !filters.allowed.some(domain => hostMatchesDomain(hostname, domain))) return false;
|
|
52
|
+
return !filters.blocked.some(domain => hostMatchesDomain(hostname, domain));
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function decodeResultUrl(href: string): string | null {
|
|
56
|
+
try {
|
|
57
|
+
const link = new URL(href, SEARCH_URL);
|
|
58
|
+
const destination = link.searchParams.get("uddg") ?? link.href;
|
|
59
|
+
const url = new URL(destination);
|
|
60
|
+
return url.protocol === "http:" || url.protocol === "https:" ? url.href : null;
|
|
61
|
+
} catch {
|
|
62
|
+
return null;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function isDuckDuckGoAvailable(): boolean {
|
|
67
|
+
return true;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export async function searchWithDuckDuckGo(query: string, options: SearchOptions = {}): Promise<SearchResponse> {
|
|
71
|
+
const url = new URL(SEARCH_URL);
|
|
72
|
+
url.searchParams.set("q", query);
|
|
73
|
+
const activityId = activityMonitor.logStart({ type: "api", query });
|
|
74
|
+
|
|
75
|
+
try {
|
|
76
|
+
const response = await fetch(url, {
|
|
77
|
+
method: "GET",
|
|
78
|
+
headers: {
|
|
79
|
+
Accept: "text/html",
|
|
80
|
+
"User-Agent": "Mozilla/5.0 (compatible; pi-web-access/1.0; +https://github.com/nicobailon/pi-web-access)",
|
|
81
|
+
},
|
|
82
|
+
signal: options.signal
|
|
83
|
+
? AbortSignal.any([AbortSignal.timeout(SEARCH_TIMEOUT_MS), options.signal])
|
|
84
|
+
: AbortSignal.timeout(SEARCH_TIMEOUT_MS),
|
|
85
|
+
});
|
|
86
|
+
if (!response.ok) {
|
|
87
|
+
const body = await response.text();
|
|
88
|
+
throw new Error(`DuckDuckGo search error ${response.status}: ${body.slice(0, 300)}`);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const { document } = parseHTML(await response.text());
|
|
92
|
+
const filters = normalizeDomainFilters(options.domainFilter);
|
|
93
|
+
const results: SearchResult[] = [];
|
|
94
|
+
let parseableResults = 0;
|
|
95
|
+
for (const container of document.querySelectorAll(".result")) {
|
|
96
|
+
if (container.classList.contains("result--ad")) continue;
|
|
97
|
+
const anchor = container.querySelector(".result__a");
|
|
98
|
+
const title = anchor?.textContent?.trim() ?? "";
|
|
99
|
+
const href = anchor?.getAttribute("href")?.trim() ?? "";
|
|
100
|
+
const resultUrl = href ? decodeResultUrl(href) : null;
|
|
101
|
+
if (!title || !resultUrl) continue;
|
|
102
|
+
parseableResults++;
|
|
103
|
+
if (!matchesDomainFilters(resultUrl, filters)) continue;
|
|
104
|
+
const snippet = container.querySelector(".result__snippet")?.textContent?.trim() ?? "";
|
|
105
|
+
results.push({ title, url: resultUrl, snippet });
|
|
106
|
+
if (results.length >= normalizeCount(options.numResults)) break;
|
|
107
|
+
}
|
|
108
|
+
if (parseableResults === 0) {
|
|
109
|
+
throw new Error("DuckDuckGo returned no parseable results (invalid response)");
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
activityMonitor.logComplete(activityId, response.status);
|
|
113
|
+
const answer = results.map(result => result.snippet
|
|
114
|
+
? `${result.snippet}\nSource: ${result.title} (${result.url})`
|
|
115
|
+
: `Source: ${result.title} (${result.url})`).join("\n\n");
|
|
116
|
+
return { answer, results };
|
|
117
|
+
} catch (err) {
|
|
118
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
119
|
+
if (message.toLowerCase().includes("abort")) activityMonitor.logComplete(activityId, 0);
|
|
120
|
+
else activityMonitor.logError(activityId, message);
|
|
121
|
+
throw err;
|
|
122
|
+
}
|
|
123
|
+
}
|