zidane 5.0.4 → 5.0.6
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/dist/chat.d.ts +68 -12
- package/dist/chat.d.ts.map +1 -1
- package/dist/chat.js +2 -2
- package/dist/tui.d.ts +13 -15
- package/dist/tui.d.ts.map +1 -1
- package/dist/tui.js +415 -135
- package/dist/tui.js.map +1 -1
- package/dist/{turn-operations-BF3hMNgo.js → turn-operations-BfEh-GER.js} +133 -29
- package/dist/turn-operations-BfEh-GER.js.map +1 -0
- package/package.json +1 -1
- package/dist/turn-operations-BF3hMNgo.js.map +0 -1
package/dist/chat.d.ts
CHANGED
|
@@ -220,6 +220,63 @@ declare function generateSessionTitle({
|
|
|
220
220
|
*/
|
|
221
221
|
declare function cleanTitle(raw: string): string;
|
|
222
222
|
//#endregion
|
|
223
|
+
//#region src/chat/model-catalog.d.ts
|
|
224
|
+
/** A model entry as displayed in the cross-provider picker. */
|
|
225
|
+
interface CatalogEntry {
|
|
226
|
+
providerKey: ProviderKey;
|
|
227
|
+
providerLabel: string;
|
|
228
|
+
model: ModelInfo;
|
|
229
|
+
/**
|
|
230
|
+
* Pre-computed lowercase corpus for substring search across the
|
|
231
|
+
* provider key, label, model id, and display name. Built once at
|
|
232
|
+
* catalog-assembly time so filtering on every keystroke is
|
|
233
|
+
* O(catalogSize × queryLength), not O(catalogSize × fieldCount ×
|
|
234
|
+
* lowercase-overhead × queryLength).
|
|
235
|
+
*/
|
|
236
|
+
searchCorpus: string;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Build the unified catalog from a list of available providers.
|
|
240
|
+
*
|
|
241
|
+
* Provider order is preserved (callers typically pass the picker order
|
|
242
|
+
* — alphabetical, auth-detection order, etc.); model order inside each
|
|
243
|
+
* provider matches whatever `modelsFor` returns. The current selection
|
|
244
|
+
* (when set) is bubbled to the top of its provider's section so it
|
|
245
|
+
* shows first without disturbing relative ordering elsewhere.
|
|
246
|
+
*
|
|
247
|
+
* `modelsFor` is injected (not imported from `./providers`) so the same
|
|
248
|
+
* helper works with hosts that supply their own model resolver via
|
|
249
|
+
* `ResolvedConfig.modelsFor`.
|
|
250
|
+
*/
|
|
251
|
+
declare function buildModelCatalog(opts: {
|
|
252
|
+
providers: readonly ProviderAuth[];
|
|
253
|
+
modelsFor: (key: ProviderKey) => readonly ModelInfo[]; /** Optional currently-selected pair — promoted to the top of its provider group. */
|
|
254
|
+
current?: {
|
|
255
|
+
providerKey: ProviderKey;
|
|
256
|
+
modelId: string;
|
|
257
|
+
} | null;
|
|
258
|
+
}): CatalogEntry[];
|
|
259
|
+
/**
|
|
260
|
+
* Filter `catalog` by a user query. Empty / whitespace-only queries
|
|
261
|
+
* pass everything through unchanged (`O(1)` short-circuit). Multi-term
|
|
262
|
+
* queries (space-separated) require EVERY term to appear somewhere in
|
|
263
|
+
* the entry's search corpus — so `"claude opus"` matches `claude-opus-4`
|
|
264
|
+
* regardless of how the words are interleaved with provider names.
|
|
265
|
+
*
|
|
266
|
+
* Match is case-insensitive (the corpus is pre-lowercased; the query
|
|
267
|
+
* is lowercased once per call).
|
|
268
|
+
*/
|
|
269
|
+
declare function filterModelCatalog(catalog: readonly CatalogEntry[], query: string): CatalogEntry[];
|
|
270
|
+
/**
|
|
271
|
+
* Find a catalog entry's index by its `{providerKey, modelId}` tuple.
|
|
272
|
+
* Returns `-1` when not present. Useful when re-rendering the picker
|
|
273
|
+
* (a query just narrowed the list, where did the selection land?).
|
|
274
|
+
*/
|
|
275
|
+
declare function indexOfEntry(catalog: readonly CatalogEntry[], target: {
|
|
276
|
+
providerKey: ProviderKey;
|
|
277
|
+
modelId: string;
|
|
278
|
+
} | null | undefined): number;
|
|
279
|
+
//#endregion
|
|
223
280
|
//#region src/chat/oauth.d.ts
|
|
224
281
|
declare function supportsOAuth(descriptor: ProviderDescriptor): boolean;
|
|
225
282
|
interface OAuthFlowOptions {
|
|
@@ -291,17 +348,16 @@ declare const IMPLICITLY_SAFE_TOOLS: readonly string[];
|
|
|
291
348
|
* Test whether a `{ tool, input }` pair is covered by one safelist entry.
|
|
292
349
|
*
|
|
293
350
|
* Supported entry shapes:
|
|
294
|
-
* - `"<tool>"` — broad match on tool name. For `shell
|
|
295
|
-
*
|
|
296
|
-
* - `"<tool>:<token>:*"` — match when the primary arg's first token
|
|
297
|
-
* `<token>`. For `shell`,
|
|
298
|
-
*
|
|
299
|
-
*
|
|
300
|
-
*
|
|
301
|
-
*
|
|
302
|
-
*
|
|
303
|
-
*
|
|
304
|
-
* version of the TUI).
|
|
351
|
+
* - `"<tool>"` — broad match on tool name. For `shell`, the command
|
|
352
|
+
* must not chain through another program (see {@link SHELL_CHAINING_RE}).
|
|
353
|
+
* - `"<tool>:<token>:*"` — match when the primary arg's first token
|
|
354
|
+
* equals `<token>`. For `shell`, same chaining gate as above. Pipes
|
|
355
|
+
* and redirects are allowed so `shell:sentry:*` covers the typical
|
|
356
|
+
* `sentry … | jq …` workflow.
|
|
357
|
+
*
|
|
358
|
+
* Entries that don't fit either shape are ignored (forward-compat for
|
|
359
|
+
* future pattern syntax — readers shouldn't choke on entries written
|
|
360
|
+
* by a newer version of the TUI).
|
|
305
361
|
*/
|
|
306
362
|
declare function matchesSafelistEntry(entry: string, tool: string, input: Record<string, unknown>): boolean;
|
|
307
363
|
/** True when a call matches ANY entry in the project's safelist (or is implicitly safe). */
|
|
@@ -632,5 +688,5 @@ declare function countNeighbors(turnIds: readonly string[], turnId: string): {
|
|
|
632
688
|
after: number;
|
|
633
689
|
} | null;
|
|
634
690
|
//#endregion
|
|
635
|
-
export { type ActiveTrigger, type AgentAccent, type AgentProfile, type AgentRegistry, type ApiKeyCredential, type ApprovalDecision, type ApprovalRequest, type AuthMethod, BUILD_AGENT, BUILTIN_AGENTS, BUILTIN_PROVIDERS, BUILTIN_THEMES, type BooleanSettingKey, CATPPUCCIN_FRAPPE, CATPPUCCIN_LATTE, CATPPUCCIN_MACCHIATO, CATPPUCCIN_MOCHA, type ChatOptions, type ChipColor, type ChipColorMap, type CompletionContext, type CompletionItem, type CompletionProvider, type CompletionReference, type CompletionState, ConfigProvider, type CredentialsFile, DEFAULT_AGENT_ID, DEFAULT_SETTINGS, DEFAULT_THEME, type DiscoveredMcp, type EnabledAllowlistKey, type EnabledToggleSet, FILES_TRIGGER, type FileEntry, type GenerateSessionTitleOptions, IMPLICITLY_SAFE_TOOLS, type ListProjectFilesOptions, type ModelInfo, type OAuthCredential, type OAuthFlowOptions, type Owner, PLAN_AGENT, type Picked, type ProjectEntry, type ProjectsFile, type PromptSegment, type PromptSegmentRef, type ProviderAuth, type ProviderCredential, type ProviderDescriptor, type ProviderKey, type ProviderRegistry, type RequestApproval, type ResolvedConfig, SETTINGS_CHOICES, SETTINGS_TOGGLES, SKILLS_TRIGGER, type SafeModeActions, SafeModeProvider, type Screen, type SessionExportAnchor, type SessionExportFormat, type SessionExportTarget, type SessionMeta, type Settings, type SettingsChoice, SettingsProvider, type SettingsToggle, type StateStoreApi, type StreamBuffer, type StreamEvent, type StreamSource, type SyntaxStyles, type SyntaxTokenStyle, type Theme, type ThemeColors, ThemeProvider, type ThemeSelect, type ThemeSurfaces, type TuiState, VAPORWAVE_THEME, addToSafelist, ageString, anthropicDescriptor, applyApiKeyEnv, applyInsert, buildMcpServers, buildSkillsConfig, cerebrasDescriptor, cleanTitle, collectReferences, countNeighbors, createFilesCompletionProvider, createSkillsCompletionProvider, createStateStore, credKeyOf, credentialsPath, defaultMcpsConfigPaths, defaultSkillScanPaths, deleteTurnSafely, deriveSessionTitle, detectAuth, discoverProjectMcps, discoverProjectSkills, eventsFromTurns, finalizeStreamingMarkdown, finalizeStreamingMarkdownForOwner, findActiveTrigger, fmtTokens, generateSessionTitle, getContextWindow, getModelInfo, getSafelist, isOnSafelist, lastContextSizeFromTurns, listProjectFiles, listSessionMeta, loadState, matchesSafelistEntry, mergeReferences, modelSupportsReasoning, modelsForDescriptor, openaiDescriptor, openrouterDescriptor, parseMcpsFile, piIdOf, projectsFilePath, readCredentials, readProjects, readProviderCredential, removeProviderCredential, renderSession, resolveAgentId, resolveChipColor, resolveConfig, resolveSessionExportTarget, resolveTheme, runOAuthLogin, saveState, selectableTurnIds, setProviderCredential, shortId, singleAgentRegistry, splitPromptSegments, stripSpawnTokensLine, suggestSafelistEntry, supportsOAuth, titleFromTurns, toolCallPreview, toolResultText, truncateTurnsAt, turnAsText, turnContextSize, uniqueFilesFromReferences, uniqueSkillNamesFromReferences, useColors, useCompletion, useConfig, useEnabledToggleSet, useSafeModeActions, useSafeModeQueue, useSelectStyle, useSettings, useStreamBuffer, useSurfaces, useSyntaxStyles, useTheme, writeCredentials, writeProjects, writeSessionExport };
|
|
691
|
+
export { type ActiveTrigger, type AgentAccent, type AgentProfile, type AgentRegistry, type ApiKeyCredential, type ApprovalDecision, type ApprovalRequest, type AuthMethod, BUILD_AGENT, BUILTIN_AGENTS, BUILTIN_PROVIDERS, BUILTIN_THEMES, type BooleanSettingKey, CATPPUCCIN_FRAPPE, CATPPUCCIN_LATTE, CATPPUCCIN_MACCHIATO, CATPPUCCIN_MOCHA, type CatalogEntry, type ChatOptions, type ChipColor, type ChipColorMap, type CompletionContext, type CompletionItem, type CompletionProvider, type CompletionReference, type CompletionState, ConfigProvider, type CredentialsFile, DEFAULT_AGENT_ID, DEFAULT_SETTINGS, DEFAULT_THEME, type DiscoveredMcp, type EnabledAllowlistKey, type EnabledToggleSet, FILES_TRIGGER, type FileEntry, type GenerateSessionTitleOptions, IMPLICITLY_SAFE_TOOLS, type ListProjectFilesOptions, type ModelInfo, type OAuthCredential, type OAuthFlowOptions, type Owner, PLAN_AGENT, type Picked, type ProjectEntry, type ProjectsFile, type PromptSegment, type PromptSegmentRef, type ProviderAuth, type ProviderCredential, type ProviderDescriptor, type ProviderKey, type ProviderRegistry, type RequestApproval, type ResolvedConfig, SETTINGS_CHOICES, SETTINGS_TOGGLES, SKILLS_TRIGGER, type SafeModeActions, SafeModeProvider, type Screen, type SessionExportAnchor, type SessionExportFormat, type SessionExportTarget, type SessionMeta, type Settings, type SettingsChoice, SettingsProvider, type SettingsToggle, type StateStoreApi, type StreamBuffer, type StreamEvent, type StreamSource, type SyntaxStyles, type SyntaxTokenStyle, type Theme, type ThemeColors, ThemeProvider, type ThemeSelect, type ThemeSurfaces, type TuiState, VAPORWAVE_THEME, addToSafelist, ageString, anthropicDescriptor, applyApiKeyEnv, applyInsert, buildMcpServers, buildModelCatalog, buildSkillsConfig, cerebrasDescriptor, cleanTitle, collectReferences, countNeighbors, createFilesCompletionProvider, createSkillsCompletionProvider, createStateStore, credKeyOf, credentialsPath, defaultMcpsConfigPaths, defaultSkillScanPaths, deleteTurnSafely, deriveSessionTitle, detectAuth, discoverProjectMcps, discoverProjectSkills, eventsFromTurns, filterModelCatalog, finalizeStreamingMarkdown, finalizeStreamingMarkdownForOwner, findActiveTrigger, fmtTokens, generateSessionTitle, getContextWindow, getModelInfo, getSafelist, indexOfEntry, isOnSafelist, lastContextSizeFromTurns, listProjectFiles, listSessionMeta, loadState, matchesSafelistEntry, mergeReferences, modelSupportsReasoning, modelsForDescriptor, openaiDescriptor, openrouterDescriptor, parseMcpsFile, piIdOf, projectsFilePath, readCredentials, readProjects, readProviderCredential, removeProviderCredential, renderSession, resolveAgentId, resolveChipColor, resolveConfig, resolveSessionExportTarget, resolveTheme, runOAuthLogin, saveState, selectableTurnIds, setProviderCredential, shortId, singleAgentRegistry, splitPromptSegments, stripSpawnTokensLine, suggestSafelistEntry, supportsOAuth, titleFromTurns, toolCallPreview, toolResultText, truncateTurnsAt, turnAsText, turnContextSize, uniqueFilesFromReferences, uniqueSkillNamesFromReferences, useColors, useCompletion, useConfig, useEnabledToggleSet, useSafeModeActions, useSafeModeQueue, useSelectStyle, useSettings, useStreamBuffer, useSurfaces, useSyntaxStyles, useTheme, writeCredentials, writeProjects, writeSessionExport };
|
|
636
692
|
//# sourceMappingURL=chat.d.ts.map
|
package/dist/chat.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","names":[],"sources":["../src/chat/files-discovery.ts","../src/chat/completion-files.ts","../src/chat/completion-skills.ts","../src/chat/config-context.tsx","../src/chat/credentials.ts","../src/chat/format.ts","../src/chat/generate-title.ts","../src/chat/oauth.ts","../src/chat/safe-mode.ts","../src/chat/session-export.ts","../src/chat/settings-context.tsx","../src/chat/skills-discovery.ts","../src/chat/streaming.ts","../src/chat/theme-context.tsx","../src/chat/themes/catppuccin.ts","../src/chat/themes/vaporwave.ts","../src/chat/turn-operations.ts"],"mappings":";;;;;;;;;;;;;;;;AAoBA;;;;;;UAAiB,SAAA;EAMT;EAJN,IAAA;EAiDe;EA/Cf,IAAA;;EAEA,MAAA;AAAA;;UA6Ce,uBAAA;EAMN;EAJT,GAAA;EAIoB;EAFpB,QAAA;EAcoC;EAZpC,MAAA,GAAS,WAAA;AAAA;;;;;;;;;;iBAYW,gBAAA,CAAiB,IAAA,GAAM,uBAAA,GAA+B,OAAA,CAAQ,SAAA;;;;cCrEvE,aAAA;;;;ADmDb;;;;;;;;;;iBCjCgB,6BAAA,CAA8B,IAAA;EDmDR,qFCjDpC,UAAA,iBAA2B,SAAA,IDiDgB;EC/C3C,KAAA;AAAA,IACE,kBAAA,CAAmB,SAAA;;;;;;iBA+GP,yBAAA,CACd,UAAA,WAAqB,mBAAA,cACpB,SAAA;;;;cCvIU,cAAA;;;AFkDb;;;;;;iBErCgB,8BAAA,CAA+B,IAAA;EF2CpC,8EEzCT,UAAA,iBAA2B,WAAA,IFyCP;EEvCpB,UAAA;AAAA,IACE,kBAAA,CAAmB,WAAA;;;;;;iBAqFP,8BAAA,CACd,UAAA,WAAqB,mBAAA;;;iBChHP,cAAA,CAAA;EAAiB,MAAA;EAAQ;AAAA;EAAc,MAAA,EAAQ,cAAA;EAAgB,QAAA,EAAU,SAAA;AAAA,IAAW,oBAAA,CAAA,GAAA,CAAA,OAAA;AAAA,iBAIpF,SAAA,CAAA,GAAa,cAAA;;;UCaZ,gBAAA;EACf,IAAA;EACA,KAAA;AAAA;AAAA,UAEe,eAAA;EACf,IAAA;EACA,MAAA;EACA,OAAA;EACA,OAAA;EJmDkF;EAAA,CIjDjF,KAAA;AAAA;AAAA,KAES,kBAAA,GAAqB,gBAAA,GAAmB,eAAA;;KAGxC,eAAA,GAAkB,MAAA,SAAe,kBAAA;;;;;;;;iBAS7B,eAAA,CAAgB,OAAA;;;;;AHhBhC;;;;iBG4BgB,eAAA,CAAgB,OAAA,WAAkB,eAAA;;iBAuBlC,sBAAA,CAAuB,OAAA,UAAiB,UAAA,EAAY,kBAAA,GAAqB,kBAAA;;;;;;;;iBAWzE,gBAAA,CAAiB,OAAA,UAAiB,KAAA,EAAO,eAAA;AAAA,iBAQzC,qBAAA,CACd,OAAA,UACA,UAAA,EAAY,kBAAA,EACZ,IAAA,EAAM,kBAAA;AAAA,iBAOQ,wBAAA,CAAyB,OAAA,UAAiB,UAAA,EAAY,kBAAA;;;;;;;;;;;;AFjGtE;;iBEuHgB,cAAA,CACd,OAAA,UACA,QAAA,EAAU,QAAA,CAAS,MAAA,SAAe,kBAAA;;;;iBC3IpB,SAAA,CAAU,CAAA;;iBASV,SAAA,CAAU,EAAA,UAAY,GAAA;;iBAatB,OAAA,CAAQ,EAAA;;;UCCP,2BAAA;EACf,QAAA,EAAU,QAAA;ENDV;EMGA,KAAA;ENHM;EMKN,KAAA,WAAgB,WAAA;ENwCsB;EMtCtC,QAAA;EN4CoB;EM1CpB,MAAA,GAAS,WAAA;AAAA;;;;;ANsDX;;;;;;iBMzCsB,oBAAA,CAAA;EACpB,QAAA;EACA,KAAA;EACA,KAAA;EACA,QAAA;EACA;AAAA,GACC,2BAAA,GAA8B,OAAA;;;;;;;;;;;ALlCjC;;;;iBK4HgB,UAAA,CAAW,GAAA;;;
|
|
1
|
+
{"version":3,"file":"chat.d.ts","names":[],"sources":["../src/chat/files-discovery.ts","../src/chat/completion-files.ts","../src/chat/completion-skills.ts","../src/chat/config-context.tsx","../src/chat/credentials.ts","../src/chat/format.ts","../src/chat/generate-title.ts","../src/chat/model-catalog.ts","../src/chat/oauth.ts","../src/chat/safe-mode.ts","../src/chat/session-export.ts","../src/chat/settings-context.tsx","../src/chat/skills-discovery.ts","../src/chat/streaming.ts","../src/chat/theme-context.tsx","../src/chat/themes/catppuccin.ts","../src/chat/themes/vaporwave.ts","../src/chat/turn-operations.ts"],"mappings":"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"}
|
package/dist/chat.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export { BUILD_AGENT, BUILTIN_AGENTS, BUILTIN_PROVIDERS, BUILTIN_THEMES, CATPPUCCIN_FRAPPE, CATPPUCCIN_LATTE, CATPPUCCIN_MACCHIATO, CATPPUCCIN_MOCHA, ConfigProvider, DEFAULT_AGENT_ID, DEFAULT_SETTINGS, DEFAULT_THEME, FILES_TRIGGER, IMPLICITLY_SAFE_TOOLS, PLAN_AGENT, SETTINGS_CHOICES, SETTINGS_TOGGLES, SKILLS_TRIGGER, SafeModeProvider, SettingsProvider, ThemeProvider, VAPORWAVE_THEME, addToSafelist, ageString, anthropicDescriptor, applyApiKeyEnv, applyInsert, buildMcpServers, buildSkillsConfig, cerebrasDescriptor, cleanTitle, collectReferences, countNeighbors, createFilesCompletionProvider, createSkillsCompletionProvider, createStateStore, credKeyOf, credentialsPath, defaultMcpsConfigPaths, defaultSkillScanPaths, deleteTurnSafely, deriveSessionTitle, detectAuth, discoverProjectMcps, discoverProjectSkills, eventsFromTurns, finalizeStreamingMarkdown, finalizeStreamingMarkdownForOwner, findActiveTrigger, fmtTokens, generateSessionTitle, getContextWindow, getModelInfo, getSafelist, isOnSafelist, lastContextSizeFromTurns, listProjectFiles, listSessionMeta, loadState, matchesSafelistEntry, mergeReferences, modelSupportsReasoning, modelsForDescriptor, openaiDescriptor, openrouterDescriptor, parseMcpsFile, piIdOf, projectsFilePath, readCredentials, readProjects, readProviderCredential, removeProviderCredential, renderSession, resolveAgentId, resolveChipColor, resolveConfig, resolveSessionExportTarget, resolveTheme, runOAuthLogin, saveState, selectableTurnIds, setProviderCredential, shortId, singleAgentRegistry, splitPromptSegments, stripSpawnTokensLine, suggestSafelistEntry, supportsOAuth, titleFromTurns, toolCallPreview, toolResultText, truncateTurnsAt, turnAsText, turnContextSize, uniqueFilesFromReferences, uniqueSkillNamesFromReferences, useColors, useCompletion, useConfig, useEnabledToggleSet, useSafeModeActions, useSafeModeQueue, useSelectStyle, useSettings, useStreamBuffer, useSurfaces, useSyntaxStyles, useTheme, writeCredentials, writeProjects, writeSessionExport };
|
|
1
|
+
import { $ as SETTINGS_TOGGLES, $t as modelsForDescriptor, A as readProjects, At as FILES_TRIGGER, B as defaultMcpsConfigPaths, Bt as credentialsPath, C as useSafeModeQueue, Ct as titleFromTurns, D as isOnSafelist, Dt as SKILLS_TRIGGER, E as getSafelist, F as supportsOAuth, Ft as findActiveTrigger, G as ageString, Gt as writeCredentials, H as parseMcpsFile, Ht as readProviderCredential, I as buildModelCatalog, It as mergeReferences, J as shortId, Jt as cerebrasDescriptor, Kt as BUILTIN_PROVIDERS, L as filterModelCatalog, Lt as useCompletion, M as writeProjects, Mt as uniqueFilesFromReferences, N as splitPromptSegments, Nt as applyInsert, O as matchesSafelistEntry, Ot as createSkillsCompletionProvider, P as runOAuthLogin, Pt as collectReferences, Q as SETTINGS_CHOICES, Qt as modelSupportsReasoning, R as indexOfEntry, Rt as detectAuth, S as useSafeModeActions, St as stripSpawnTokensLine, T as addToSafelist, Tt as toolResultText, U as cleanTitle, Ut as removeProviderCredential, V as discoverProjectMcps, Vt as readCredentials, W as generateSessionTitle, Wt as setProviderCredential, X as useEnabledToggleSet, Xt as getContextWindow, Y as listProjectFiles, Yt as credKeyOf, Z as DEFAULT_SETTINGS, Zt as getModelInfo, _ as discoverProjectSkills, _t as lastContextSizeFromTurns, a as ThemeProvider, an as DEFAULT_AGENT_ID, at as resolveTheme, b as writeSessionExport, bt as saveState, c as useSurfaces, cn as singleAgentRegistry, ct as CATPPUCCIN_LATTE, d as finalizeStreamingMarkdown, dt as ConfigProvider, en as openaiDescriptor, et as SettingsProvider, f as finalizeStreamingMarkdownForOwner, ft as useConfig, g as defaultSkillScanPaths, gt as eventsFromTurns, h as buildSkillsConfig, ht as deriveSessionTitle, i as turnAsText, in as BUILTIN_AGENTS, it as resolveChipColor, j as suggestSafelistEntry, jt as createFilesCompletionProvider, k as projectsFilePath, kt as uniqueSkillNamesFromReferences, l as useSyntaxStyles, lt as CATPPUCCIN_MACCHIATO, m as useStreamBuffer, mt as createStateStore, n as deleteTurnSafely, nn as piIdOf, nt as BUILTIN_THEMES, o as useColors, on as PLAN_AGENT, ot as VAPORWAVE_THEME, p as turnContextSize, pt as resolveConfig, q as fmtTokens, qt as anthropicDescriptor, r as truncateTurnsAt, rn as BUILD_AGENT, rt as DEFAULT_THEME, s as useSelectStyle, sn as resolveAgentId, st as CATPPUCCIN_FRAPPE, t as countNeighbors, tn as openrouterDescriptor, tt as useSettings, u as useTheme, ut as CATPPUCCIN_MOCHA, v as renderSession, vt as listSessionMeta, w as IMPLICITLY_SAFE_TOOLS, wt as toolCallPreview, x as SafeModeProvider, xt as selectableTurnIds, y as resolveSessionExportTarget, yt as loadState, z as buildMcpServers, zt as applyApiKeyEnv } from "./turn-operations-BfEh-GER.js";
|
|
2
|
+
export { BUILD_AGENT, BUILTIN_AGENTS, BUILTIN_PROVIDERS, BUILTIN_THEMES, CATPPUCCIN_FRAPPE, CATPPUCCIN_LATTE, CATPPUCCIN_MACCHIATO, CATPPUCCIN_MOCHA, ConfigProvider, DEFAULT_AGENT_ID, DEFAULT_SETTINGS, DEFAULT_THEME, FILES_TRIGGER, IMPLICITLY_SAFE_TOOLS, PLAN_AGENT, SETTINGS_CHOICES, SETTINGS_TOGGLES, SKILLS_TRIGGER, SafeModeProvider, SettingsProvider, ThemeProvider, VAPORWAVE_THEME, addToSafelist, ageString, anthropicDescriptor, applyApiKeyEnv, applyInsert, buildMcpServers, buildModelCatalog, buildSkillsConfig, cerebrasDescriptor, cleanTitle, collectReferences, countNeighbors, createFilesCompletionProvider, createSkillsCompletionProvider, createStateStore, credKeyOf, credentialsPath, defaultMcpsConfigPaths, defaultSkillScanPaths, deleteTurnSafely, deriveSessionTitle, detectAuth, discoverProjectMcps, discoverProjectSkills, eventsFromTurns, filterModelCatalog, finalizeStreamingMarkdown, finalizeStreamingMarkdownForOwner, findActiveTrigger, fmtTokens, generateSessionTitle, getContextWindow, getModelInfo, getSafelist, indexOfEntry, isOnSafelist, lastContextSizeFromTurns, listProjectFiles, listSessionMeta, loadState, matchesSafelistEntry, mergeReferences, modelSupportsReasoning, modelsForDescriptor, openaiDescriptor, openrouterDescriptor, parseMcpsFile, piIdOf, projectsFilePath, readCredentials, readProjects, readProviderCredential, removeProviderCredential, renderSession, resolveAgentId, resolveChipColor, resolveConfig, resolveSessionExportTarget, resolveTheme, runOAuthLogin, saveState, selectableTurnIds, setProviderCredential, shortId, singleAgentRegistry, splitPromptSegments, stripSpawnTokensLine, suggestSafelistEntry, supportsOAuth, titleFromTurns, toolCallPreview, toolResultText, truncateTurnsAt, turnAsText, turnContextSize, uniqueFilesFromReferences, uniqueSkillNamesFromReferences, useColors, useCompletion, useConfig, useEnabledToggleSet, useSafeModeActions, useSafeModeQueue, useSelectStyle, useSettings, useStreamBuffer, useSurfaces, useSyntaxStyles, useTheme, writeCredentials, writeProjects, writeSessionExport };
|
package/dist/tui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { b as SkillConfig } from "./agent-JhicgLOV.js";
|
|
2
|
-
import { $ as Settings, C as DiscoveredMcp, N as ResolvedConfig, O as EnabledAllowlistKey, Q as SessionMeta, S as splitPromptSegments, _t as ModelInfo, at as CompletionReference, b as PromptSegment, c as ThemeColors, et as StreamEvent, it as CompletionProvider, j as ChatOptions, jt as AgentRegistry, kt as AgentAccent, m as ApprovalRequest, ot as CompletionState, p as ApprovalDecision, pt as ProviderAuth, s as Theme, x as PromptSegmentRef } from "./theme-C3JHZ5y9.js";
|
|
2
|
+
import { $ as Settings, C as DiscoveredMcp, N as ResolvedConfig, O as EnabledAllowlistKey, Q as SessionMeta, S as splitPromptSegments, _t as ModelInfo, at as CompletionReference, b as PromptSegment, c as ThemeColors, et as StreamEvent, it as CompletionProvider, j as ChatOptions, jt as AgentRegistry, kt as AgentAccent, m as ApprovalRequest, mt as ProviderKey, ot as CompletionState, p as ApprovalDecision, pt as ProviderAuth, s as Theme, x as PromptSegmentRef } from "./theme-C3JHZ5y9.js";
|
|
3
3
|
import * as _$react from "react";
|
|
4
4
|
import { ReactNode } from "react";
|
|
5
5
|
import { SyntaxStyle } from "@opentui/core";
|
|
@@ -316,22 +316,20 @@ declare function Modal({
|
|
|
316
316
|
}: ModalProps): ReactNode;
|
|
317
317
|
//#endregion
|
|
318
318
|
//#region src/tui/model-picker.d.ts
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
* registry looked up via `piProviderId`.
|
|
324
|
-
*
|
|
325
|
-
* Each row shows: `● selected · name (ctx N · reasoning · vision)`.
|
|
326
|
-
*/
|
|
319
|
+
interface PickedModel {
|
|
320
|
+
providerKey: ProviderKey;
|
|
321
|
+
modelId: string;
|
|
322
|
+
}
|
|
327
323
|
declare function ModelPickerModal({
|
|
328
|
-
|
|
329
|
-
|
|
324
|
+
providers,
|
|
325
|
+
modelsFor,
|
|
326
|
+
current,
|
|
330
327
|
onPick
|
|
331
328
|
}: {
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
329
|
+
/** Authed providers — the catalog is unioned across these. */providers: readonly ProviderAuth[]; /** Resolver from `ResolvedConfig.modelsFor`. */
|
|
330
|
+
modelsFor: (key: ProviderKey) => readonly ModelInfo[]; /** Currently active selection. Promoted to top of its provider section + pre-highlighted. */
|
|
331
|
+
current: PickedModel; /** Called on commit with the chosen `{ providerKey, modelId }`. */
|
|
332
|
+
onPick: (picked: PickedModel) => void;
|
|
335
333
|
}): _$react.ReactNode;
|
|
336
334
|
//#endregion
|
|
337
335
|
//#region src/tui/screens.d.ts
|
|
@@ -567,5 +565,5 @@ declare function ToggleListModal<T>({
|
|
|
567
565
|
*/
|
|
568
566
|
declare function runTui(options?: Partial<ChatOptions>): Promise<never>;
|
|
569
567
|
//#endregion
|
|
570
|
-
export { AgentPickerModal, App, AuthScreen, ChatScreen, CompletionPopup, type ContextUsage, Footer, type Hint, McpsSettingsModal, Modal, type ModalProps, ModalRoot, ModelPickerModal, type PromptSegment, type PromptSegmentRef, SessionsScreen, type SettingsActions, SettingsModal, SkillsSettingsModal, Spinner, ToggleListModal, Transcript, accentColor, buildMdStyle, hintsLength, isVisible, marginTopFor, onInputSubmit, renderHintSpans, runTui, splitPromptSegments, useMdStyle, useModal, useModalAwareFocus };
|
|
568
|
+
export { AgentPickerModal, App, AuthScreen, ChatScreen, CompletionPopup, type ContextUsage, Footer, type Hint, McpsSettingsModal, Modal, type ModalProps, ModalRoot, ModelPickerModal, type PickedModel, type PromptSegment, type PromptSegmentRef, SessionsScreen, type SettingsActions, SettingsModal, SkillsSettingsModal, Spinner, ToggleListModal, Transcript, accentColor, buildMdStyle, hintsLength, isVisible, marginTopFor, onInputSubmit, renderHintSpans, runTui, splitPromptSegments, useMdStyle, useModal, useModalAwareFocus };
|
|
571
569
|
//# sourceMappingURL=tui.d.ts.map
|
package/dist/tui.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tui.d.ts","names":[],"sources":["../src/tui/agent-picker.tsx","../src/tui/app.tsx","../src/tui/completion-popup.tsx","../src/tui/components.tsx","../src/tui/mcps-settings.tsx","../src/tui/modal.tsx","../src/tui/model-picker.tsx","../src/tui/screens.tsx","../src/tui/settings-modal.tsx","../src/tui/skills-settings.tsx","../src/tui/theme.ts","../src/tui/toggle-list-modal.tsx","../src/tui/index.tsx"],"mappings":";;;;;;;;;;;;;AAoBA;;;;;iBAAgB,gBAAA,CAAA;EACd,MAAA;EACA,cAAA;EACA;AAAA;EAEA,MAAA,EAAQ,aAAA;EACR,cAAA;EACA,MAAA,GAAS,EAAA;AAAA,IAFY,OAAA,CAGtB,SAAA;;;;;;iBAkFe,WAAA,CACd,MAAA,EAAQ,WAAA,cACR,KAAA;EAAS,KAAA;EAAe,MAAA;EAAgB,IAAA;EAAc,KAAA;AAAA;;;;;;;;;;AA5FxD;
|
|
1
|
+
{"version":3,"file":"tui.d.ts","names":[],"sources":["../src/tui/agent-picker.tsx","../src/tui/app.tsx","../src/tui/completion-popup.tsx","../src/tui/components.tsx","../src/tui/mcps-settings.tsx","../src/tui/modal.tsx","../src/tui/model-picker.tsx","../src/tui/screens.tsx","../src/tui/settings-modal.tsx","../src/tui/skills-settings.tsx","../src/tui/theme.ts","../src/tui/toggle-list-modal.tsx","../src/tui/index.tsx"],"mappings":"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"}
|