Skip to content
Open
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 apps/www/content/3.components/1.chatbot/tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A collapsible component for displaying tool invocation details in A
icon: lucide:tool-case
---

The `Tool` component isplays a collapsible interface for showing/hiding tool details. It is designed to take the `ToolUIPart` type from the AI SDK and display it in a collapsible interface.
The `Tool` component displays a collapsible interface for showing/hiding tool details. It is designed to take the `ToolUIPart` type from the AI SDK and display it in a collapsible interface.

:::ComponentLoader{label="Preview" componentName="Tool"}
:::
Expand Down
2 changes: 1 addition & 1 deletion packages/elements/src/model-selector/ModelSelectorLogo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const props = defineProps<Props>()
<img
v-bind="$attrs"
:alt="`${props.provider} logo`"
:class="cn('size-3', props.class)"
:class="cn('size-3 dark:invert', props.class)"
height="12"
:src="`https://models.dev/logos/${props.provider}.svg`"
width="12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const props = defineProps<Props>()
<div
:class="
cn(
'-space-x-1 flex shrink-0 items-center [&>img]:rounded-full [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 [&>img]:ring-border',
'-space-x-1 flex shrink-0 items-center [&>img]:rounded-full [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 dark:[&>img]:bg-foreground',
props.class,
)
"
Expand Down