mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
feat(site): display file attachments in chat UI (#24281)
Renders the durable file attachments introduced in #24280 in the chat interface. Without this, attachments were stored and served correctly but the UI showed raw file parts with no previews or download UX. Every attachment gets a download affordance, split into three rendering tiers: - **Images** — thumbnail with a hover/focus overlay containing a download link. `onFocusCapture`/`onBlurCapture` with `contains(relatedTarget)` keeps the overlay open while tabbing between the image and its download link. - **Text-like files** (`text/*`, `application/json`) — expandable preview button with loading + error-with-retry states and the same download overlay. Preview fetches throw a typed `FetchTextAttachmentError` with a `.status` field instead of a stringly-typed error. - **Everything else** — compact `FileCard` with extension badge, filename, and download link. User-side and assistant-side rendering now share `AttachmentBlocks.tsx` (`AttachmentPreviewFrame`, `TextAttachmentButton`, `ImageAttachmentButton`, `FileCard`, plus `getAttachmentHref`/`getAttachmentName`) instead of two near-duplicate implementations. The text-attachment overlay anchors to the preview surface so the download button stays pinned even when a loading/error status line widens the row below. `ComputerRenderer` detects when a screenshot was stored as a durable attachment (`attachment_file_id`) and suppresses the stale base64 rendering — the screenshot appears as a proper file part instead. `ToolLabel` shows the attached filename for `attach_file` tool calls. Storybook coverage in `ConversationTimeline.stories.tsx` was expanded to cover every tier (single/multiple images, inline + file-id text, JSON, download-only files, fetch-failure retry, mixed attachments + file references) with play-function assertions. <img width="811" height="150" alt="image" src="https://github.com/user-attachments/assets/27c71081-3502-4e80-92a7-d8adf1ff9323" /> ## Cleanup Per Mathias' post-merge suggestion on #24280, this PR also relocates `coderd/chatfiles` → `coderd/x/chatfiles` so the durable-attachment helpers live beside the rest of the `chatd` experimental surface. Closes CODAGT-91
This commit is contained in:
+1
-1
@@ -28,7 +28,6 @@ import (
|
||||
"cdr.dev/slog/v3"
|
||||
"github.com/coder/coder/v2/agent/agentssh"
|
||||
"github.com/coder/coder/v2/coderd/audit"
|
||||
"github.com/coder/coder/v2/coderd/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/database"
|
||||
"github.com/coder/coder/v2/coderd/database/db2sdk"
|
||||
"github.com/coder/coder/v2/coderd/database/dbauthz"
|
||||
@@ -50,6 +49,7 @@ import (
|
||||
"github.com/coder/coder/v2/coderd/wsbuilder"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chatprovider"
|
||||
"github.com/coder/coder/v2/coderd/x/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/x/gitsync"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
"github.com/coder/coder/v2/codersdk/wsjson"
|
||||
|
||||
@@ -23,7 +23,7 @@ func buildAssistantPartsForPersist(
|
||||
) []codersdk.ChatMessagePart {
|
||||
parts := make([]codersdk.ChatMessagePart, 0, len(assistantBlocks)+len(toolResults))
|
||||
for _, block := range assistantBlocks {
|
||||
part := chatprompt.PartFromContent(block)
|
||||
part := chatprompt.PartFromContentWithLogger(ctx, logger, block)
|
||||
if part.ToolName != "" {
|
||||
if configID, ok := toolNameToConfigID[part.ToolName]; ok {
|
||||
part.MCPServerConfigID = uuid.NullUUID{UUID: configID, Valid: true}
|
||||
|
||||
@@ -6015,7 +6015,7 @@ func (p *Server) runChat(
|
||||
// FOR UPDATE lock is held only for the INSERT statements.
|
||||
// Marshaling is pure CPU work with no database dependency.
|
||||
assistantParts := buildAssistantPartsForPersist(
|
||||
ctx,
|
||||
persistCtx,
|
||||
p.logger,
|
||||
assistantBlocks,
|
||||
toolResults,
|
||||
@@ -6035,7 +6035,7 @@ func (p *Server) runChat(
|
||||
|
||||
toolResultContents := make([]pqtype.NullRawMessage, len(toolResults))
|
||||
for i, tr := range toolResults {
|
||||
trPart := chatprompt.PartFromContent(tr)
|
||||
trPart := chatprompt.PartFromContentWithLogger(ctx, logger, tr)
|
||||
if trPart.ToolName != "" {
|
||||
if configID, ok := toolNameToConfigID[trPart.ToolName]; ok {
|
||||
trPart.MCPServerConfigID = uuid.NullUUID{UUID: configID, Valid: true}
|
||||
@@ -6496,6 +6496,7 @@ func (p *Server) runChat(
|
||||
}
|
||||
p.publishMessagePart(chat.ID, role, part)
|
||||
},
|
||||
Logger: logger,
|
||||
Compaction: compactionOptions,
|
||||
ReloadMessages: func(reloadCtx context.Context) ([]fantasy.Message, error) {
|
||||
reloadedMsgs, err := p.db.GetChatMessagesForPromptByChatID(reloadCtx, chat.ID)
|
||||
|
||||
@@ -19,11 +19,13 @@ import (
|
||||
"charm.land/fantasy/schema"
|
||||
"golang.org/x/xerrors"
|
||||
|
||||
"cdr.dev/slog/v3"
|
||||
"github.com/coder/coder/v2/coderd/database/dbtime"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chatdebug"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chaterror"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chatprompt"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chatretry"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
"github.com/coder/quartz"
|
||||
)
|
||||
@@ -146,6 +148,7 @@ type RunOptions struct {
|
||||
role codersdk.ChatMessageRole,
|
||||
part codersdk.ChatMessagePart,
|
||||
)
|
||||
Logger slog.Logger
|
||||
Compaction *CompactionOptions
|
||||
ReloadMessages func(context.Context) ([]fantasy.Message, error)
|
||||
DisableChainMode func()
|
||||
@@ -492,7 +495,8 @@ func Run(ctx context.Context, opts RunOptions) error {
|
||||
// Execute only built-in tools.
|
||||
toolResults = executeTools(ctx, opts.Tools, opts.ActiveTools, opts.ProviderTools, builtinCalls, opts.Metrics, provider, modelName, opts.BuiltinToolNames, func(tr fantasy.ToolResultContent, completedAt time.Time) {
|
||||
recordToolResultTimestamp(&result, tr.ToolCallID, completedAt)
|
||||
ssePart := chatprompt.PartFromContent(tr)
|
||||
publishToolAttachments(ctx, opts.Logger, tr, completedAt, publishMessagePart)
|
||||
ssePart := chatprompt.PartFromContentWithLogger(ctx, opts.Logger, tr)
|
||||
ssePart.CreatedAt = &completedAt
|
||||
publishMessagePart(codersdk.ChatMessageRoleTool, ssePart)
|
||||
})
|
||||
@@ -1545,6 +1549,33 @@ func recordToolResultTimestamp(result *stepResult, toolCallID string, ts time.Ti
|
||||
result.toolResultCreatedAt[toolCallID] = ts
|
||||
}
|
||||
|
||||
func publishToolAttachments(
|
||||
ctx context.Context,
|
||||
logger slog.Logger,
|
||||
tr fantasy.ToolResultContent,
|
||||
createdAt time.Time,
|
||||
publishMessagePart func(codersdk.ChatMessageRole, codersdk.ChatMessagePart),
|
||||
) {
|
||||
attachments, err := chattool.AttachmentsFromMetadata(tr.ClientMetadata)
|
||||
if err != nil {
|
||||
logger.Warn(ctx, "skipping malformed tool attachment metadata",
|
||||
slog.F("tool_name", tr.ToolName),
|
||||
slog.F("tool_call_id", tr.ToolCallID),
|
||||
slog.Error(err),
|
||||
)
|
||||
return
|
||||
}
|
||||
for _, attachment := range attachments {
|
||||
filePart := codersdk.ChatMessageFile(
|
||||
attachment.FileID,
|
||||
attachment.MediaType,
|
||||
attachment.Name,
|
||||
)
|
||||
filePart.CreatedAt = &createdAt
|
||||
publishMessagePart(codersdk.ChatMessageRoleAssistant, filePart)
|
||||
}
|
||||
}
|
||||
|
||||
func extractContextLimit(metadata fantasy.ProviderMetadata) sql.NullInt64 {
|
||||
if len(metadata) == 0 {
|
||||
return sql.NullInt64{}
|
||||
|
||||
@@ -16,6 +16,7 @@ import (
|
||||
|
||||
"cdr.dev/slog/v3"
|
||||
"github.com/coder/coder/v2/coderd/database"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
)
|
||||
|
||||
@@ -702,6 +703,29 @@ func MarshalToolResult(toolCallID, toolName string, result json.RawMessage, isEr
|
||||
// PartFromContent converts fantasy content into a SDK chat message
|
||||
// part, preserving ProviderMetadata and ProviderExecuted fields.
|
||||
func PartFromContent(block fantasy.Content) codersdk.ChatMessagePart {
|
||||
return sdkPartFromContent(block, nil)
|
||||
}
|
||||
|
||||
// PartFromContentWithLogger is for call sites that can surface malformed
|
||||
// attachment metadata immediately instead of dropping it silently.
|
||||
func PartFromContentWithLogger(
|
||||
ctx context.Context,
|
||||
logger slog.Logger,
|
||||
block fantasy.Content,
|
||||
) codersdk.ChatMessagePart {
|
||||
return sdkPartFromContent(block, func(content fantasy.ToolResultContent, err error) {
|
||||
logger.Warn(ctx, "skipping malformed tool attachment metadata",
|
||||
slog.F("tool_name", content.ToolName),
|
||||
slog.F("tool_call_id", content.ToolCallID),
|
||||
slog.Error(err),
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
func sdkPartFromContent(
|
||||
block fantasy.Content,
|
||||
logMalformedAttachmentMetadata func(fantasy.ToolResultContent, error),
|
||||
) codersdk.ChatMessagePart {
|
||||
switch value := block.(type) {
|
||||
case fantasy.TextContent:
|
||||
return codersdk.ChatMessagePart{
|
||||
@@ -776,9 +800,9 @@ func PartFromContent(block fantasy.Content) codersdk.ChatMessagePart {
|
||||
ProviderMetadata: marshalProviderMetadata(value.ProviderMetadata),
|
||||
}
|
||||
case fantasy.ToolResultContent:
|
||||
return toolResultContentToPart(value)
|
||||
return toolResultContentToPart(value, logMalformedAttachmentMetadata)
|
||||
case *fantasy.ToolResultContent:
|
||||
return toolResultContentToPart(*value)
|
||||
return toolResultContentToPart(*value, logMalformedAttachmentMetadata)
|
||||
default:
|
||||
return codersdk.ChatMessagePart{}
|
||||
}
|
||||
@@ -794,7 +818,10 @@ func ToolResultToPart(toolCallID, toolName string, result json.RawMessage, isErr
|
||||
|
||||
// toolResultContentToPart converts a fantasy ToolResultContent into a
|
||||
// ChatMessagePart.
|
||||
func toolResultContentToPart(content fantasy.ToolResultContent) codersdk.ChatMessagePart {
|
||||
func toolResultContentToPart(
|
||||
content fantasy.ToolResultContent,
|
||||
logMalformedAttachmentMetadata func(fantasy.ToolResultContent, error),
|
||||
) codersdk.ChatMessagePart {
|
||||
var result json.RawMessage
|
||||
var isError bool
|
||||
var isMedia bool
|
||||
@@ -820,11 +847,24 @@ func toolResultContentToPart(content fantasy.ToolResultContent) codersdk.ChatMes
|
||||
}
|
||||
case fantasy.ToolResultOutputContentMedia:
|
||||
isMedia = true
|
||||
result, _ = json.Marshal(persistedMediaResult{
|
||||
persisted := persistedMediaResult{
|
||||
Data: output.Data,
|
||||
MimeType: output.MediaType,
|
||||
Text: output.Text,
|
||||
})
|
||||
}
|
||||
// Tool renderers only receive the persisted result JSON, while
|
||||
// ClientMetadata is consumed later to append sibling file parts.
|
||||
// Mirror attachment identity here so promoted media can be
|
||||
// recognized as the same durable attachment downstream.
|
||||
if attachment, ok := matchingAttachmentForMedia(
|
||||
content,
|
||||
output.MediaType,
|
||||
logMalformedAttachmentMetadata,
|
||||
); ok {
|
||||
persisted.AttachmentFileID = attachment.FileID.String()
|
||||
persisted.AttachmentName = attachment.Name
|
||||
}
|
||||
result, _ = json.Marshal(persisted)
|
||||
default:
|
||||
result = []byte(`{}`)
|
||||
}
|
||||
@@ -835,6 +875,26 @@ func toolResultContentToPart(content fantasy.ToolResultContent) codersdk.ChatMes
|
||||
return part
|
||||
}
|
||||
|
||||
func matchingAttachmentForMedia(
|
||||
content fantasy.ToolResultContent,
|
||||
mediaType string,
|
||||
logMalformedAttachmentMetadata func(fantasy.ToolResultContent, error),
|
||||
) (chattool.AttachmentMetadata, bool) {
|
||||
attachments, err := chattool.AttachmentsFromMetadata(content.ClientMetadata)
|
||||
if err != nil {
|
||||
if logMalformedAttachmentMetadata != nil {
|
||||
logMalformedAttachmentMetadata(content, err)
|
||||
}
|
||||
return chattool.AttachmentMetadata{}, false
|
||||
}
|
||||
for _, attachment := range attachments {
|
||||
if attachment.MediaType == mediaType {
|
||||
return attachment, true
|
||||
}
|
||||
}
|
||||
return chattool.AttachmentMetadata{}, false
|
||||
}
|
||||
|
||||
// Keep in sync with coderd/x/chatd/subagent.go.
|
||||
func isSubagentLifecycleToolName(name string) bool {
|
||||
switch name {
|
||||
@@ -1267,10 +1327,11 @@ func toolResultPartToMessagePart(logger slog.Logger, part codersdk.ChatMessagePa
|
||||
// IsError takes precedence and is handled above.
|
||||
// Detect media content flagged by toolResultContentToPart.
|
||||
// Screenshots from the computer use tool are stored as
|
||||
// {"data":"<base64>","mime_type":"image/png","text":"..."}.
|
||||
// Without this detection, the entire base64 payload is sent
|
||||
// as text tokens, which quickly exceeds the context limit
|
||||
// on follow-up messages.
|
||||
// {"data":"<base64>","mime_type":"image/png","text":"..."}
|
||||
// with optional attachment identity fields when the same image
|
||||
// was also promoted into a durable file part. Without this
|
||||
// detection, the entire base64 payload is sent as text tokens,
|
||||
// which quickly exceeds the context limit on follow-up messages.
|
||||
if part.IsMedia {
|
||||
var media persistedMediaResult
|
||||
unmarshalErr := json.Unmarshal(part.Result, &media)
|
||||
@@ -1319,12 +1380,17 @@ func toolResultPartToMessagePart(logger slog.Logger, part codersdk.ChatMessagePa
|
||||
// cannot drift.
|
||||
//
|
||||
// The "mime_type" key intentionally diverges from the fantasy
|
||||
// struct tag (json:"media_type"). Do not change it without
|
||||
// updating both paths.
|
||||
// struct tag (json:"media_type"). Optional attachment identity
|
||||
// fields are UI hints only. They let the frontend recognize when the
|
||||
// same media was also promoted into a durable file part, but the prompt
|
||||
// reconstruction path must continue to ignore them. Keep additions
|
||||
// backwards-compatible because existing rows may omit these fields.
|
||||
type persistedMediaResult struct {
|
||||
Data string `json:"data"`
|
||||
MimeType string `json:"mime_type"`
|
||||
Text string `json:"text"`
|
||||
Data string `json:"data"`
|
||||
MimeType string `json:"mime_type"`
|
||||
Text string `json:"text"`
|
||||
AttachmentFileID string `json:"attachment_file_id,omitempty"`
|
||||
AttachmentName string `json:"attachment_name,omitempty"`
|
||||
}
|
||||
|
||||
type missingFilePolicy uint8
|
||||
|
||||
@@ -21,6 +21,7 @@ import (
|
||||
"github.com/coder/coder/v2/coderd/database/dbgen"
|
||||
"github.com/coder/coder/v2/coderd/database/dbtestutil"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chatprompt"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
"github.com/coder/coder/v2/testutil"
|
||||
)
|
||||
@@ -2384,6 +2385,103 @@ func TestMediaToolResultRoundTrip(t *testing.T) {
|
||||
require.Equal(t, mimeType, mediaOutput.MediaType)
|
||||
})
|
||||
|
||||
t.Run("MediaResultCarriesPromotedAttachmentMetadata", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
const callID = "call-screenshot-promoted"
|
||||
const toolName = "computer"
|
||||
const mimeType = "image/png"
|
||||
const attachmentName = "screenshot-2026-04-21T00-00-00Z.png"
|
||||
|
||||
attachmentID := uuid.MustParse("aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee")
|
||||
response := chattool.WithAttachments(
|
||||
fantasy.NewImageResponse([]byte(imageData), mimeType),
|
||||
chattool.AttachmentMetadata{
|
||||
FileID: attachmentID,
|
||||
MediaType: mimeType,
|
||||
Name: attachmentName,
|
||||
},
|
||||
)
|
||||
|
||||
sdkPart := chatprompt.PartFromContent(fantasy.ToolResultContent{
|
||||
ToolCallID: callID,
|
||||
ToolName: toolName,
|
||||
ClientMetadata: response.Metadata,
|
||||
Result: fantasy.ToolResultOutputContentMedia{
|
||||
Data: imageData,
|
||||
MediaType: mimeType,
|
||||
},
|
||||
})
|
||||
|
||||
var persisted struct {
|
||||
Data string `json:"data"`
|
||||
MimeType string `json:"mime_type"`
|
||||
Text string `json:"text"`
|
||||
AttachmentFileID string `json:"attachment_file_id"`
|
||||
AttachmentName string `json:"attachment_name"`
|
||||
}
|
||||
require.NoError(t, json.Unmarshal(sdkPart.Result, &persisted))
|
||||
require.Equal(t, imageData, persisted.Data)
|
||||
require.Equal(t, mimeType, persisted.MimeType)
|
||||
require.Equal(t, attachmentID.String(), persisted.AttachmentFileID)
|
||||
require.Equal(t, attachmentName, persisted.AttachmentName)
|
||||
|
||||
chat := insertPair(t, callID, toolName, []codersdk.ChatMessagePart{sdkPart})
|
||||
|
||||
prompt := loadPrompt(t, chat)
|
||||
require.Len(t, prompt, 2)
|
||||
|
||||
resultPart, ok := fantasy.AsMessagePart[fantasy.ToolResultPart](prompt[1].Content[0])
|
||||
require.True(t, ok, "expected ToolResultPart")
|
||||
|
||||
mediaOutput, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentMedia](resultPart.Output)
|
||||
require.True(t, ok, "expected ToolResultOutputContentMedia, got %T", resultPart.Output)
|
||||
require.Equal(t, imageData, mediaOutput.Data)
|
||||
require.Equal(t, mimeType, mediaOutput.MediaType)
|
||||
})
|
||||
t.Run("MediaResultUsesMatchingAttachmentMetadata", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
const callID = "call-screenshot-matching-attachment"
|
||||
const toolName = "computer"
|
||||
const mimeType = "image/png"
|
||||
const attachmentName = "screenshot-2026-04-21T00-00-01Z.png"
|
||||
|
||||
mismatchedAttachmentID := uuid.MustParse("11111111-2222-3333-4444-555555555555")
|
||||
matchingAttachmentID := uuid.MustParse("aaaaaaaa-bbbb-cccc-dddd-ffffffffffff")
|
||||
response := chattool.WithAttachments(
|
||||
fantasy.NewImageResponse([]byte(imageData), mimeType),
|
||||
chattool.AttachmentMetadata{
|
||||
FileID: mismatchedAttachmentID,
|
||||
MediaType: "application/pdf",
|
||||
Name: "report.pdf",
|
||||
},
|
||||
chattool.AttachmentMetadata{
|
||||
FileID: matchingAttachmentID,
|
||||
MediaType: mimeType,
|
||||
Name: attachmentName,
|
||||
},
|
||||
)
|
||||
|
||||
sdkPart := chatprompt.PartFromContent(fantasy.ToolResultContent{
|
||||
ToolCallID: callID,
|
||||
ToolName: toolName,
|
||||
ClientMetadata: response.Metadata,
|
||||
Result: fantasy.ToolResultOutputContentMedia{
|
||||
Data: imageData,
|
||||
MediaType: mimeType,
|
||||
},
|
||||
})
|
||||
|
||||
var persisted struct {
|
||||
AttachmentFileID string `json:"attachment_file_id"`
|
||||
AttachmentName string `json:"attachment_name"`
|
||||
}
|
||||
require.NoError(t, json.Unmarshal(sdkPart.Result, &persisted))
|
||||
require.Equal(t, matchingAttachmentID.String(), persisted.AttachmentFileID)
|
||||
require.Equal(t, attachmentName, persisted.AttachmentName)
|
||||
})
|
||||
|
||||
t.Run("MediaResultWithText", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
|
||||
@@ -11,10 +11,10 @@ import (
|
||||
"github.com/google/uuid"
|
||||
|
||||
"cdr.dev/slog/v3"
|
||||
"github.com/coder/coder/v2/coderd/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/database"
|
||||
"github.com/coder/coder/v2/coderd/database/dbauthz"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/coderd/x/chatfiles"
|
||||
"github.com/coder/coder/v2/codersdk/workspacesdk"
|
||||
)
|
||||
|
||||
|
||||
@@ -6,9 +6,9 @@ import (
|
||||
"github.com/google/uuid"
|
||||
"golang.org/x/xerrors"
|
||||
|
||||
"github.com/coder/coder/v2/coderd/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/database"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/coderd/x/chatfiles"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
)
|
||||
|
||||
|
||||
@@ -8,10 +8,10 @@ import (
|
||||
"github.com/stretchr/testify/require"
|
||||
"go.uber.org/mock/gomock"
|
||||
|
||||
"github.com/coder/coder/v2/coderd/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/database"
|
||||
"github.com/coder/coder/v2/coderd/database/dbmock"
|
||||
"github.com/coder/coder/v2/coderd/x/chatd/chattool"
|
||||
"github.com/coder/coder/v2/coderd/x/chatfiles"
|
||||
"github.com/coder/coder/v2/codersdk"
|
||||
)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/coder/coder/v2/coderd/chatfiles"
|
||||
"github.com/coder/coder/v2/coderd/x/chatfiles"
|
||||
)
|
||||
|
||||
func TestDetectMediaType_WebP(t *testing.T) {
|
||||
Reference in New Issue
Block a user