MCPcopy Create free account
hub / github.com/anomalyco/models.dev / LabPage

Function LabPage

packages/web/src/render.tsx:902–922  ·  view source on GitHub ↗
(props: { lab: LabEntry })

Source from the content-addressed store, hash-verified

900}
901
902function LabPage(props: { lab: LabEntry }) {
903 return (
904 <Fragment>
905 <DetailHeader
906 eyebrow={<a href="/labs">Labs</a>}
907 title={props.lab.name}
908 description={props.lab.description}
909 code={props.lab.id}
910 copyValue={props.lab.id}
911 />
912 <Facts
913 items={[
914 ["Models", props.lab.models.length],
915 ["Providers", props.lab.providerCount],
916 ["Updated", props.lab.lastUpdated ?? "-"],
917 ]}
918 />
919 <ModelTable models={props.lab.models} title="Models" showLab={false} />
920 </Fragment>
921 );
922}
923
924function Overview(props: {
925 title: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected