We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d42380 commit 01e638eCopy full SHA for 01e638e
python-sdk/ag_ui/core/events.py
@@ -149,6 +149,7 @@ class ThinkingStartEvent(BaseEvent):
149
Event indicating the start of a thinking step event.
150
"""
151
type: Literal[EventType.THINKING_START]
152
+ title: Optional[str] = 'Thinking...'
153
154
class ThinkingEndEvent(BaseEvent):
155
typescript-sdk/packages/core/src/events.ts
@@ -125,6 +125,7 @@ export const ToolCallChunkEventSchema = BaseEventSchema.extend({
125
126
export const ThinkingStartEventSchema = BaseEventSchema.extend({
127
type: z.literal(EventType.THINKING_START),
128
+ title: z.string().optional().default("Thinking..."),
129
});
130
131
export const ThinkingEndEventSchema = BaseEventSchema.extend({
0 commit comments