Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/app/components/session/message-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export default function MessageList(props: MessageListProps) {
{(part) => (
<div>
<StepRow part={part} isUser={listProps.isUser} />
<Show when={props.developerMode && (part.type !== "tool" || props.showThinking)}>
<Show when={props.developerMode && part.type !== "reasoning" && (part.type !== "tool" || props.showThinking)}>
<div class="pl-6 pb-2 text-xs text-gray-10">
<PartView
part={part}
Expand Down
3 changes: 1 addition & 2 deletions packages/app/src/app/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -829,8 +829,7 @@ export function summarizeStep(part: Part): { title: string; detail?: string; isS
const record = part as any;
const text = typeof record.text === "string" ? record.text.trim() : "";
if (!text) return { title: "Planning", toolCategory: "tool" };
const short = text.length > 80 ? `${text.slice(0, 77)}...` : text;
return { title: "Thinking", detail: short, toolCategory: "tool" };
return { title: "Thinking", toolCategory: "tool" };
}

if (part.type === "step-start" || part.type === "step-finish") {
Expand Down
Loading