Mario Zechner
0c4d704a7b
Add [Unreleased] section for next cycle
2026-05-18 11:47:16 +02:00
Mario Zechner
b8f51957a0
fix(ai): add Xiaomi reasoning replay compat
...
closes #4678
2026-05-18 11:15:20 +02:00
Mario Zechner
9e2bfc7c40
fix(ai): skip unknown bedrock content blocks
...
closes #4223
2026-05-18 01:42:18 +02:00
Mario Zechner
52e13870a1
fix(ai): prefix HTTP status codes onto Azure OpenAI and OpenAI Responses error messages so auto-retry fires on 5xx/429
...
closes #4232
2026-05-18 01:11:23 +02:00
Mario Zechner
21d80deda2
fix(ai): normalize opencode go reasoning replay
...
closes #4251
2026-05-18 01:11:23 +02:00
Mario Zechner
ed3904ddd3
fix(ai): switch xiaomi models to openai completions
...
closes #4505
2026-05-18 00:14:31 +02:00
Mario Zechner
266234047a
Remove openai-codex fast model variants, they do not work
2026-05-18 00:02:52 +02:00
Mario Zechner
b256ac7d77
Closes #4342
2026-05-17 23:55:25 +02:00
Mario Zechner
7f3c340dc6
Add [Unreleased] section for next cycle
2026-05-17 21:03:41 +02:00
Mario Zechner
a01cf7afae
Merge pull request #4603 from mattiacerutti/fix/openai-codex-model-list
...
fix(ai): update OpenAI Codex model list
2026-05-17 20:54:53 +02:00
Mario Zechner
6730c04a65
Merge pull request #4622 from mattiacerutti/fix/copilot-gpt-thinking-map-fix
...
fix(ai): map copilot gpt 5 minimal thinking to low
2026-05-17 20:53:42 +02:00
Mario Zechner
6d474f8c1a
fix(ai): cap context-sized default output budgets
...
closes #4614
2026-05-17 20:06:59 +02:00
Mattia Cerutti
485afc9c3f
fix(ai): map copilot gpt minimal thinking to low
2026-05-17 12:18:50 +02:00
Mattia Cerutti
1af823be9d
fix(ai): update OpenAI Codex model list
2026-05-17 03:12:19 +02:00
Mario Zechner
2c708492e3
Release v0.74.1
2026-05-17 01:35:45 +02:00
Mario Zechner
c5831df689
fix(ai): vendor proxy env resolution
...
closes #4513
2026-05-17 00:02:37 +02:00
Mario Zechner
22a9c484e7
fix(ai): respect model output token limits
...
closes #4539
2026-05-16 23:33:06 +02:00
Mario Zechner
7c5c3d6fd6
fix(ai): detect litellm context overflow errors
...
closes #4563
2026-05-16 23:29:22 +02:00
Mario Zechner
0412f62f9e
Merge pull request #4558 from earendil-works/fix/openai-completions-throw-on-missing-finish_reason
...
fix(ai): openai-completions - throw error on missing finish-reason
2026-05-16 22:54:42 +02:00
Armin Ronacher
87881ca686
fix(ai): preserve OpenRouter cached token semantics
2026-05-16 11:55:16 +02:00
Ramiz Wachtler
98ffad0437
fix(ai): openai-completions - throw error on missing finish-reason
...
- require \ before treating \ streams as successful
- add regression coverage for truncated streams without \
- closes #4345
2026-05-15 15:26:57 +02:00
Mario Zechner
a8af0b5e99
fix(ai): ignore generic GitHub tokens for Copilot auth
...
closes #4485
2026-05-15 01:26:31 +02:00
Ramiz Wachtler
0ae909316a
fix(ai): honor retry-after for OpenAI Codex SSE retries
...
- honor `retry-after-ms` and `retry-after` for OpenAI Codex SSE retries
- add SSE retry coverage for millisecond, seconds, date, and fallback delays
2026-05-13 19:44:07 +02:00
Mario Zechner
40c05f5539
Merge pull request #4473 from apoorvumang/fix/inception-mercury-2-reasoning-off
...
fix(ai): mark inception/mercury-2 thinkingLevelMap.off as null
2026-05-13 18:48:49 +02:00
Mario Zechner
a5cca409d8
refactor(ai): use HTTP proxy agents for Bedrock
2026-05-13 16:12:48 +02:00
Apoorv Saxena
e2b69a0bb1
fix(ai): mark inception/mercury-2 thinkingLevelMap.off as null
...
Mercury 2 in instant mode (reasoning_effort: "none") disables tool calling.
The openai-completions provider hardcodes {reasoning:{effort:"none"}} when no
explicit reasoning level is passed and thinkingLevelMap.off isn't null
(openai-completions.ts:575), so every caller that doesn't opt in to a level
silently breaks Mercury 2's agentic use cases.
Setting thinkingLevelMap.off = null on the Mercury 2 catalog entry causes the
provider to omit the reasoning param entirely, letting Mercury 2's own default
take over. Low/medium/high pass through verbatim; OpenRouter normalizes them
to Mercury's vocabulary.
Prefix-matched on "inception/mercury-2" so future Mercury 2 variants on
OpenRouter inherit the fix.
2026-05-13 19:17:36 +05:30
Mario Zechner
f6b6b1f052
Merge pull request #4354 from haoqixu/fix-bun-ws-proxy
...
fix(ai): respect proxy envs in bun's websocket
2026-05-10 18:03:48 +02:00
yanirz
99dc6fcec8
fix(ai): add session affinity and compat fixes for Fireworks provider caching
...
Fireworks prompt caching is enabled by default (automatic prefix matching),
but on serverless infrastructure, requests hit random replicas. Without
session affinity, the per-replica cache misses, negating cache hit rates
and the discounted cacheRead pricing.
Changes:
- Add sendSessionAffinityHeaders and supportsCacheControlOnTools
to AnthropicMessagesCompat interface
- Send x-session-affinity header for Fireworks (and Cloudflare AI
Gateway Anthropic) when sessionId is available and caching is enabled
- Omit cache_control on tool definitions for Fireworks (unsupported
per https://docs.fireworks.ai/tools-sdks/anthropic-compatibility )
- Default supportsEagerToolInputStreaming to false for Fireworks
(unsupported field)
- Default supportsLongCacheRetention to false for Fireworks
(cache_control.ttl not supported)
- Add compat settings to Fireworks models in generate-models.ts
- Update generated models with Fireworks compat settings
- Add integration tests for session affinity and tool compat
Refs: https://docs.fireworks.ai/guides/prompt-caching
Refs: https://docs.fireworks.ai/tools-sdks/anthropic-compatibility
2026-05-10 00:11:36 +02:00
haoqixu
8c2e3eddec
fix(ai): respect proxy envs in bun's websocket
...
fixes #4346
2026-05-10 03:43:07 +08:00
Mario Zechner
7adb8e7634
feat(ai): add Together AI provider
2026-05-08 16:44:18 +02:00
Mario Zechner
9751057be9
Merge pull request #3887 from cristinaponcela/feat/image-outputs
...
feat: image content
2026-05-08 15:57:06 +02:00
Cristina Poncela Cubeiro
8fa1194c23
fix: no fallback for apiKey
2026-05-08 11:23:15 +02:00
Cristina Poncela Cubeiro
0e4f845cf4
fix: lazy loading
2026-05-08 11:08:04 +02:00
Mario Zechner
783e96a144
fix(ai): disable OpenAI reasoning where supported
2026-05-07 22:52:54 +02:00
Cristina Poncela Cubeiro
ffdf426e33
Merge remote-tracking branch 'upstream/main' into feat/image-outputs
2026-05-07 16:46:17 +02:00
Mario Zechner
147f815802
Add [Unreleased] section for next cycle
2026-05-07 16:45:27 +02:00
Cristina Poncela Cubeiro
32b2cd0720
delete: images()
2026-05-07 16:21:50 +02:00
Mario Zechner
3e5ad67e0f
chore: migrate pi packages to earendil works scope
2026-05-07 15:59:42 +02:00
Armin Ronacher
6b271842e2
fix(ai): handle mixed chat completion deltas
...
Fixes #4228
2026-05-07 00:12:19 +02:00
Armin Ronacher
ace3fd7e30
fix(ai): normalize kimi k2p6 alias to kimi-for-coding closes #4218
2026-05-06 11:34:49 +02:00
Mario Zechner
3029836894
fix(ai): stop Codex OAuth stderr writes
...
closes #4141
2026-05-06 00:14:40 +02:00
Mario Zechner
31f5c23271
fix(ai): handle OpenAI Responses reasoning text deltas
2026-05-06 00:08:26 +02:00
Mario Zechner
15aa313501
Closes #4184 , codex needs a non-empty system prompt
2026-05-05 14:50:27 +02:00
Armin Ronacher
b5755fd27d
feat(oauth): support interactive login selection ( #4190 )
2026-05-05 13:16:56 +02:00
Cristina Poncela Cubeiro
0d96b9be7f
rename: generateImages
2026-05-05 09:30:44 +02:00
Cristina Poncela Cubeiro
60e885f985
refactor: image providers into subfolder
2026-05-05 09:30:15 +02:00
Armin Ronacher
3c9c54d51b
Add [Unreleased] section for next cycle
2026-05-04 20:33:08 +02:00
Cristina Poncela Cubeiro
5731e13a61
Merge branch 'main' into feat/image-outputs
2026-05-04 16:42:51 +01:00
Cristina Poncela Cubeiro
b9c19135d9
cleanup
2026-05-04 17:10:44 +02:00
Cristina Poncela Cubeiro
63c61aac6f
feat: image models
2026-05-04 17:07:02 +02:00