@prettier-ai/dsh-client-ui-chat 0.1.2-alpha.5 → 0.1.3-alpha.1
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/lib/client.js +670 -161
- package/lib/types/client/chat/ChatNodeSeat.d.ts +1 -1
- package/lib/types/client/contract/assistant-content.d.ts +1 -1
- package/lib/types/client/contract/slots.d.ts +9 -2
- package/lib/types/client/contract/turn-metrics.d.ts +1 -1
- package/lib/types/client/conversation-nodes/assistant.d.ts +1 -2
- package/lib/types/client/conversation-nodes/chat-snapshot-builder.d.ts +55 -1
- package/lib/types/client/conversation-nodes/command.d.ts +1 -2
- package/lib/types/client/conversation-nodes/compaction.d.ts +1 -2
- package/lib/types/client/conversation-nodes/event-projection.d.ts +6 -0
- package/lib/types/client/conversation-nodes/fallback.d.ts +1 -2
- package/lib/types/client/conversation-nodes/message.d.ts +5 -2
- package/lib/types/client/conversation-nodes/partial.d.ts +2 -2
- package/lib/types/client/conversation-nodes/retry.d.ts +1 -2
- package/lib/types/client/conversation-nodes/tool.d.ts +1 -2
- package/lib/types/client/conversation-nodes/turn-error.d.ts +1 -2
- package/lib/types/client/conversation-nodes/turn-max-tokens.d.ts +1 -2
- package/lib/types/client/model/conversation-context.d.ts +1 -2
- package/lib/types/client/model/tool-call-tree.d.ts +1 -1
- package/package.json +28 -28
|
@@ -11,6 +11,6 @@ interface ChatNodeSeatProps extends ChatNodeOwnerProps {
|
|
|
11
11
|
readonly t: ChatViewSlotProps['t'];
|
|
12
12
|
}
|
|
13
13
|
/** Subscribe, apply Turn-process visibility, and dispatch one stable Context key. */
|
|
14
|
-
export declare const ChatNodeSeat: import("react").MemoExoticComponent<({ nodeKey, useChatNode, useChatNodeProcess, historyIncomplete, compactTranscript, selectedCallId, cwd, openFile, inspectCall, forkAt, renderMessageImages, fileMentions, useStore, actions, renderSlot, t, }: ChatNodeSeatProps) => import("react").JSX.Element | null>;
|
|
14
|
+
export declare const ChatNodeSeat: import("react").MemoExoticComponent<({ nodeKey, useChatNode, useChatNodeProcess, historyIncomplete, compactTranscript, selectedCallId, cwd, openFile, inspectCall, forkAt, loadImage, renderMessageImages, fileMentions, useStore, actions, renderSlot, t, }: ChatNodeSeatProps) => import("react").JSX.Element | null>;
|
|
15
15
|
export {};
|
|
16
16
|
//# sourceMappingURL=ChatNodeSeat.d.ts.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/** Chat-owned Slot declarations and composed component props. */
|
|
2
2
|
import type { MessageId } from '@prettier-ai/dsh-llm/brand';
|
|
3
3
|
import type { SessionSeq } from '@prettier-ai/dsh-session/types';
|
|
4
|
-
import type { ConversationLocationDataStore, ConversationTurnDataMap, MessageImageLoader, MessageImagesOwnerProps, RenderMessageImages, TurnLocation } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
|
+
import type { CommandNode, CompactionSummaryNode, ConversationLocationDataStore, ConversationTurnDataMap, MessageImageLoader, MessageImagesOwnerProps, RenderMessageImages, ToolCallBlock, TurnLocation } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
5
5
|
import type { InjectFace, KeyedSnapshotSelectorHook, PropsLocale, PropsRenderSlots, PropsRuntime, PropsStore, SlotHookFactory, SnapshotSelectorHook } from '@prettier-ai/dsh-client-ui-slots';
|
|
6
6
|
import type { SnapshotStore } from '@prettier-ai/dsh-client-store';
|
|
7
7
|
import type { MarkdownFileMentions } from '@prettier-ai/dsh-client-ui-primitives';
|
|
8
8
|
import type { createChatStore } from '../stores.ts';
|
|
9
9
|
import type { ToolCallId, SelectionTarget } from './store.ts';
|
|
10
10
|
import type { ChatConversationViewNode, ChatNode, ChatNodeKind } from './chat-nodes.ts';
|
|
11
|
-
import type { ChatNodeProcessSource, ChatNodeSource, ChatSnapshot, ChatTurnProcessPresentation
|
|
11
|
+
import type { ChatNodeProcessSource, ChatNodeSource, ChatSnapshot, ChatTurnProcessPresentation } from './snapshot.ts';
|
|
12
12
|
import type { TurnProcessSpec } from './turn-process.ts';
|
|
13
13
|
import type { TranscriptViewMode } from '../../chat-settings.ts';
|
|
14
14
|
/** Selector hook over the current Conversation binding's Chat target. */
|
|
@@ -57,6 +57,13 @@ export interface ChatNodeOwnerProps {
|
|
|
57
57
|
openFile: (path: string) => void;
|
|
58
58
|
inspectCall: (callId: ToolCallId) => void;
|
|
59
59
|
forkAt: (seq: number) => void;
|
|
60
|
+
/**
|
|
61
|
+
* Session-authorized image loader, down-threaded from the Chat view so a
|
|
62
|
+
* chat-node renderer can render the attachment presentation slot directly
|
|
63
|
+
* with only the durable references plus this loader, instead of receiving a
|
|
64
|
+
* rendering closure.
|
|
65
|
+
*/
|
|
66
|
+
loadImage: MessageImageLoader;
|
|
60
67
|
renderMessageImages: RenderMessageImages;
|
|
61
68
|
fileMentions: (owner: TurnTailOwnerProps) => MarkdownFileMentions | undefined;
|
|
62
69
|
/** Turn-process state when this Node belongs to a projected Turn. */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AssistantMessageNode, ConversationNode } from '
|
|
1
|
+
import type { AssistantMessageNode, ConversationNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
2
2
|
/** Latency and decode-throughput readings for one turn's footer. */
|
|
3
3
|
export interface TurnMetrics {
|
|
4
4
|
/** First-step TTFT in ms; absent when that step carries no recorded timing. */
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
2
|
+
import type { AssistantBlock, ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
3
|
import type { AssistantChatData } from '../contract/chat-nodes.ts';
|
|
4
|
-
import type { AssistantBlock } from '../contract/snapshot.ts';
|
|
5
4
|
declare module '../contract/chat-nodes.ts' {
|
|
6
5
|
interface ChatNodeDataMap {
|
|
7
6
|
/** Streaming, settled, or interrupted Assistant step. */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
2
|
import type { ConversationTimelineSnapshot, ConversationViewBuilder, ConversationViewDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
3
|
import type { ChatConversationViewNode } from '../contract/chat-nodes.ts';
|
|
4
|
-
import type { ChatSnapshot } from '../contract/snapshot.ts';
|
|
4
|
+
import type { ChatNodeStore, ChatSnapshot } from '../contract/snapshot.ts';
|
|
5
5
|
/**
|
|
6
6
|
* Order visible Chat Nodes without changing existing relative order as process
|
|
7
7
|
* eligibility changes. Opening human input precedes process candidates, while
|
|
@@ -10,6 +10,59 @@ import type { ChatSnapshot } from '../contract/snapshot.ts';
|
|
|
10
10
|
* @returns visible Nodes in presentation order.
|
|
11
11
|
*/
|
|
12
12
|
export declare function orderedVisibleChatNodes(nodes: readonly ChatConversationViewNode[]): ChatConversationViewNode[];
|
|
13
|
+
/**
|
|
14
|
+
* Attaches each direct message's step-loaded skill names to its Node.
|
|
15
|
+
*
|
|
16
|
+
* A step's `skill-invocation` injections follow the direct messages the host
|
|
17
|
+
* scanned for `/name` gestures and precede the step's first Node of any other
|
|
18
|
+
* kind, so every non-message, non-context Node closes a batch. Every ended
|
|
19
|
+
* Turn publishes its `turn-tail` Node on `turn/end` whatever the reason, so a
|
|
20
|
+
* batch never spans Turns, and `step/start` precedes the direct message in
|
|
21
|
+
* the log, so no boundary separates a message from its injections. Names
|
|
22
|
+
* attach to every direct message of the batch: the bubble decorates only the
|
|
23
|
+
* tokens its own text carries.
|
|
24
|
+
*
|
|
25
|
+
* The index holds only messages, skill injections, and boundaries, ordered by
|
|
26
|
+
* `anchorSeq`. An apply re-reads just the batches around the Nodes whose
|
|
27
|
+
* classification changed and never scans the store, so an assistant
|
|
28
|
+
* streaming frame costs nothing here (the append hot path never scans the
|
|
29
|
+
* Chat Nodes).
|
|
30
|
+
*/
|
|
31
|
+
export declare class SkillNameProjector {
|
|
32
|
+
private readonly entries;
|
|
33
|
+
/** Every indexed entry in `anchorSeq` order. */
|
|
34
|
+
private sorted;
|
|
35
|
+
/**
|
|
36
|
+
* Rebuild the index from a whole Node set and attach names to its messages.
|
|
37
|
+
* @param nodes - every materialized Chat Node, in any order.
|
|
38
|
+
* @returns the same Nodes, direct messages carrying their batch's names.
|
|
39
|
+
*/
|
|
40
|
+
replace(nodes: readonly ChatConversationViewNode[]): readonly ChatConversationViewNode[];
|
|
41
|
+
/**
|
|
42
|
+
* Fold one incremental upsert set: re-read only the batches around the
|
|
43
|
+
* Nodes whose classification changed.
|
|
44
|
+
* @param upserts - the changed Nodes.
|
|
45
|
+
* @param store - the resident Nodes, read by key for the messages of an affected batch.
|
|
46
|
+
* @returns the upserts plus any resident message whose names changed.
|
|
47
|
+
*/
|
|
48
|
+
apply(upserts: readonly ChatConversationViewNode[], store: ChatNodeStore): readonly ChatConversationViewNode[];
|
|
49
|
+
private insert;
|
|
50
|
+
private remove;
|
|
51
|
+
/** First index whose seq is at least `seq`. */
|
|
52
|
+
private lowerBound;
|
|
53
|
+
/** Last index of the boundary-free run containing `index`. */
|
|
54
|
+
private runEnd;
|
|
55
|
+
/** First index of the boundary-free run containing `index`. */
|
|
56
|
+
private runStart;
|
|
57
|
+
/** Record the names every message of the run `[start, end]` carries. */
|
|
58
|
+
private assignRun;
|
|
59
|
+
/**
|
|
60
|
+
* Re-read the run(s) around one changed seq: the run holding a message or
|
|
61
|
+
* skill entry, or — for a boundary, or a seq that left the index — the runs
|
|
62
|
+
* on both sides of that position.
|
|
63
|
+
*/
|
|
64
|
+
private collectAround;
|
|
65
|
+
}
|
|
13
66
|
/** Incremental keyed Chat builder registered under the `chat` target. */
|
|
14
67
|
export declare class ChatSnapshotBuilder implements ConversationViewBuilder<ChatConversationViewNode, ChatSnapshot> {
|
|
15
68
|
private readonly store;
|
|
@@ -17,6 +70,7 @@ export declare class ChatSnapshotBuilder implements ConversationViewBuilder<Chat
|
|
|
17
70
|
private readonly navigation;
|
|
18
71
|
private readonly legacy;
|
|
19
72
|
private readonly referenceLabels;
|
|
73
|
+
private readonly skillNames;
|
|
20
74
|
private order;
|
|
21
75
|
/** Last published timeline: a Turn boundary can land without a new node. */
|
|
22
76
|
private timeline;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { CommandNode, CompactionSummaryNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { CommandNode, CompactionSummaryNode, ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Ordinary slash-command lifecycle. */
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { CompactionSummaryNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { CompactionSummaryNode, ConversationMatch, ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Automatic compaction checkpoint marker. */
|
|
@@ -19,6 +19,12 @@ export declare function contextProvenance(source: unknown): ContextProvenanceVie
|
|
|
19
19
|
* @returns Labels in first-seen order.
|
|
20
20
|
*/
|
|
21
21
|
export declare function sessionRecallLabels(source: unknown): string[];
|
|
22
|
+
/**
|
|
23
|
+
* Read the skill name a durable skill-invocation injection loaded.
|
|
24
|
+
* @param source - Logged `user/message` source.
|
|
25
|
+
* @returns The skill name, or null for every other source.
|
|
26
|
+
*/
|
|
27
|
+
export declare function skillInvocationName(source: unknown): string | null;
|
|
22
28
|
/**
|
|
23
29
|
* Classify finalized Assistant content for Chat rendering.
|
|
24
30
|
* @param content - Core content blocks.
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { UnknownSurfaceNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ConversationNodeDefinition, UnknownSurfaceNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Generic presentation of an unclaimed append-surface event. */
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { ContextMessageNode, SteeringMessageNode, UserMessageNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ContextMessageNode, ConversationNodeDefinition, SteeringMessageNode, UserMessageNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
interface ReferencedUserMessageNode extends UserMessageNode {
|
|
5
4
|
/** Labels cited by the immediately following session-reference context. */
|
|
6
5
|
readonly referenceLabels?: readonly string[];
|
|
6
|
+
/** Skill names the same step's `skill-invocation` injections loaded. */
|
|
7
|
+
readonly skillNames?: readonly string[];
|
|
7
8
|
}
|
|
8
9
|
interface ReferencedSteeringMessageNode extends SteeringMessageNode {
|
|
9
10
|
/** Labels cited by the immediately following session-reference context. */
|
|
10
11
|
readonly referenceLabels?: readonly string[];
|
|
12
|
+
/** Skill names the same step's `skill-invocation` injections loaded. */
|
|
13
|
+
readonly skillNames?: readonly string[];
|
|
11
14
|
}
|
|
12
15
|
type MessageNode = ReferencedUserMessageNode | ReferencedSteeringMessageNode | ContextMessageNode;
|
|
13
16
|
declare module '../contract/chat-nodes.ts' {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { StreamChunk } from '@prettier-ai/dsh-llm/types';
|
|
2
|
-
import type { AssistantBlock, PartialAssistant } from '
|
|
2
|
+
import type { AssistantBlock, PartialAssistant } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
3
|
/**
|
|
4
4
|
* Whether a stream chunk changes the partial assistant projection shown by the UI.
|
|
5
5
|
* @param type - Stream chunk discriminant.
|
|
6
6
|
* @returns Whether publishing the accumulated partial can change the visible snapshot.
|
|
7
7
|
*/
|
|
8
8
|
export declare function isVisibleAssistantChunk(type: string): boolean;
|
|
9
|
-
/**
|
|
9
|
+
/** Live Assistant-frame accumulator: folds StreamChunks into AssistantBlock[] with block-level immutability. */
|
|
10
10
|
export declare class PartialAccumulator {
|
|
11
11
|
readonly turn: number;
|
|
12
12
|
readonly step: number;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { ModelRetryNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ConversationNodeDefinition, ModelRetryNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Producer-correlated model retry chain. */
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { ToolCallBlock } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ConversationNodeDefinition, ToolCallBlock } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Root Tool lifecycle with recursively nested subcalls. */
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { TurnErrorNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ConversationNodeDefinition, TurnErrorNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Terminal turn failure recorded on the turn's end reason. */
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Context } from '@prettier-ai/cordis';
|
|
2
|
-
import type { ConversationNodeDefinition } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
|
-
import type { TurnMaxTokensNode } from '../contract/snapshot.ts';
|
|
2
|
+
import type { ConversationNodeDefinition, TurnMaxTokensNode } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
4
3
|
declare module '../contract/chat-nodes.ts' {
|
|
5
4
|
interface ChatNodeDataMap {
|
|
6
5
|
/** Turn ended by the per-request output-token cap. */
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { ConversationNode } from '
|
|
2
|
-
import type { ConversationPromptSnapshot } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
1
|
+
import type { ConversationNode, ConversationPromptSnapshot } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
2
|
/** Operation that started a new append-only model context. */
|
|
4
3
|
export type ConversationContextOriginKind = 'compaction' | 'rewind' | 'rewrite';
|
|
5
4
|
/** One immutable model-context generation reconstructed from surface replacements. */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SessionEvent } from '@prettier-ai/dsh-session/types';
|
|
2
|
-
import type { ConversationNode, RunningToolCall } from '
|
|
2
|
+
import type { ConversationNode, RunningToolCall } from '@prettier-ai/dsh-client-ui-conversation/client';
|
|
3
3
|
/** Fixed wire-safety ceiling for every recursive Tool call consumer. */
|
|
4
4
|
export declare const MAX_TOOL_CALL_TREE_DEPTH = 256;
|
|
5
5
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prettier-ai/dsh-client-ui-chat",
|
|
3
3
|
"description": "Chat Conversation target, node definitions, renderers, and details surface",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3-alpha.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -50,34 +50,34 @@
|
|
|
50
50
|
"@types/react-dom": "~18.3.0",
|
|
51
51
|
"react": "^18.2.0",
|
|
52
52
|
"react-dom": "^18.2.0",
|
|
53
|
-
"@prettier-ai/dsh-
|
|
53
|
+
"@prettier-ai/dsh-api-remotes": "^0.1.3-alpha.1",
|
|
54
54
|
"@prettier-ai/cordis": "^4.0.2",
|
|
55
|
-
"@prettier-ai/dsh-api-
|
|
56
|
-
"@prettier-ai/dsh-api-
|
|
57
|
-
"@prettier-ai/dsh-
|
|
58
|
-
"@prettier-ai/dsh-attachment": "^0.1.
|
|
59
|
-
"@prettier-ai/dsh-client-store": "^0.1.
|
|
60
|
-
"@prettier-ai/dsh-client-locale": "^0.1.
|
|
61
|
-
"@prettier-ai/dsh-client-ui-
|
|
62
|
-
"@prettier-ai/dsh-client-ui-
|
|
63
|
-
"@prettier-ai/dsh-client-ui-
|
|
64
|
-
"@prettier-ai/dsh-client-ui-
|
|
65
|
-
"@prettier-ai/dsh-client-ui-
|
|
66
|
-
"@prettier-ai/dsh-client-ui-session": "^0.1.
|
|
67
|
-
"@prettier-ai/dsh-client-ui-
|
|
68
|
-
"@prettier-ai/dsh-client-ui-
|
|
69
|
-
"@prettier-ai/dsh-
|
|
70
|
-
"@prettier-ai/dsh-
|
|
71
|
-
"@prettier-ai/dsh-
|
|
72
|
-
"@prettier-ai/dsh-
|
|
73
|
-
"@prettier-ai/dsh-
|
|
74
|
-
"@prettier-ai/dsh-session-turn-outline": "^0.1.
|
|
75
|
-
"@prettier-ai/dsh-
|
|
76
|
-
"@prettier-ai/dsh-session-stats": "^0.1.
|
|
77
|
-
"@prettier-ai/dsh-
|
|
78
|
-
"@prettier-ai/dsh-util-workspace-path": "^0.1.
|
|
79
|
-
"@prettier-ai/dsh-
|
|
80
|
-
"@prettier-ai/dsh-
|
|
55
|
+
"@prettier-ai/dsh-api-workspace-controller": "^0.1.3-alpha.1",
|
|
56
|
+
"@prettier-ai/dsh-api-session-controller": "^0.1.3-alpha.1",
|
|
57
|
+
"@prettier-ai/dsh-agent": "^0.1.3-alpha.1",
|
|
58
|
+
"@prettier-ai/dsh-attachment": "^0.1.3-alpha.1",
|
|
59
|
+
"@prettier-ai/dsh-client-store": "^0.1.3-alpha.1",
|
|
60
|
+
"@prettier-ai/dsh-client-locale": "^0.1.3-alpha.1",
|
|
61
|
+
"@prettier-ai/dsh-client-ui-conversation": "^0.1.3-alpha.1",
|
|
62
|
+
"@prettier-ai/dsh-client-ui-approval": "^0.1.3-alpha.1",
|
|
63
|
+
"@prettier-ai/dsh-client-ui-layout": "^0.1.3-alpha.1",
|
|
64
|
+
"@prettier-ai/dsh-client-ui-primitives": "^0.1.3-alpha.1",
|
|
65
|
+
"@prettier-ai/dsh-client-ui-renderer": "^0.1.3-alpha.1",
|
|
66
|
+
"@prettier-ai/dsh-client-ui-session": "^0.1.3-alpha.1",
|
|
67
|
+
"@prettier-ai/dsh-client-ui-settings": "^0.1.3-alpha.1",
|
|
68
|
+
"@prettier-ai/dsh-client-ui-slots": "^0.1.3-alpha.1",
|
|
69
|
+
"@prettier-ai/dsh-client-ui-workspace": "^0.1.3-alpha.1",
|
|
70
|
+
"@prettier-ai/dsh-compaction": "^0.1.3-alpha.1",
|
|
71
|
+
"@prettier-ai/dsh-llm": "^0.1.3-alpha.1",
|
|
72
|
+
"@prettier-ai/dsh-llm-retry": "^0.1.3-alpha.1",
|
|
73
|
+
"@prettier-ai/dsh-session": "^0.1.3-alpha.1",
|
|
74
|
+
"@prettier-ai/dsh-session-turn-outline": "^0.1.3-alpha.1",
|
|
75
|
+
"@prettier-ai/dsh-commands": "^0.1.3-alpha.1",
|
|
76
|
+
"@prettier-ai/dsh-session-stats": "^0.1.3-alpha.1",
|
|
77
|
+
"@prettier-ai/dsh-token-meter": "^0.1.3-alpha.1",
|
|
78
|
+
"@prettier-ai/dsh-util-workspace-path": "^0.1.3-alpha.1",
|
|
79
|
+
"@prettier-ai/dsh-settings": "^0.1.3-alpha.1",
|
|
80
|
+
"@prettier-ai/dsh-tools": "^0.1.3-alpha.1"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@prettier-ai/schemastery": "^3.18.2"
|