Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion apps/desktop/src/main/e2e-fixture/scenarios-chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,14 @@ export function turnMessages(now: number): StoredMessage[] {
turnId,
ts: now - 9 * 60_000,
text: '当前需要重点观察截图基线是否稳定、启用模型名单是否清晰,以及完整目录是否只在搜索时出现。',
thinking: { text: '确认关键 UI 状态和工具执行结果。' },
thinking: {
text: [
'**Calculating CRT Solution**',
'',
'First combine \\( n \\equiv 3 \\pmod 7 \\) with \\( n \\equiv 5 \\pmod {11} \\).',
'Then solve \\( 7a \\equiv 2 \\pmod {11} \\), giving \\( a \\equiv 5 \\pmod {11} \\).',
].join('\n'),
},
modelId: 'glm-5.1',
},
{
Expand Down
3 changes: 2 additions & 1 deletion docs/astryx-surface-file-inventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Each row is one on-disk product surface file. Regenerated inventory must stay in

Wiki bar: Design Conventions · API Use-the-System · Theming · Container Padding.

**Totals:** 217 files — blocker 0, polish 1, aligned 216.
**Totals:** 218 files — blocker 0, polish 1, aligned 217.

## Exclusions (explicit)

Expand Down Expand Up @@ -206,6 +206,7 @@ Wiki bar: Design Conventions · API Use-the-System · Theming · Container Paddi
| `packages/ui/src/locale-context.tsx` | ui-composition | none | aligned — no raw controls; no Astryx JSX usage | aligned |
| `packages/ui/src/maka-wordmark.tsx` | ui-composition | none | aligned — no raw controls; no Astryx JSX usage | aligned |
| `packages/ui/src/markdown-body.tsx` | ui-composition | none | aligned — no raw controls; no Astryx JSX usage | aligned |
| `packages/ui/src/markdown-math.tsx` | ui-composition | none | aligned — no raw controls; no Astryx JSX usage | aligned |
| `packages/ui/src/markdown.tsx` | ui-composition | none | aligned — no raw controls; no Astryx JSX usage | aligned |
| `packages/ui/src/mermaid-diagram.tsx` | ui-composition | Button, Collapsible, Dialog, IconButton, Toolbar | aligned — uses Astryx (Button, Collapsible, Dialog, IconButton, Toolbar) | aligned |
| `packages/ui/src/model-picker.tsx` | ui-composition | Selector | aligned — uses Astryx (Selector) | aligned |
Expand Down
1 change: 1 addition & 0 deletions docs/astryx-surface-file-inventory.paths
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ packages/ui/src/inline-rename-input.tsx
packages/ui/src/locale-context.tsx
packages/ui/src/maka-wordmark.tsx
packages/ui/src/markdown-body.tsx
packages/ui/src/markdown-math.tsx
packages/ui/src/markdown.tsx
packages/ui/src/mermaid-diagram.tsx
packages/ui/src/model-picker.tsx
Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,13 @@ describe('Claude subscription runtime wiring', () => {

test('Codex OAuth provider options use non-persistent ChatGPT backend defaults', () => {
assert.deepEqual(buildProviderOptions(codexOAuthConnection(), 'gpt-5.5'), {
openai: { store: false, textVerbosity: 'medium', parallelToolCalls: true },
openai: {
store: false,
textVerbosity: 'medium',
reasoningSummary: 'auto',
reasoningEffort: 'medium',
parallelToolCalls: true,
},
});
});
});
Expand Down
Loading
Loading