860 Commits

Author SHA1 Message Date
musistudio a8d7038778 Add account filtering and range-aware tray activity widgets 2026-08-25 19:06:24 +08:00
musistudio f2360ac046 Merge branch 'main' into dev/3.1 2026-08-24 20:02:57 +08:00
musi 17c8744de9 Merge pull request #1695 from songkuan-zheng/fix/fusion-vision-validate-image-inputs
fix(fusion-vision): validate and repair image inputs before forwarding
2026-08-24 20:02:20 +08:00
musi 3e979650fd Merge pull request #1713 from pacocartones/fix/media-download-release-response-body
fix(media): release artifact response body on early download failures
2026-08-24 19:44:06 +08:00
musistudio 70e7fd1a80 Secure gateway preload file permissions 2026-08-24 19:29:15 +08:00
musistudio 9e7d4f782c Implement router enhancements 2026-08-24 19:02:41 +08:00
pacocartones 6c98ea2adf fix(media): release artifact response body on early download failures
GatewayMediaExecutor.download() left the fetch Response body un-read and un-cancelled on several early-exit paths: a terminal non-ok HTTP status, an oversized declared content-length (declaredLength > maxApiArtifactBytes), and a mid-stream writeSync failure in the download loop. In each case the underlying undici connection/socket is leaked, so repeated failed downloads accumulate open connections and exhaust the pool.

Cancel the response body before throwing on those paths, and cancel the reader in the write-error handler, matching the cancellation already done on the retry branch and the in-loop size-limit branch.
2026-08-24 04:28:06 +00:00
musi 1347c868b4 Merge pull request #1691 from dylanpulver/fix/responses-session-affinity
Forward session id as prompt_cache_key on openai_responses
2026-08-22 18:34:25 +08:00
musi 5475a12a23 Merge pull request #1700 from diogomcd/fix/provider-account-meters-flattening
fix: preserve provider account meters during local agent import
2026-08-22 18:16:27 +08:00
musi e2eb944f5a Merge pull request #1705 from kskadart/fix/claude-code-auth-hook-regression
fix(core): cover Claude Code path in local agent auth provider hook
2026-08-22 17:30:17 +08:00
musistudio ccd00632ac Update project files 2026-08-22 16:12:46 +08:00
musistudio d515556574 Fix profile-specific model routing and gateway shutdown 2026-08-22 10:18:18 +08:00
kskada acf75d1280 Add Claude Code regression test for local agent auth provider hook 2026-08-21 16:29:58 +03:00
Diogo Macedo 186541d0fd fix: preserve provider account meters during import 2026-08-20 16:43:13 -03:00
musistudio 46daaad92e Resolve Claude Code routes with one-million-context model suffixes 2026-08-20 16:45:54 +08:00
songkuan-zheng 3dab369ce3 test(fusion-vision): regression coverage for data-URL base64, local SVG, label restriction 2026-08-20 04:13:13 +00:00
songkuan-zheng fc16be5d41 fix(fusion-vision): restore data-URL imageBase64, sniff local files, limit media-type labels
Review follow-up (three defects):

1. imageBase64 accepted a full data:...;base64,... URL per its schema
   documentation, but the new validation passed the whole string to the
   base64 check and rejected it. Data URLs now take the same parsed path
   as imageUrl via a shared dataUrlResult() helper.

2. Local files (imagePath/images[].path) were forwarded after wrapping
   buffer bytes without inspecting them, so a .svg on disk went upstream
   as a fake raster data URL and drew the exact strict-provider 400 this
   work avoids. File bytes now go through the same content checks as every
   other input.

3. The data URL media-type label was taken verbatim from the URL header or
   the mimeType argument. Labels are now restricted to the supported raster
   types (jpeg/png/gif/webp): an explicit supported label wins, otherwise
   the format sniffed from the bytes, otherwise image/png.
2026-08-20 04:12:58 +00:00
musi 6e1a9617ff Merge pull request #1672 from pacocartones/fix/sse-utf8-chunk-boundary
fix(gateway): SSE transforms corrupt multi-byte characters split across chunks
2026-08-20 11:23:31 +08:00
musistudio 053bcad485 Add Xingxin to provider listings 2026-08-20 10:11:51 +08:00
musi a1862982ae Merge pull request #1696 from Burlesque1/fix/large-json-body-and-extraheaders
fix(ui): truncate over-large JSON bodies in preview to avoid formatter worker crash
2026-08-19 17:58:27 +08:00
musistudio 3ba195f893 Improve Claude Code router configuration and provider support 2026-08-19 17:19:07 +08:00
Burlesque1 cfb6aae248 fix(ui): truncate over-large JSON bodies in preview to avoid formatter worker crash
Large (>=256KB) JSON request bodies were fully JSON.parse'd and pretty-printed
in the body formatter Web Worker, which then crashed (memory/CPU) on huge object
graphs - surfacing "Body formatter worker failed." and sticking at
"Loading body...". Preview truncation only applied to non-JSON bodies.

Now, in preview mode, an over-length text body is truncated to a plain-text
preview (createLogBodyPreviewText) instead of being parsed/pretty-printed, so the
worker never chokes. Full formatting still runs in "full" mode.

The judge is the real body.text length, not sizeBytes (which may be inflated
metadata and should still render its JSON tree when lightweight).

Fixes #1694
2026-08-19 08:55:14 +00:00
songkuan-zheng 1691aa957b fix(fusion-vision): validate and repair image inputs before forwarding
imageInputToUrl currently forwards whatever imageUrl/imageBase64 carries as
long as it is not an HTTP(S)/data URL, wrapping it in a blind
data:image/png;base64,... envelope. Strict upstreams answer malformed
payloads with a 400 that surfaces to the caller as a raw provider error.

Failure shapes seen in production:
- a local file path passed as imageUrl, or a bare [media_ref:...] id
- base64 truncated to length mod 4 == 1 (cut mid-image; padding cannot
  restore it, the payload is dropped)
- an XML/SVG payload (typical vision upstreams accept only jpeg/png/gif/
  webp, so relabeling it buys nothing)
- base64 truncated to length mod 4 == 2/3 (losslessly repairable by
  adding = padding)

Anything that cannot be made into a well-formed data URL is now dropped
with a precise skip reason, and a call left with no usable image fails
with a message listing every reason instead of silently proceeding.
2026-08-19 08:41:19 +00:00
musistudio b073ebef31 Add Fusion vision instructions and image capabilities 2026-08-19 16:06:21 +08:00
Dylan Pulver 51c0fe7d12 Forward session id as prompt_cache_key on openai_responses
Requests converted to the OpenAI Responses protocol left the outbound
body without any session-stable field: prompt_cache_key was never set
and the inbound Anthropic metadata.user_id was dropped. Multi-channel
Responses upstreams that pin sessions on body fields hashed each turn
onto a different channel, so channel-bound encrypted_content
continuations failed with 400 invalid_encrypted_content and prefix
cache hits were lost.

The gateway boundary plugin now fills prompt_cache_key on outbound
openai_responses JSON bodies from the first non-empty of
x-claude-code-session-id, x-claude-session-id, or the inbound
metadata.user_id, and carries metadata.user_id onto the outbound body
when no metadata was set. A caller-supplied non-empty prompt_cache_key
always wins, and other protocols pass through untouched.

Fixes #1688
2026-08-18 12:15:21 +03:00
musistudio 586dd0242f Expose browser account fetch helper to runtime plugins 2026-08-18 15:39:03 +08:00
musistudio 4344a2d6a7 Refactor routing configuration and improve provider support 2026-08-18 11:45:39 +08:00
musi fcf3d85da1 Merge pull request #1681 from songkuan-zheng/fix/usage-cache-convention-by-source
Normalize usage token conventions per source
2026-08-17 19:52:24 +08:00
songkuan-zheng 17fd745898 Normalize usage token conventions per source
normalizeUsageInputTokens decides whether input_tokens already includes the
cached prefix, and it asked the upstream provider protocol first. Both usage
call sites merge the billing headers and the response body into one snapshot
and then normalize that merge once — but on a translated response the two
sources use different conventions:

  - x-gateway-billing-* headers restate the upstream provider's own counters
    verbatim, so for an OpenAI-compatible upstream they are cache-inclusive.
  - The response body is whatever the gateway emitted. An Anthropic body is
    cache-exclusive regardless of what it was translated from.

So an Anthropic response served from an OpenAI-compatible upstream had the
body's already-excluded prefix subtracted a second time. Non-streaming
responses were unaffected by luck: the headers win the merge and are
inclusive, making the subtraction correct. Streaming responses carry no
billing headers at all, leaving the body alone to be over-subtracted and then
clamped by Math.max(0, ...) — on a long cached conversation input_tokens
reports 0 on nearly every turn, and the derived cache ratio is pinned at
100%.

Tag each source with a UsageConventionSource and normalize the two separately
before merging them. Reordering the precedence instead is not sufficient: it
moves the defect onto the non-streaming path, which depends on the headers
being reduced.

Raw-trace updates carry no provider protocol, so their billing headers keep
falling back to the request path; only the body side changes there.
2026-08-17 05:21:30 +00:00
musistudio 22b68fd907 Qualify target model selectors with routed provider 2026-08-15 23:47:32 +08:00
musistudio 83e01c3077 Sanitize target model header while preserving Unicode body 2026-08-15 23:16:15 +08:00
musistudio bb1db63c49 Merge branch 'dev/3.1' 2026-08-14 23:20:59 +08:00
musistudio c87d7c848c Add manual Docker release workflow 2026-08-14 19:11:16 +08:00
pacocartones 79f48c0070 fix(gateway): SSE transforms corrupt multi-byte characters split across chunks
Four SSE response transforms decode every upstream chunk in isolation with
chunk.toString(). A UTF-8 character whose bytes straddle a chunk boundary is
therefore decoded twice as two invalid fragments, and each fragment becomes
U+FFFD. The character is destroyed before the block is ever parsed, so no
downstream code can recover it: the JSON still parses, the event still
validates, and the replacement characters are forwarded to the client.

The pending buffer these transforms already keep does not help. It joins
partial SSE *blocks*, not partial *characters* — by the time the bytes reach
it they have already been decoded and lost.

Affected sites, all in the response chain built in gateway/request/pipeline.ts:

  codex-patch-bridge.ts               transformSseChunk
  codex-multi-agent-bridge.ts         transformSseChunk
  hosted-web-search/response-transform.ts
                                      hostedWebSearchProtocolSseStream
                                      anthropicHostedWebSearchProtocolSseStream

The correct pattern is already in this repository. anthropic-response-model.ts,
the last transform in that same chain, runs the identical block-splitting loop
over a node:string_decoder StringDecoder, which holds back an incomplete
trailing sequence until the next chunk supplies the rest.

Apply that pattern to the other four. Each transform now owns one decoder for
its lifetime, writes every chunk through it, and drains decoder.end() in flush
so a truncated stream still emits what the decoder was holding.

Any non-ASCII output is affected — CJK, Cyrillic, accented Latin, emoji — and
the apply_patch bridge carries file contents, so a corrupted character there is
written to disk.
2026-08-14 12:40:55 +02:00
musistudio f2860e165a Release 3.0.21 v3.0.21 2026-08-14 17:51:29 +08:00
musistudio d33cab9242 Update ai-gateway dependency to 1.0.17 2026-08-14 17:31:50 +08:00
musistudio 0fd9ea8f8b Add provider model refresh control 2026-08-14 16:24:25 +08:00
musistudio 9607c5f0a3 Improve provider account card layouts and meter visibility 2026-08-14 14:19:33 +08:00
musistudio e4072137d4 Increase route script source size limit to 5 MiB 2026-08-14 11:44:33 +08:00
musistudio 48956f98cd Ensure request log tests close stores and cover row limit 2026-08-14 11:28:48 +08:00
musistudio 0104474e95 Merge branch 'main' into dev/3.1
# Conflicts:
#	packages/core/test/integration/observability/request-log-store.test.mjs
2026-08-14 11:17:06 +08:00
musistudio 2c424588f1 Merge remote-tracking branch 'origin/dev/3.1' into dev/3.1 2026-08-14 11:14:17 +08:00
musi 34da9b6a70 Merge pull request #1657 from pacocartones/fix/request-log-store-test-teardown
test(core): close request log stores before temp cleanup
2026-08-14 09:20:44 +08:00
musi 958e3fc02e Merge pull request #1665 from jesieleo/fix/account-balance-compact-overflow
fix(ui): 修复紧凑账户余额卡片裁切
2026-08-14 09:13:53 +08:00
musi 013965d95f Refactor codebase and remove obsolete implementation 2026-08-14 08:37:29 +08:00
jesieleo 16f0868f40 fix(ui): 修复紧凑账户余额卡片裁切 2026-08-13 19:32:03 +08:00
pacocartones 2eb05b0e47 test(core): close request log stores before cleanup 2026-08-11 18:56:38 +02:00
musistudio 2a7aa9286b Update router configuration and provider handling 2026-08-11 16:15:53 +08:00
musistudio 3cb188c064 Report bounded agent analysis and handle missing session details 2026-08-11 15:00:59 +08:00
musi 56d7b37c64 Support multiple WorkBuddy models and generic app paths 2026-08-11 12:36:44 +08:00