wip: desktop work
This commit is contained in:
parent
7a32fec008
commit
34f11c699e
2 changed files with 29 additions and 11 deletions
|
|
@ -37,7 +37,7 @@ export function MessageProgress(props: { assistantMessages: () => AssistantMessa
|
|||
// resolvedParts().findLast((p) => p?.type === "reasoning")?.text,
|
||||
// )
|
||||
const eligibleItems = createMemo(() => {
|
||||
return resolvedParts().filter((p) => p?.type === "tool" && p.state.status === "completed") as ToolPart[]
|
||||
return resolvedParts().filter((p) => p?.type === "tool" && p?.state.status === "completed") as ToolPart[]
|
||||
})
|
||||
const finishedItems = createMemo<(JSXElement | ToolPart)[]>(() => [
|
||||
<div class="h-8 w-full" />,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue