Skip to content

Commit

Permalink
Added ASR Component Params
Browse files Browse the repository at this point in the history
  • Loading branch information
Shanks0465 committed Aug 30, 2024
1 parent 2341d09 commit cf25cf8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/components/Models.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ const renderTryOut = ({ area, model }: { area: string; model: Model }) => {
/>
);
case "ASR":
return <ASR />;
return (
<ASR
sourceLanguages={model.languageFilters.sourceLanguages}
serviceId={model.service_id}
/>
);
}
};

Expand Down

0 comments on commit cf25cf8

Please sign in to comment.