Merge branch 'worktree/web-carrier-chain' into worktree/web-ask-user-question

This commit is contained in:
imccyu
2026-07-23 20:09:11 +08:00
36 changed files with 1906 additions and 138 deletions

View File

@@ -1553,7 +1553,7 @@ export interface Config extends TuiConfig {
resumeCommand?: string
}
/** Presentation settings for the pi-tui terminal mode. */
/** Interaction and presentation settings for the pi-tui terminal mode. */
export interface TuiConfig {
/** Render model reasoning blocks. */
showReasoning?: boolean
@@ -1571,6 +1571,12 @@ export interface TuiConfig {
modelDialogWidth?: number
/** Model-selector maximum height in terminal rows. */
modelDialogMaxHeight?: number
/** Maximum fuzzy file candidates displayed for one `@` query. */
fileSearchMaxResults?: number
/** Maximum paths retained in one `@` workspace index. */
fileSearchMaxEntries?: number
/** Directory basenames excluded from `@` traversal and completion. */
fileSearchExcludedDirectories?: string[]
/** Show the terminal's hardware cursor at the pi editor's IME marker. */
showHardwareCursor?: boolean
/** Apply the built-in ANSI color palette. */
@@ -1587,7 +1593,7 @@ export interface TuiConfig {
}
```
Source: [`packages/ui/tui/src/index.ts:217`](../packages/ui/tui/src/index.ts)
Source: [`packages/ui/tui/src/index.ts:248`](../packages/ui/tui/src/index.ts)
## `@deepseek-ai/dsh-tui-demo`