diff --git a/front/pages/w/[wId]/assistant/labs/transcripts/index.tsx b/front/pages/w/[wId]/assistant/labs/transcripts/index.tsx index 6072bfbcff23..a9c871aa7350 100644 --- a/front/pages/w/[wId]/assistant/labs/transcripts/index.tsx +++ b/front/pages/w/[wId]/assistant/labs/transcripts/index.tsx @@ -130,7 +130,10 @@ export default function LabsTranscriptsIndex({ return ; } - const agents = agentConfigurations.filter((a) => a.status === "active"); + // Only custom assistants - there's no point in passing a transcript to a default assistant without instructions. + const agents = agentConfigurations.filter( + (a) => a.status === "active" && a.id != -1 + ); const handleProviderChange = async ( provider: LabsTranscriptsProviderType