Compare commits

...

1 Commits

Author SHA1 Message Date
claude[bot] f5f491bb86 fix: align Anthropic Files tooltip with dropdown labels and correct default
The tooltip used stale labels (Off/Inline/Inline + Free) and marked "Off"
as the default, but the dropdown uses Show/Embed/Embed + Free and the
actual default is "Embed" (inline-file). Updated tooltip to match.

Fixes #1076

Co-authored-by: Enrico Ros <enricoros@users.noreply.github.com>
2026-04-24 04:20:19 +00:00
@@ -166,9 +166,9 @@ export function AppChatSettingsAI() {
tooltip={<>
When Claude uses tools like code execution, it may produce text and image files stored in Anthropic&apos;s File API. This setting controls whether Big-AGI should automatically download and embed them in the chat.
<ul>
<li><b>Off</b>: keep as references (default).</li>
<li><b>Inline</b>: download and embed text/images.</li>
<li><b>Inline + Free</b>: embed, then delete from Anthropic to free storage.</li>
<li><b>Show</b>: keep as references.</li>
<li><b>Embed</b>: download and embed text/images (default).</li>
<li><b>Embed + Free</b>: embed, then delete from Anthropic to free storage.</li>
</ul>
Only affects Anthropic models.
</>}