@jsonstudio/rcc 0.89.164 → 0.89.333
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 +18 -15
- package/dist/build-info.js +3 -3
- package/dist/build-info.js.map +1 -1
- package/dist/cli.js +32 -0
- package/dist/cli.js.map +1 -1
- package/dist/client/gemini-cli/gemini-cli-protocol-client.js +28 -5
- package/dist/client/gemini-cli/gemini-cli-protocol-client.js.map +1 -1
- package/dist/error-handling/quiet-error-handling-center.d.ts +9 -0
- package/dist/error-handling/quiet-error-handling-center.js +141 -0
- package/dist/error-handling/quiet-error-handling-center.js.map +1 -0
- package/dist/error-handling/route-error-hub.js +8 -2
- package/dist/error-handling/route-error-hub.js.map +1 -1
- package/dist/modules/pipeline/utils/colored-logger.d.ts +2 -0
- package/dist/modules/pipeline/utils/colored-logger.js +20 -3
- package/dist/modules/pipeline/utils/colored-logger.js.map +1 -1
- package/dist/providers/auth/antigravity-userinfo-helper.d.ts +10 -0
- package/dist/providers/auth/antigravity-userinfo-helper.js +140 -0
- package/dist/providers/auth/antigravity-userinfo-helper.js.map +1 -0
- package/dist/providers/auth/oauth-lifecycle.js +140 -8
- package/dist/providers/auth/oauth-lifecycle.js.map +1 -1
- package/dist/providers/auth/token-scanner/index.d.ts +32 -0
- package/dist/providers/auth/token-scanner/index.js +86 -0
- package/dist/providers/auth/token-scanner/index.js.map +1 -0
- package/dist/providers/auth/tokenfile-auth.d.ts +17 -0
- package/dist/providers/auth/tokenfile-auth.js +27 -5
- package/dist/providers/auth/tokenfile-auth.js.map +1 -1
- package/dist/providers/core/api/provider-types.d.ts +10 -0
- package/dist/providers/core/config/oauth-flows.d.ts +2 -0
- package/dist/providers/core/config/oauth-flows.js.map +1 -1
- package/dist/providers/core/config/provider-oauth-configs.js +85 -0
- package/dist/providers/core/config/provider-oauth-configs.js.map +1 -1
- package/dist/providers/core/config/service-profiles.js +15 -1
- package/dist/providers/core/config/service-profiles.js.map +1 -1
- package/dist/providers/core/runtime/base-provider.d.ts +8 -1
- package/dist/providers/core/runtime/base-provider.js +176 -108
- package/dist/providers/core/runtime/base-provider.js.map +1 -1
- package/dist/providers/core/runtime/gemini-cli-http-provider.d.ts +9 -5
- package/dist/providers/core/runtime/gemini-cli-http-provider.js +271 -69
- package/dist/providers/core/runtime/gemini-cli-http-provider.js.map +1 -1
- package/dist/providers/core/runtime/gemini-http-provider.d.ts +1 -2
- package/dist/providers/core/runtime/gemini-http-provider.js +0 -12
- package/dist/providers/core/runtime/gemini-http-provider.js.map +1 -1
- package/dist/providers/core/runtime/http-request-executor.d.ts +42 -0
- package/dist/providers/core/runtime/http-request-executor.js +133 -0
- package/dist/providers/core/runtime/http-request-executor.js.map +1 -0
- package/dist/providers/core/runtime/http-transport-provider.d.ts +32 -12
- package/dist/providers/core/runtime/http-transport-provider.js +464 -426
- package/dist/providers/core/runtime/http-transport-provider.js.map +1 -1
- package/dist/providers/core/runtime/provider-error-classifier.d.ts +25 -0
- package/dist/providers/core/runtime/provider-error-classifier.js +149 -0
- package/dist/providers/core/runtime/provider-error-classifier.js.map +1 -0
- package/dist/providers/core/runtime/provider-error-types.d.ts +23 -0
- package/dist/providers/core/runtime/provider-error-types.js +2 -0
- package/dist/providers/core/runtime/provider-error-types.js.map +1 -0
- package/dist/providers/core/runtime/provider-factory.d.ts +1 -0
- package/dist/providers/core/runtime/provider-factory.js +43 -8
- package/dist/providers/core/runtime/provider-factory.js.map +1 -1
- package/dist/providers/core/runtime/responses-provider.d.ts +3 -3
- package/dist/providers/core/runtime/responses-provider.js +48 -114
- package/dist/providers/core/runtime/responses-provider.js.map +1 -1
- package/dist/providers/core/strategies/oauth-auth-code-flow.js +11 -3
- package/dist/providers/core/strategies/oauth-auth-code-flow.js.map +1 -1
- package/dist/providers/core/utils/http-client.d.ts +5 -0
- package/dist/providers/core/utils/http-client.js +29 -3
- package/dist/providers/core/utils/http-client.js.map +1 -1
- package/dist/providers/core/utils/provider-error-reporter.js +8 -2
- package/dist/providers/core/utils/provider-error-reporter.js.map +1 -1
- package/dist/providers/core/utils/snapshot-writer.js +5 -1
- package/dist/providers/core/utils/snapshot-writer.js.map +1 -1
- package/dist/providers/profile/provider-profile-loader.js +8 -4
- package/dist/providers/profile/provider-profile-loader.js.map +1 -1
- package/dist/runtime/runtime-flags.d.ts +4 -0
- package/dist/runtime/runtime-flags.js +32 -0
- package/dist/runtime/runtime-flags.js.map +1 -0
- package/dist/server/handlers/handler-utils.js +29 -2
- package/dist/server/handlers/handler-utils.js.map +1 -1
- package/dist/server/handlers/messages-handler.js +27 -26
- package/dist/server/handlers/messages-handler.js.map +1 -1
- package/dist/server/handlers/responses-handler.js +35 -1
- package/dist/server/handlers/responses-handler.js.map +1 -1
- package/dist/server/runtime/http-server/index.d.ts +1 -0
- package/dist/server/runtime/http-server/index.js +39 -4
- package/dist/server/runtime/http-server/index.js.map +1 -1
- package/dist/server/runtime/http-server/request-executor.d.ts +4 -0
- package/dist/server/runtime/http-server/request-executor.js +99 -4
- package/dist/server/runtime/http-server/request-executor.js.map +1 -1
- package/dist/server/utils/sse-request-parser.d.ts +1 -0
- package/dist/server/utils/sse-request-parser.js +17 -6
- package/dist/server/utils/sse-request-parser.js.map +1 -1
- package/dist/server/utils/warmup-detector.d.ts +7 -0
- package/dist/server/utils/warmup-detector.js +125 -0
- package/dist/server/utils/warmup-detector.js.map +1 -0
- package/dist/server/utils/warmup-storm-tracker.d.ts +9 -0
- package/dist/server/utils/warmup-storm-tracker.js +61 -0
- package/dist/server/utils/warmup-storm-tracker.js.map +1 -0
- package/dist/utils/debug-utils.js +14 -0
- package/dist/utils/debug-utils.js.map +1 -1
- package/dist/utils/error-handler-registry.js +6 -5
- package/dist/utils/error-handler-registry.js.map +1 -1
- package/dist/utils/error-handling-utils.js +4 -3
- package/dist/utils/error-handling-utils.js.map +1 -1
- package/dist/utils/log-helpers.d.ts +6 -0
- package/dist/utils/log-helpers.js +90 -0
- package/dist/utils/log-helpers.js.map +1 -0
- package/dist/utils/logger.d.ts +8 -0
- package/dist/utils/logger.js +55 -2
- package/dist/utils/logger.js.map +1 -1
- package/dist/utils/snapshot-writer.js +2 -6
- package/dist/utils/snapshot-writer.js.map +1 -1
- package/node_modules/@jsonstudio/llms/dist/conversion/codecs/gemini-openai-codec.js +15 -1
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/auto-thinking.d.ts +6 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/auto-thinking.js +25 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/field-mapping.d.ts +14 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/field-mapping.js +155 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/glm-tool-extraction.d.ts +2 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/glm-tool-extraction.js +264 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/qwen-transform.d.ts +3 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/qwen-transform.js +209 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/request-rules.d.ts +24 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/request-rules.js +63 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-blacklist.d.ts +14 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-blacklist.js +85 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-normalize.d.ts +5 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-normalize.js +121 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-validate.d.ts +5 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/response-validate.js +76 -0
- package/{dist/providers/compat/utils/snapshot-writer.d.ts → node_modules/@jsonstudio/llms/dist/conversion/compat/actions/snapshot.d.ts} +2 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/snapshot.js +21 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/actions/tool-schema.d.ts +6 -0
- package/{dist/providers/compat/glm/utils/tool-schema-helpers.js → node_modules/@jsonstudio/llms/dist/conversion/compat/actions/tool-schema.js} +6 -1
- package/{dist/providers/compat/filters → node_modules/@jsonstudio/llms/dist/conversion/compat/actions}/universal-shape-filter.d.ts +17 -22
- package/{dist/providers/compat/filters → node_modules/@jsonstudio/llms/dist/conversion/compat/actions}/universal-shape-filter.js +35 -99
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/profiles/chat-glm.json +187 -13
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/profiles/chat-iflow.json +177 -9
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/profiles/chat-lmstudio.json +10 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/compat/profiles/chat-qwen.json +14 -10
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/compat/compat-engine.d.ts +7 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/compat/compat-engine.js +5 -665
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/compat/compat-pipeline-executor.d.ts +9 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/compat/compat-pipeline-executor.js +845 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/compat/compat-types.d.ts +47 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/hub-pipeline.d.ts +2 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/hub-pipeline.js +35 -1
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/stages/req_outbound/req_outbound_stage3_compat/index.js +2 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/pipeline/target-utils.js +3 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/hub/response/response-runtime.js +19 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/responses/responses-host-policy.d.ts +6 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/responses/responses-host-policy.js +14 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/responses/responses-openai-bridge.js +51 -2
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/anthropic-message-utils.js +6 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/responses-reasoning-registry.d.ts +4 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/responses-reasoning-registry.js +62 -1
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/responses-response-utils.js +23 -1
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/tool-canonicalizer.d.ts +2 -0
- package/node_modules/@jsonstudio/llms/dist/conversion/shared/tool-filter-pipeline.js +11 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/bootstrap.js +251 -12
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/classifier.js +11 -4
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/context-advisor.d.ts +21 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/context-advisor.js +76 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/engine.d.ts +11 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/engine.js +187 -28
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/features.js +22 -457
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/health-manager.js +2 -7
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/message-utils.d.ts +7 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/message-utils.js +66 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/provider-registry.js +6 -2
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/token-estimator.d.ts +2 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/token-estimator.js +16 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/token-file-scanner.d.ts +15 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/token-file-scanner.js +56 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/tool-signals.d.ts +13 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/tool-signals.js +403 -0
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/types.d.ts +21 -1
- package/node_modules/@jsonstudio/llms/dist/router/virtual-router/types.js +1 -0
- package/node_modules/@jsonstudio/llms/package.json +2 -2
- package/package.json +13 -11
- package/scripts/README.md +26 -12
- package/scripts/auth-antigravity-token.mjs +64 -0
- package/scripts/auth-gemini-cli-token.mjs +96 -0
- package/scripts/auth-iflow-manual.mjs +81 -0
- package/scripts/auth-iflow-token-direct.mjs +87 -0
- package/scripts/auth-iflow-token.mjs +77 -0
- package/scripts/copy-compat-assets.mjs +3 -15
- package/scripts/install-verify.mjs +1 -0
- package/scripts/pack-mode.mjs +30 -1
- package/scripts/publish-rcc.mjs +31 -0
- package/scripts/replay-codex-sample.mjs +13 -8
- package/scripts/tests/chat-pipeline-blackbox.mjs +1 -1
- package/scripts/tools/capture-provider-goldens.mjs +8 -7
- package/scripts/verify-client-headers.mjs +224 -0
- package/dist/providers/compat/base-compatibility.d.ts +0 -27
- package/dist/providers/compat/base-compatibility.js +0 -143
- package/dist/providers/compat/base-compatibility.js.map +0 -1
- package/dist/providers/compat/compat-directory-loader.d.ts +0 -4
- package/dist/providers/compat/compat-directory-loader.js +0 -85
- package/dist/providers/compat/compat-directory-loader.js.map +0 -1
- package/dist/providers/compat/compatibility-adapter.d.ts +0 -18
- package/dist/providers/compat/compatibility-adapter.js +0 -104
- package/dist/providers/compat/compatibility-adapter.js.map +0 -1
- package/dist/providers/compat/compatibility-factory.d.ts +0 -57
- package/dist/providers/compat/compatibility-factory.js +0 -155
- package/dist/providers/compat/compatibility-factory.js.map +0 -1
- package/dist/providers/compat/compatibility-interface.d.ts +0 -35
- package/dist/providers/compat/compatibility-interface.js +0 -2
- package/dist/providers/compat/compatibility-interface.js.map +0 -1
- package/dist/providers/compat/compatibility-manager.d.ts +0 -85
- package/dist/providers/compat/compatibility-manager.js +0 -368
- package/dist/providers/compat/compatibility-manager.js.map +0 -1
- package/dist/providers/compat/config/config-compatibility.d.ts +0 -28
- package/dist/providers/compat/config/config-compatibility.js +0 -95
- package/dist/providers/compat/config/config-compatibility.js.map +0 -1
- package/dist/providers/compat/field-mapping.d.ts +0 -102
- package/dist/providers/compat/field-mapping.js +0 -447
- package/dist/providers/compat/field-mapping.js.map +0 -1
- package/dist/providers/compat/filters/blacklist-sanitizer.d.ts +0 -45
- package/dist/providers/compat/filters/blacklist-sanitizer.js +0 -133
- package/dist/providers/compat/filters/blacklist-sanitizer.js.map +0 -1
- package/dist/providers/compat/filters/response-blacklist-sanitizer.d.ts +0 -28
- package/dist/providers/compat/filters/response-blacklist-sanitizer.js +0 -138
- package/dist/providers/compat/filters/response-blacklist-sanitizer.js.map +0 -1
- package/dist/providers/compat/filters/universal-shape-filter.js.map +0 -1
- package/dist/providers/compat/glm/config/blacklist-rules.json +0 -22
- package/dist/providers/compat/glm/config/field-mappings.json +0 -92
- package/dist/providers/compat/glm/config/response-blacklist.json +0 -7
- package/dist/providers/compat/glm/config/shape-filters.json +0 -37
- package/dist/providers/compat/glm/field-mapping/field-mapping-processor.d.ts +0 -28
- package/dist/providers/compat/glm/field-mapping/field-mapping-processor.js +0 -306
- package/dist/providers/compat/glm/field-mapping/field-mapping-processor.js.map +0 -1
- package/dist/providers/compat/glm/functions/glm-processor.d.ts +0 -50
- package/dist/providers/compat/glm/functions/glm-processor.js +0 -134
- package/dist/providers/compat/glm/functions/glm-processor.js.map +0 -1
- package/dist/providers/compat/glm/glm-compatibility.d.ts +0 -34
- package/dist/providers/compat/glm/glm-compatibility.js +0 -117
- package/dist/providers/compat/glm/glm-compatibility.js.map +0 -1
- package/dist/providers/compat/glm/hooks/base-hook.d.ts +0 -21
- package/dist/providers/compat/glm/hooks/base-hook.js +0 -53
- package/dist/providers/compat/glm/hooks/base-hook.js.map +0 -1
- package/dist/providers/compat/glm/hooks/glm-request-validation-hook.d.ts +0 -24
- package/dist/providers/compat/glm/hooks/glm-request-validation-hook.js +0 -268
- package/dist/providers/compat/glm/hooks/glm-request-validation-hook.js.map +0 -1
- package/dist/providers/compat/glm/hooks/glm-response-normalization-hook.d.ts +0 -21
- package/dist/providers/compat/glm/hooks/glm-response-normalization-hook.js +0 -171
- package/dist/providers/compat/glm/hooks/glm-response-normalization-hook.js.map +0 -1
- package/dist/providers/compat/glm/hooks/glm-response-validation-hook.d.ts +0 -25
- package/dist/providers/compat/glm/hooks/glm-response-validation-hook.js +0 -236
- package/dist/providers/compat/glm/hooks/glm-response-validation-hook.js.map +0 -1
- package/dist/providers/compat/glm/hooks/glm-tool-cleaning-hook.d.ts +0 -26
- package/dist/providers/compat/glm/hooks/glm-tool-cleaning-hook.js +0 -186
- package/dist/providers/compat/glm/hooks/glm-tool-cleaning-hook.js.map +0 -1
- package/dist/providers/compat/glm/index.d.ts +0 -24
- package/dist/providers/compat/glm/index.js +0 -29
- package/dist/providers/compat/glm/index.js.map +0 -1
- package/dist/providers/compat/glm/utils/tool-schema-helpers.d.ts +0 -3
- package/dist/providers/compat/glm/utils/tool-schema-helpers.js.map +0 -1
- package/dist/providers/compat/iflow/config/field-mappings.json +0 -92
- package/dist/providers/compat/iflow/config/shape-filters.json +0 -37
- package/dist/providers/compat/iflow/field-mapping/iflow-field-mapping-processor.d.ts +0 -34
- package/dist/providers/compat/iflow/field-mapping/iflow-field-mapping-processor.js +0 -386
- package/dist/providers/compat/iflow/field-mapping/iflow-field-mapping-processor.js.map +0 -1
- package/dist/providers/compat/iflow/functions/iflow-processor.d.ts +0 -53
- package/dist/providers/compat/iflow/functions/iflow-processor.js +0 -215
- package/dist/providers/compat/iflow/functions/iflow-processor.js.map +0 -1
- package/dist/providers/compat/iflow/hooks/base-hook.d.ts +0 -23
- package/dist/providers/compat/iflow/hooks/base-hook.js +0 -59
- package/dist/providers/compat/iflow/hooks/base-hook.js.map +0 -1
- package/dist/providers/compat/iflow/hooks/iflow-request-validation-hook.d.ts +0 -23
- package/dist/providers/compat/iflow/hooks/iflow-request-validation-hook.js +0 -279
- package/dist/providers/compat/iflow/hooks/iflow-request-validation-hook.js.map +0 -1
- package/dist/providers/compat/iflow/hooks/iflow-response-normalization-hook.d.ts +0 -20
- package/dist/providers/compat/iflow/hooks/iflow-response-normalization-hook.js +0 -180
- package/dist/providers/compat/iflow/hooks/iflow-response-normalization-hook.js.map +0 -1
- package/dist/providers/compat/iflow/hooks/iflow-response-validation-hook.d.ts +0 -23
- package/dist/providers/compat/iflow/hooks/iflow-response-validation-hook.js +0 -232
- package/dist/providers/compat/iflow/hooks/iflow-response-validation-hook.js.map +0 -1
- package/dist/providers/compat/iflow/hooks/iflow-tool-cleaning-hook.d.ts +0 -25
- package/dist/providers/compat/iflow/hooks/iflow-tool-cleaning-hook.js +0 -216
- package/dist/providers/compat/iflow/hooks/iflow-tool-cleaning-hook.js.map +0 -1
- package/dist/providers/compat/iflow/iflow-compatibility.d.ts +0 -24
- package/dist/providers/compat/iflow/iflow-compatibility.js +0 -94
- package/dist/providers/compat/iflow/iflow-compatibility.js.map +0 -1
- package/dist/providers/compat/index.d.ts +0 -59
- package/dist/providers/compat/index.js +0 -83
- package/dist/providers/compat/index.js.map +0 -1
- package/dist/providers/compat/lmstudio-compatibility.d.ts +0 -44
- package/dist/providers/compat/lmstudio-compatibility.js +0 -193
- package/dist/providers/compat/lmstudio-compatibility.js.map +0 -1
- package/dist/providers/compat/passthrough-compatibility.d.ts +0 -29
- package/dist/providers/compat/passthrough-compatibility.js +0 -83
- package/dist/providers/compat/passthrough-compatibility.js.map +0 -1
- package/dist/providers/compat/profiles/chat/glm/index.d.ts +0 -6
- package/dist/providers/compat/profiles/chat/glm/index.js +0 -6
- package/dist/providers/compat/profiles/chat/glm/index.js.map +0 -1
- package/dist/providers/compat/profiles/chat/iflow/index.d.ts +0 -6
- package/dist/providers/compat/profiles/chat/iflow/index.js +0 -6
- package/dist/providers/compat/profiles/chat/iflow/index.js.map +0 -1
- package/dist/providers/compat/profiles/chat/lmstudio/index.d.ts +0 -6
- package/dist/providers/compat/profiles/chat/lmstudio/index.js +0 -6
- package/dist/providers/compat/profiles/chat/lmstudio/index.js.map +0 -1
- package/dist/providers/compat/profiles/chat/qwen/index.d.ts +0 -6
- package/dist/providers/compat/profiles/chat/qwen/index.js +0 -6
- package/dist/providers/compat/profiles/chat/qwen/index.js.map +0 -1
- package/dist/providers/compat/profiles/compat/passthrough/index.d.ts +0 -6
- package/dist/providers/compat/profiles/compat/passthrough/index.js +0 -6
- package/dist/providers/compat/profiles/compat/passthrough/index.js.map +0 -1
- package/dist/providers/compat/profiles/responses/c4m/index.d.ts +0 -6
- package/dist/providers/compat/profiles/responses/c4m/index.js +0 -6
- package/dist/providers/compat/profiles/responses/c4m/index.js.map +0 -1
- package/dist/providers/compat/profiles/responses/default/index.d.ts +0 -6
- package/dist/providers/compat/profiles/responses/default/index.js +0 -6
- package/dist/providers/compat/profiles/responses/default/index.js.map +0 -1
- package/dist/providers/compat/profiles/responses/fai/index.d.ts +0 -6
- package/dist/providers/compat/profiles/responses/fai/index.js +0 -6
- package/dist/providers/compat/profiles/responses/fai/index.js.map +0 -1
- package/dist/providers/compat/profiles/responses/fc/index.d.ts +0 -6
- package/dist/providers/compat/profiles/responses/fc/index.js +0 -6
- package/dist/providers/compat/profiles/responses/fc/index.js.map +0 -1
- package/dist/providers/compat/qwen/index.d.ts +0 -4
- package/dist/providers/compat/qwen/index.js +0 -6
- package/dist/providers/compat/qwen/index.js.map +0 -1
- package/dist/providers/compat/qwen-compatibility.d.ts +0 -52
- package/dist/providers/compat/qwen-compatibility.js +0 -330
- package/dist/providers/compat/qwen-compatibility.js.map +0 -1
- package/dist/providers/compat/register-compat-module.d.ts +0 -8
- package/dist/providers/compat/register-compat-module.js +0 -53
- package/dist/providers/compat/register-compat-module.js.map +0 -1
- package/dist/providers/compat/responses/c4m-responses-compatibility.d.ts +0 -27
- package/dist/providers/compat/responses/c4m-responses-compatibility.js +0 -197
- package/dist/providers/compat/responses/c4m-responses-compatibility.js.map +0 -1
- package/dist/providers/compat/standard-compatibility-utils.d.ts +0 -1
- package/dist/providers/compat/standard-compatibility-utils.js +0 -77
- package/dist/providers/compat/standard-compatibility-utils.js.map +0 -1
- package/dist/providers/compat/standard-compatibility.d.ts +0 -31
- package/dist/providers/compat/standard-compatibility.js +0 -118
- package/dist/providers/compat/standard-compatibility.js.map +0 -1
- package/dist/providers/compat/utils/snapshot-writer.js +0 -62
- package/dist/providers/compat/utils/snapshot-writer.js.map +0 -1
- package/scripts/check-glm-compat.mjs +0 -47
|
@@ -1,131 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { detectExtendedThinkingKeyword, detectImageAttachment, detectKeyword, extractMessageText, getLatestMessageRole, getLatestUserMessage } from './message-utils.js';
|
|
2
|
+
import { detectCodingTool, detectLastAssistantToolCategory, detectVisionTool, detectWebTool, extractMeaningfulDeclaredToolNames } from './tool-signals.js';
|
|
3
|
+
import { computeRequestTokens } from './token-estimator.js';
|
|
2
4
|
const THINKING_KEYWORDS = ['let me think', 'chain of thought', 'cot', 'reason step', 'deliberate'];
|
|
3
|
-
const WEB_TOOL_KEYWORDS = ['websearch', 'web_search', 'web-search', 'webfetch', 'web_fetch', 'web_request', 'search_web', 'internet_search'];
|
|
4
|
-
const READ_TOOL_EXACT = new Set([
|
|
5
|
-
'read_file',
|
|
6
|
-
'read_text',
|
|
7
|
-
'view_file',
|
|
8
|
-
'view_code',
|
|
9
|
-
'view_document',
|
|
10
|
-
'open_file',
|
|
11
|
-
'get_file',
|
|
12
|
-
'download_file',
|
|
13
|
-
'describe_current_request',
|
|
14
|
-
'list_dir',
|
|
15
|
-
'list_directory',
|
|
16
|
-
'list_files',
|
|
17
|
-
'list_documents',
|
|
18
|
-
'list_resources',
|
|
19
|
-
'search_files',
|
|
20
|
-
'find_files'
|
|
21
|
-
]);
|
|
22
|
-
const WRITE_TOOL_EXACT = new Set([
|
|
23
|
-
'apply_patch',
|
|
24
|
-
'write_file',
|
|
25
|
-
'create_file',
|
|
26
|
-
'modify_file',
|
|
27
|
-
'edit_file',
|
|
28
|
-
'update_file',
|
|
29
|
-
'save_file',
|
|
30
|
-
'append_file',
|
|
31
|
-
'replace_file',
|
|
32
|
-
'delete_file',
|
|
33
|
-
'remove_file',
|
|
34
|
-
'rename_file',
|
|
35
|
-
'move_file',
|
|
36
|
-
'copy_file',
|
|
37
|
-
'mkdir',
|
|
38
|
-
'rmdir'
|
|
39
|
-
]);
|
|
40
|
-
const SEARCH_TOOL_EXACT = new Set(['websearch', 'web_search', 'search_web', 'internet_search', 'webfetch', 'web_fetch']);
|
|
41
|
-
const READ_TOOL_KEYWORDS = ['read', 'list', 'view', 'download', 'open', 'show', 'fetch', 'inspect'];
|
|
42
|
-
const WRITE_TOOL_KEYWORDS = ['write', 'patch', 'modify', 'edit', 'create', 'update', 'append', 'replace', 'delete', 'remove'];
|
|
43
|
-
const SEARCH_TOOL_KEYWORDS = ['search', 'websearch', 'web_fetch', 'webfetch', 'web-request', 'web_request', 'internet'];
|
|
44
|
-
const SHELL_TOOL_NAMES = new Set(['shell_command', 'shell', 'bash']);
|
|
45
|
-
const SHELL_HEREDOC_PATTERN = /<<\s*['"]?[a-z0-9_-]+/i;
|
|
46
|
-
const SHELL_WRITE_PATTERNS = [
|
|
47
|
-
'apply_patch',
|
|
48
|
-
'sed -i',
|
|
49
|
-
'perl -pi',
|
|
50
|
-
'tee ',
|
|
51
|
-
'cat <<',
|
|
52
|
-
'cat >',
|
|
53
|
-
'printf >',
|
|
54
|
-
'touch ',
|
|
55
|
-
'truncate',
|
|
56
|
-
'mkdir',
|
|
57
|
-
'mktemp',
|
|
58
|
-
'rmdir',
|
|
59
|
-
'rm ',
|
|
60
|
-
'rm-',
|
|
61
|
-
'unlink',
|
|
62
|
-
'mv ',
|
|
63
|
-
'cp ',
|
|
64
|
-
'ln -',
|
|
65
|
-
'chmod',
|
|
66
|
-
'chown',
|
|
67
|
-
'chgrp',
|
|
68
|
-
'tar ',
|
|
69
|
-
'git add',
|
|
70
|
-
'git commit',
|
|
71
|
-
'git apply',
|
|
72
|
-
'git am',
|
|
73
|
-
'git rebase',
|
|
74
|
-
'git checkout',
|
|
75
|
-
'git merge',
|
|
76
|
-
'patch <<',
|
|
77
|
-
'npm install',
|
|
78
|
-
'pnpm install',
|
|
79
|
-
'yarn add',
|
|
80
|
-
'yarn install',
|
|
81
|
-
'pip install',
|
|
82
|
-
'pip3 install',
|
|
83
|
-
'brew install',
|
|
84
|
-
'cargo add',
|
|
85
|
-
'cargo install',
|
|
86
|
-
'go install',
|
|
87
|
-
'make install'
|
|
88
|
-
];
|
|
89
|
-
const SHELL_SEARCH_PATTERNS = [
|
|
90
|
-
'rg ',
|
|
91
|
-
'rg-',
|
|
92
|
-
'grep ',
|
|
93
|
-
'grep-',
|
|
94
|
-
'ripgrep',
|
|
95
|
-
'find ',
|
|
96
|
-
'fd ',
|
|
97
|
-
'locate ',
|
|
98
|
-
'search ',
|
|
99
|
-
'ack ',
|
|
100
|
-
'ag ',
|
|
101
|
-
'where ',
|
|
102
|
-
'which ',
|
|
103
|
-
'codesearch'
|
|
104
|
-
];
|
|
105
|
-
const SHELL_READ_PATTERNS = [
|
|
106
|
-
'ls',
|
|
107
|
-
'dir ',
|
|
108
|
-
'pwd',
|
|
109
|
-
'cat ',
|
|
110
|
-
'type ',
|
|
111
|
-
'head ',
|
|
112
|
-
'tail ',
|
|
113
|
-
'stat',
|
|
114
|
-
'tree',
|
|
115
|
-
'wc ',
|
|
116
|
-
'du ',
|
|
117
|
-
'printf "',
|
|
118
|
-
'python - <<',
|
|
119
|
-
'python -c',
|
|
120
|
-
'node - <<',
|
|
121
|
-
'node -e'
|
|
122
|
-
];
|
|
123
5
|
export function buildRoutingFeatures(request, metadata) {
|
|
124
6
|
const latestUserMessage = getLatestUserMessage(request.messages);
|
|
7
|
+
const latestMessageRole = getLatestMessageRole(request.messages);
|
|
125
8
|
const assistantMessages = request.messages.filter((msg) => msg.role === 'assistant');
|
|
126
9
|
const latestUserText = latestUserMessage ? extractMessageText(latestUserMessage) : '';
|
|
127
10
|
const normalizedUserText = latestUserText.toLowerCase();
|
|
128
|
-
const
|
|
11
|
+
const meaningfulDeclaredTools = extractMeaningfulDeclaredToolNames(request.tools);
|
|
12
|
+
const hasTools = meaningfulDeclaredTools.length > 0;
|
|
129
13
|
const hasToolCallResponses = assistantMessages.some((msg) => Array.isArray(msg.tool_calls) && msg.tool_calls.length > 0);
|
|
130
14
|
const estimatedTokens = computeRequestTokens(request, latestUserText);
|
|
131
15
|
const hasThinking = detectKeyword(normalizedUserText, THINKING_KEYWORDS);
|
|
@@ -135,12 +19,24 @@ export function buildRoutingFeatures(request, metadata) {
|
|
|
135
19
|
const hasWebTool = detectWebTool(request);
|
|
136
20
|
const hasThinkingKeyword = hasThinking || detectExtendedThinkingKeyword(normalizedUserText);
|
|
137
21
|
const lastAssistantTool = detectLastAssistantToolCategory(assistantMessages);
|
|
22
|
+
const lastAssistantToolLabel = (() => {
|
|
23
|
+
if (!lastAssistantTool) {
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
if (lastAssistantTool.commandSnippet && lastAssistantTool.commandSnippet.trim()) {
|
|
27
|
+
return lastAssistantTool.commandSnippet.trim();
|
|
28
|
+
}
|
|
29
|
+
if (lastAssistantTool.name && lastAssistantTool.name.trim()) {
|
|
30
|
+
return lastAssistantTool.name.trim();
|
|
31
|
+
}
|
|
32
|
+
return undefined;
|
|
33
|
+
})();
|
|
138
34
|
return {
|
|
139
35
|
requestId: metadata.requestId,
|
|
140
36
|
model: request.model,
|
|
141
37
|
totalMessages: request.messages?.length ?? 0,
|
|
142
38
|
userTextSample: latestUserText.slice(0, 2000),
|
|
143
|
-
toolCount:
|
|
39
|
+
toolCount: meaningfulDeclaredTools.length,
|
|
144
40
|
hasTools,
|
|
145
41
|
hasToolCallResponses,
|
|
146
42
|
hasVisionTool,
|
|
@@ -150,342 +46,11 @@ export function buildRoutingFeatures(request, metadata) {
|
|
|
150
46
|
hasThinkingKeyword,
|
|
151
47
|
estimatedTokens,
|
|
152
48
|
lastAssistantToolCategory: lastAssistantTool?.category,
|
|
153
|
-
|
|
49
|
+
lastAssistantToolSnippet: lastAssistantTool?.commandSnippet,
|
|
50
|
+
lastAssistantToolLabel,
|
|
51
|
+
latestMessageFromUser: latestMessageRole === 'user',
|
|
154
52
|
metadata: {
|
|
155
53
|
...metadata
|
|
156
54
|
}
|
|
157
55
|
};
|
|
158
56
|
}
|
|
159
|
-
function getLatestUserMessage(messages) {
|
|
160
|
-
for (let idx = messages.length - 1; idx >= 0; idx -= 1) {
|
|
161
|
-
if (messages[idx]?.role === 'user') {
|
|
162
|
-
return messages[idx];
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
return undefined;
|
|
166
|
-
}
|
|
167
|
-
function extractMessageText(message) {
|
|
168
|
-
if (typeof message.content === 'string' && message.content.trim()) {
|
|
169
|
-
return message.content;
|
|
170
|
-
}
|
|
171
|
-
return '';
|
|
172
|
-
}
|
|
173
|
-
function detectKeyword(text, keywords) {
|
|
174
|
-
if (!text)
|
|
175
|
-
return false;
|
|
176
|
-
return keywords.some((keyword) => text.includes(keyword.toLowerCase()));
|
|
177
|
-
}
|
|
178
|
-
function detectImageAttachment(message) {
|
|
179
|
-
if (!message)
|
|
180
|
-
return false;
|
|
181
|
-
if (!message.metadata || typeof message.metadata !== 'object') {
|
|
182
|
-
return false;
|
|
183
|
-
}
|
|
184
|
-
const meta = message.metadata;
|
|
185
|
-
const attachments = (meta.attachments ?? null);
|
|
186
|
-
if (Array.isArray(attachments)) {
|
|
187
|
-
return attachments.some((attachment) => {
|
|
188
|
-
const candidate = attachment;
|
|
189
|
-
const typeValue = typeof candidate.type === 'string' ? candidate.type.toLowerCase() : '';
|
|
190
|
-
const urlValue = typeof candidate.url === 'string'
|
|
191
|
-
? candidate.url
|
|
192
|
-
: typeof candidate.src === 'string'
|
|
193
|
-
? candidate.src
|
|
194
|
-
: typeof candidate.image_url === 'string'
|
|
195
|
-
? candidate.image_url
|
|
196
|
-
: typeof candidate.image_url?.url === 'string'
|
|
197
|
-
? candidate.image_url.url
|
|
198
|
-
: '';
|
|
199
|
-
return typeValue.includes('image') && urlValue.trim().length > 0;
|
|
200
|
-
});
|
|
201
|
-
}
|
|
202
|
-
if (typeof meta.attachmentType === 'string' && meta.attachmentType.toLowerCase().includes('image')) {
|
|
203
|
-
const urlCandidate = typeof meta.attachmentUrl === 'string' ? meta.attachmentUrl : '';
|
|
204
|
-
return urlCandidate.trim().length > 0;
|
|
205
|
-
}
|
|
206
|
-
return false;
|
|
207
|
-
}
|
|
208
|
-
function detectVisionTool(request) {
|
|
209
|
-
if (!Array.isArray(request.tools)) {
|
|
210
|
-
return false;
|
|
211
|
-
}
|
|
212
|
-
return request.tools.some((tool) => {
|
|
213
|
-
const functionName = extractToolName(tool);
|
|
214
|
-
const description = extractToolDescription(tool);
|
|
215
|
-
return /vision|image|picture|photo/i.test(functionName) || /vision|image|picture|photo/i.test(description || '');
|
|
216
|
-
});
|
|
217
|
-
}
|
|
218
|
-
function detectCodingTool(request) {
|
|
219
|
-
if (!Array.isArray(request.tools)) {
|
|
220
|
-
return false;
|
|
221
|
-
}
|
|
222
|
-
return request.tools.some((tool) => {
|
|
223
|
-
const functionName = extractToolName(tool).toLowerCase();
|
|
224
|
-
const description = (extractToolDescription(tool) || '').toLowerCase();
|
|
225
|
-
if (!functionName && !description) {
|
|
226
|
-
return false;
|
|
227
|
-
}
|
|
228
|
-
if (WRITE_TOOL_EXACT.has(functionName)) {
|
|
229
|
-
return true;
|
|
230
|
-
}
|
|
231
|
-
return WRITE_TOOL_KEYWORDS.some((keyword) => functionName.includes(keyword.toLowerCase()) || description.includes(keyword.toLowerCase()));
|
|
232
|
-
});
|
|
233
|
-
}
|
|
234
|
-
function detectWebTool(request) {
|
|
235
|
-
if (!Array.isArray(request.tools)) {
|
|
236
|
-
return false;
|
|
237
|
-
}
|
|
238
|
-
return request.tools.some((tool) => {
|
|
239
|
-
const functionName = extractToolName(tool);
|
|
240
|
-
const description = extractToolDescription(tool);
|
|
241
|
-
const normalizedName = functionName.toLowerCase();
|
|
242
|
-
const normalizedDesc = (description || '').toLowerCase();
|
|
243
|
-
return (WEB_TOOL_KEYWORDS.some((keyword) => normalizedName.includes(keyword)) ||
|
|
244
|
-
WEB_TOOL_KEYWORDS.some((keyword) => normalizedDesc.includes(keyword)));
|
|
245
|
-
});
|
|
246
|
-
}
|
|
247
|
-
function detectExtendedThinkingKeyword(text) {
|
|
248
|
-
if (!text) {
|
|
249
|
-
return false;
|
|
250
|
-
}
|
|
251
|
-
const keywords = ['仔细分析', '思考', '超级思考', '深度思考', 'careful analysis', 'deep thinking', 'deliberate'];
|
|
252
|
-
return keywords.some((keyword) => text.includes(keyword));
|
|
253
|
-
}
|
|
254
|
-
function computeRequestTokens(request, fallbackText) {
|
|
255
|
-
try {
|
|
256
|
-
return countRequestTokens(request);
|
|
257
|
-
}
|
|
258
|
-
catch {
|
|
259
|
-
return fallbackEstimateTokens(fallbackText, request.messages?.length ?? 0);
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
function fallbackEstimateTokens(text, messageCount) {
|
|
263
|
-
if (!text) {
|
|
264
|
-
return Math.max(32, Math.max(messageCount, 1) * 16);
|
|
265
|
-
}
|
|
266
|
-
const rough = Math.ceil(text.length / 4);
|
|
267
|
-
return Math.max(rough, Math.max(messageCount, 1) * 32);
|
|
268
|
-
}
|
|
269
|
-
function extractToolName(tool) {
|
|
270
|
-
if (!tool || typeof tool !== 'object') {
|
|
271
|
-
return '';
|
|
272
|
-
}
|
|
273
|
-
const candidate = tool;
|
|
274
|
-
const fromFunction = candidate.function;
|
|
275
|
-
if (fromFunction && typeof fromFunction.name === 'string' && fromFunction.name.trim()) {
|
|
276
|
-
return fromFunction.name;
|
|
277
|
-
}
|
|
278
|
-
if (typeof candidate.name === 'string' && candidate.name.trim()) {
|
|
279
|
-
return candidate.name;
|
|
280
|
-
}
|
|
281
|
-
return '';
|
|
282
|
-
}
|
|
283
|
-
function extractToolDescription(tool) {
|
|
284
|
-
if (!tool || typeof tool !== 'object') {
|
|
285
|
-
return '';
|
|
286
|
-
}
|
|
287
|
-
const candidate = tool;
|
|
288
|
-
const fromFunction = candidate.function;
|
|
289
|
-
if (fromFunction && typeof fromFunction.description === 'string' && fromFunction.description.trim()) {
|
|
290
|
-
return fromFunction.description;
|
|
291
|
-
}
|
|
292
|
-
if (typeof candidate.description === 'string' && candidate.description.trim()) {
|
|
293
|
-
return candidate.description;
|
|
294
|
-
}
|
|
295
|
-
return '';
|
|
296
|
-
}
|
|
297
|
-
function detectLastAssistantToolCategory(messages) {
|
|
298
|
-
for (let idx = messages.length - 1; idx >= 0; idx -= 1) {
|
|
299
|
-
const msg = messages[idx];
|
|
300
|
-
if (!msg || !Array.isArray(msg.tool_calls) || msg.tool_calls.length === 0) {
|
|
301
|
-
continue;
|
|
302
|
-
}
|
|
303
|
-
let fallback;
|
|
304
|
-
for (const call of msg.tool_calls) {
|
|
305
|
-
const classification = classifyToolCall(call);
|
|
306
|
-
if (!classification) {
|
|
307
|
-
continue;
|
|
308
|
-
}
|
|
309
|
-
if (!fallback) {
|
|
310
|
-
fallback = classification;
|
|
311
|
-
}
|
|
312
|
-
if (classification.category !== 'other') {
|
|
313
|
-
return classification;
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
if (fallback) {
|
|
317
|
-
return fallback;
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
return undefined;
|
|
321
|
-
}
|
|
322
|
-
function classifyToolCall(call) {
|
|
323
|
-
if (!call || typeof call !== 'object') {
|
|
324
|
-
return undefined;
|
|
325
|
-
}
|
|
326
|
-
const functionName = typeof call?.function?.name === 'string' && call.function.name.trim()
|
|
327
|
-
? canonicalizeToolName(call.function.name)
|
|
328
|
-
: '';
|
|
329
|
-
if (!functionName) {
|
|
330
|
-
return undefined;
|
|
331
|
-
}
|
|
332
|
-
const argsObject = parseToolArguments(call?.function?.arguments);
|
|
333
|
-
const commandText = extractCommandText(argsObject);
|
|
334
|
-
const nameCategory = categorizeToolName(functionName);
|
|
335
|
-
if (nameCategory === 'write' || nameCategory === 'read' || nameCategory === 'search') {
|
|
336
|
-
return { category: nameCategory, name: functionName };
|
|
337
|
-
}
|
|
338
|
-
if (SHELL_TOOL_NAMES.has(functionName)) {
|
|
339
|
-
const shellCategory = classifyShellCommand(commandText);
|
|
340
|
-
return { category: shellCategory, name: functionName };
|
|
341
|
-
}
|
|
342
|
-
if (commandText) {
|
|
343
|
-
const derivedCategory = classifyShellCommand(commandText);
|
|
344
|
-
if (derivedCategory !== 'other') {
|
|
345
|
-
return { category: derivedCategory, name: functionName };
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
return { category: 'other', name: functionName };
|
|
349
|
-
}
|
|
350
|
-
function canonicalizeToolName(rawName) {
|
|
351
|
-
const trimmed = rawName.trim();
|
|
352
|
-
const markerIndex = trimmed.indexOf('arg_');
|
|
353
|
-
if (markerIndex > 0) {
|
|
354
|
-
return trimmed.slice(0, markerIndex);
|
|
355
|
-
}
|
|
356
|
-
return trimmed;
|
|
357
|
-
}
|
|
358
|
-
function parseToolArguments(rawArguments) {
|
|
359
|
-
if (!rawArguments) {
|
|
360
|
-
return undefined;
|
|
361
|
-
}
|
|
362
|
-
if (typeof rawArguments === 'string') {
|
|
363
|
-
try {
|
|
364
|
-
return JSON.parse(rawArguments);
|
|
365
|
-
}
|
|
366
|
-
catch {
|
|
367
|
-
return rawArguments;
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
if (typeof rawArguments === 'object') {
|
|
371
|
-
return rawArguments;
|
|
372
|
-
}
|
|
373
|
-
return undefined;
|
|
374
|
-
}
|
|
375
|
-
function extractCommandText(args) {
|
|
376
|
-
if (!args) {
|
|
377
|
-
return '';
|
|
378
|
-
}
|
|
379
|
-
if (typeof args === 'string') {
|
|
380
|
-
return args;
|
|
381
|
-
}
|
|
382
|
-
if (Array.isArray(args)) {
|
|
383
|
-
return args.map((item) => (typeof item === 'string' ? item : '')).filter(Boolean).join(' ');
|
|
384
|
-
}
|
|
385
|
-
if (typeof args === 'object') {
|
|
386
|
-
const record = args;
|
|
387
|
-
const command = record.command;
|
|
388
|
-
const input = record.input;
|
|
389
|
-
const nestedArgs = record.args;
|
|
390
|
-
if (typeof command === 'string') {
|
|
391
|
-
return command;
|
|
392
|
-
}
|
|
393
|
-
if (Array.isArray(command)) {
|
|
394
|
-
return command.map((item) => (typeof item === 'string' ? item : '')).filter(Boolean).join(' ');
|
|
395
|
-
}
|
|
396
|
-
if (typeof input === 'string') {
|
|
397
|
-
return input;
|
|
398
|
-
}
|
|
399
|
-
if (typeof nestedArgs === 'string') {
|
|
400
|
-
return nestedArgs;
|
|
401
|
-
}
|
|
402
|
-
if (Array.isArray(nestedArgs)) {
|
|
403
|
-
return nestedArgs.map((item) => (typeof item === 'string' ? item : '')).filter(Boolean).join(' ');
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
return '';
|
|
407
|
-
}
|
|
408
|
-
function categorizeToolName(name) {
|
|
409
|
-
const normalized = name.toLowerCase();
|
|
410
|
-
if (SEARCH_TOOL_EXACT.has(normalized) ||
|
|
411
|
-
SEARCH_TOOL_KEYWORDS.some((keyword) => normalized.includes(keyword.toLowerCase()))) {
|
|
412
|
-
return 'search';
|
|
413
|
-
}
|
|
414
|
-
if (READ_TOOL_EXACT.has(normalized) ||
|
|
415
|
-
READ_TOOL_KEYWORDS.some((keyword) => normalized.includes(keyword.toLowerCase()))) {
|
|
416
|
-
return 'read';
|
|
417
|
-
}
|
|
418
|
-
if (WRITE_TOOL_EXACT.has(normalized) ||
|
|
419
|
-
WRITE_TOOL_KEYWORDS.some((keyword) => normalized.includes(keyword.toLowerCase()))) {
|
|
420
|
-
return 'write';
|
|
421
|
-
}
|
|
422
|
-
return 'other';
|
|
423
|
-
}
|
|
424
|
-
function classifyShellCommand(command) {
|
|
425
|
-
if (!command) {
|
|
426
|
-
return 'other';
|
|
427
|
-
}
|
|
428
|
-
if (SHELL_HEREDOC_PATTERN.test(command)) {
|
|
429
|
-
return 'write';
|
|
430
|
-
}
|
|
431
|
-
const segments = splitCommandSegments(command).map(stripShellWrapper);
|
|
432
|
-
if (segments.some((segment) => matchesAnyPattern(segment, SHELL_WRITE_PATTERNS))) {
|
|
433
|
-
return 'write';
|
|
434
|
-
}
|
|
435
|
-
if (segments.some((segment) => matchesAnyPattern(segment, SHELL_SEARCH_PATTERNS))) {
|
|
436
|
-
return 'search';
|
|
437
|
-
}
|
|
438
|
-
if (segments.some((segment) => matchesAnyPattern(segment, SHELL_READ_PATTERNS))) {
|
|
439
|
-
return 'read';
|
|
440
|
-
}
|
|
441
|
-
const stripped = stripShellWrapper(command);
|
|
442
|
-
if (matchesAnyPattern(stripped, SHELL_WRITE_PATTERNS)) {
|
|
443
|
-
return 'write';
|
|
444
|
-
}
|
|
445
|
-
if (matchesAnyPattern(stripped, SHELL_SEARCH_PATTERNS)) {
|
|
446
|
-
return 'search';
|
|
447
|
-
}
|
|
448
|
-
if (matchesAnyPattern(stripped, SHELL_READ_PATTERNS)) {
|
|
449
|
-
return 'read';
|
|
450
|
-
}
|
|
451
|
-
return 'other';
|
|
452
|
-
}
|
|
453
|
-
function splitCommandSegments(command) {
|
|
454
|
-
return command
|
|
455
|
-
.split(/(?:\r?\n|&&|\|\||;)/)
|
|
456
|
-
.map((segment) => segment.trim())
|
|
457
|
-
.filter(Boolean);
|
|
458
|
-
}
|
|
459
|
-
function matchesAnyPattern(text, patterns) {
|
|
460
|
-
if (!text) {
|
|
461
|
-
return false;
|
|
462
|
-
}
|
|
463
|
-
const trimmed = text.trim().toLowerCase();
|
|
464
|
-
const normalized = trimmed.startsWith('sudo ') ? trimmed.slice(5).trim() : trimmed;
|
|
465
|
-
return patterns.some((pattern) => {
|
|
466
|
-
const lowered = pattern.toLowerCase().trim();
|
|
467
|
-
return normalized.startsWith(lowered);
|
|
468
|
-
});
|
|
469
|
-
}
|
|
470
|
-
function stripShellWrapper(segment) {
|
|
471
|
-
let normalized = segment.trim();
|
|
472
|
-
const wrappers = ['bash -lc ', 'bash -lc', 'sh -c ', 'sh -c', '/bin/sh -c ', '/bin/sh -c', 'env -i bash -lc ', 'env -i bash -lc'];
|
|
473
|
-
for (const wrapper of wrappers) {
|
|
474
|
-
if (normalized.toLowerCase().startsWith(wrapper)) {
|
|
475
|
-
normalized = normalized.slice(wrapper.length).trim();
|
|
476
|
-
break;
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
normalized = trimEnclosingQuotes(normalized);
|
|
480
|
-
if (normalized.startsWith('sudo ')) {
|
|
481
|
-
normalized = normalized.slice(5).trim();
|
|
482
|
-
}
|
|
483
|
-
return normalized;
|
|
484
|
-
}
|
|
485
|
-
function trimEnclosingQuotes(value) {
|
|
486
|
-
if ((value.startsWith('"') && value.endsWith('"') && value.length > 1) ||
|
|
487
|
-
(value.startsWith("'") && value.endsWith("'") && value.length > 1)) {
|
|
488
|
-
return value.slice(1, -1).trim();
|
|
489
|
-
}
|
|
490
|
-
return value;
|
|
491
|
-
}
|
|
@@ -35,13 +35,8 @@ export class ProviderHealthManager {
|
|
|
35
35
|
if (reason) {
|
|
36
36
|
state.reason = reason;
|
|
37
37
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
state.cooldownExpiresAt = Date.now() + this.config.cooldownMs;
|
|
41
|
-
if (reason) {
|
|
42
|
-
state.reason = reason;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
38
|
+
// 在新版策略中,普通失败仅用于监控;不再根据 failureThreshold 自动熔断。
|
|
39
|
+
// 只有显式 fatal 或 tripProvider 调用时才会进入 tripped 状态。
|
|
45
40
|
return state;
|
|
46
41
|
}
|
|
47
42
|
recordSuccess(providerKey) {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { StandardizedMessage } from '../../conversion/hub/types/standardized.js';
|
|
2
|
+
export declare function getLatestUserMessage(messages: StandardizedMessage[]): StandardizedMessage | undefined;
|
|
3
|
+
export declare function getLatestMessageRole(messages: StandardizedMessage[]): string | undefined;
|
|
4
|
+
export declare function extractMessageText(message: StandardizedMessage): string;
|
|
5
|
+
export declare function detectKeyword(text: string, keywords: string[]): boolean;
|
|
6
|
+
export declare function detectExtendedThinkingKeyword(text: string): boolean;
|
|
7
|
+
export declare function detectImageAttachment(message: StandardizedMessage | undefined): boolean;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export function getLatestUserMessage(messages) {
|
|
2
|
+
for (let idx = messages.length - 1; idx >= 0; idx -= 1) {
|
|
3
|
+
if (messages[idx]?.role === 'user') {
|
|
4
|
+
return messages[idx];
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
return undefined;
|
|
8
|
+
}
|
|
9
|
+
export function getLatestMessageRole(messages) {
|
|
10
|
+
if (!Array.isArray(messages) || !messages.length) {
|
|
11
|
+
return undefined;
|
|
12
|
+
}
|
|
13
|
+
const last = messages[messages.length - 1];
|
|
14
|
+
if (last && typeof last.role === 'string' && last.role.trim()) {
|
|
15
|
+
return last.role.trim();
|
|
16
|
+
}
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
export function extractMessageText(message) {
|
|
20
|
+
if (typeof message.content === 'string' && message.content.trim()) {
|
|
21
|
+
return message.content;
|
|
22
|
+
}
|
|
23
|
+
return '';
|
|
24
|
+
}
|
|
25
|
+
export function detectKeyword(text, keywords) {
|
|
26
|
+
if (!text)
|
|
27
|
+
return false;
|
|
28
|
+
return keywords.some((keyword) => text.includes(keyword.toLowerCase()));
|
|
29
|
+
}
|
|
30
|
+
export function detectExtendedThinkingKeyword(text) {
|
|
31
|
+
if (!text) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
const keywords = ['仔细分析', '思考', '超级思考', '深度思考', 'careful analysis', 'deep thinking', 'deliberate'];
|
|
35
|
+
return keywords.some((keyword) => text.includes(keyword));
|
|
36
|
+
}
|
|
37
|
+
export function detectImageAttachment(message) {
|
|
38
|
+
if (!message)
|
|
39
|
+
return false;
|
|
40
|
+
if (!message.metadata || typeof message.metadata !== 'object') {
|
|
41
|
+
return false;
|
|
42
|
+
}
|
|
43
|
+
const meta = message.metadata;
|
|
44
|
+
const attachments = (meta.attachments ?? null);
|
|
45
|
+
if (Array.isArray(attachments)) {
|
|
46
|
+
return attachments.some((attachment) => {
|
|
47
|
+
const candidate = attachment;
|
|
48
|
+
const typeValue = typeof candidate.type === 'string' ? candidate.type.toLowerCase() : '';
|
|
49
|
+
const urlValue = typeof candidate.url === 'string'
|
|
50
|
+
? candidate.url
|
|
51
|
+
: typeof candidate.src === 'string'
|
|
52
|
+
? candidate.src
|
|
53
|
+
: typeof candidate.image_url === 'string'
|
|
54
|
+
? candidate.image_url
|
|
55
|
+
: typeof candidate.image_url?.url === 'string'
|
|
56
|
+
? candidate.image_url.url
|
|
57
|
+
: '';
|
|
58
|
+
return typeValue.includes('image') && urlValue.trim().length > 0;
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
if (typeof meta.attachmentType === 'string' && meta.attachmentType.toLowerCase().includes('image')) {
|
|
62
|
+
const urlCandidate = typeof meta.attachmentUrl === 'string' ? meta.attachmentUrl : '';
|
|
63
|
+
return urlCandidate.trim().length > 0;
|
|
64
|
+
}
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
@@ -42,7 +42,9 @@ export class ProviderRegistry {
|
|
|
42
42
|
runtimeKey: profile.runtimeKey,
|
|
43
43
|
modelId,
|
|
44
44
|
processMode: profile.processMode || 'chat',
|
|
45
|
-
responsesConfig: profile.responsesConfig
|
|
45
|
+
responsesConfig: profile.responsesConfig,
|
|
46
|
+
streaming: profile.streaming,
|
|
47
|
+
maxContextTokens: profile.maxContextTokens
|
|
46
48
|
};
|
|
47
49
|
}
|
|
48
50
|
static normalizeProfile(key, profile) {
|
|
@@ -58,7 +60,9 @@ export class ProviderRegistry {
|
|
|
58
60
|
runtimeKey: profile.runtimeKey,
|
|
59
61
|
modelId,
|
|
60
62
|
processMode: profile.processMode || 'chat',
|
|
61
|
-
responsesConfig: profile.responsesConfig
|
|
63
|
+
responsesConfig: profile.responsesConfig,
|
|
64
|
+
streaming: profile.streaming,
|
|
65
|
+
maxContextTokens: profile.maxContextTokens
|
|
62
66
|
};
|
|
63
67
|
}
|
|
64
68
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { countRequestTokens } from './token-counter.js';
|
|
2
|
+
export function computeRequestTokens(request, fallbackText) {
|
|
3
|
+
try {
|
|
4
|
+
return countRequestTokens(request);
|
|
5
|
+
}
|
|
6
|
+
catch {
|
|
7
|
+
return fallbackEstimateTokens(fallbackText, request.messages?.length ?? 0);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
function fallbackEstimateTokens(text, messageCount) {
|
|
11
|
+
if (!text) {
|
|
12
|
+
return Math.max(32, Math.max(messageCount, 1) * 16);
|
|
13
|
+
}
|
|
14
|
+
const rough = Math.ceil(text.length / 4);
|
|
15
|
+
return Math.max(rough, Math.max(messageCount, 1) * 32);
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface OAuthTokenFileMatch {
|
|
2
|
+
filePath: string;
|
|
3
|
+
sequence: number;
|
|
4
|
+
alias: string;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* 扫描本地 RouteCodex auth 目录中的 OAuth token 文件。
|
|
8
|
+
*
|
|
9
|
+
* 约定:
|
|
10
|
+
* - 目录: ~/.routecodex/auth
|
|
11
|
+
* - 文件名: <provider>-oauth-<sequence>[-<alias>].json
|
|
12
|
+
*
|
|
13
|
+
* 仅在 Node 环境下使用;如果环境不满足,返回空列表。
|
|
14
|
+
*/
|
|
15
|
+
export declare function scanOAuthTokenFiles(oauthProviderId: string, authDir?: string): OAuthTokenFileMatch[];
|