@optilogic/chat 1.0.0-beta.10 → 1.0.0-beta.11

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/src/index.ts CHANGED
@@ -50,6 +50,18 @@ export {
50
50
  // Utilities
51
51
  formatTime,
52
52
  formatTotalTime,
53
+
54
+ // Agent Timeline (replaces ThinkingSection for rich execution visibility)
55
+ AgentTimeline,
56
+ createTimelineUIState,
57
+ buildTimelineEntries,
58
+ groupIntoAgentRuns,
59
+ deduplicateEntries,
60
+ type TimelineUIState,
61
+ type TimelineEntry,
62
+ type TimelineEntryType,
63
+ type AgentRun,
64
+ type DisplayEntry,
53
65
  } from "./components/agent-response";
54
66
 
55
67
  // User Prompt - Component for displaying user messages
@@ -70,5 +82,19 @@ export {
70
82
  type HITLInteractionRecordProps,
71
83
  type HITLQuestion,
72
84
  type HITLInteraction,
85
+ type HITLResponseData,
73
86
  buildResponseString,
74
87
  } from "./components/hitl-interactions";
88
+
89
+ // Inline Actions - Components for rendering interactive actions within markdown
90
+ export {
91
+ ActionMarkdownRenderer,
92
+ parseResponseSegments,
93
+ INLINE_ACTION_PROMPT,
94
+ type ResponseSegment,
95
+ type MarkdownSegment,
96
+ type ActionSegment,
97
+ type InlineActionProps,
98
+ type ActionComponentRegistry,
99
+ type ActionMarkdownRendererProps,
100
+ } from "./components/inline-actions";