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
24 changes: 0 additions & 24 deletions apps/report/src/components/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -609,18 +609,6 @@ const Sidebar = (props: SidebarProps = {}): JSX.Element => {
</Tag>
</div>
</div>
<div
className="summary-cell column-time"
style={{ width: dynamicWidths.time }}
/>
<div
className="summary-cell column-intent"
style={{ width: dynamicWidths.intent }}
/>
<div
className="summary-cell column-model"
style={{ width: dynamicWidths.model }}
/>
<div
className="summary-cell column-prompt"
style={{ width: dynamicWidths.prompt }}
Expand Down Expand Up @@ -658,18 +646,6 @@ const Sidebar = (props: SidebarProps = {}): JSX.Element => {
>
<div className="token-total-label">Total</div>
</div>
<div
className="summary-cell column-time"
style={{ width: dynamicWidths.time }}
/>
<div
className="summary-cell column-intent"
style={{ width: dynamicWidths.intent }}
/>
<div
className="summary-cell column-model"
style={{ width: dynamicWidths.model }}
/>
<div
className="summary-cell column-prompt"
style={{ width: dynamicWidths.prompt }}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/device/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export const actionScrollParamSchema = z.object({
locate: getMidsceneLocationSchema()
.optional()
.describe(
'The target element to be scrolled on, like "the table" or "the list" or "the content area" or "the scrollable area"',
'Describe the target element to be scrolled on, like "the table" or "the list" or "the content area" or "the scrollable area". Do NOT provide a general intent like "scroll to find some element"',
),
});

Expand Down