Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pdl-live-react/src/view/detail/kind/Model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ import Group from "../Group"
import Result from "../../Result"

export default function ModelItems({
block: { model, input, result, parser },
block: { platform, model, input, result, parser },
}: {
block: import("../../../pdl_ast").LitellmModelBlock
}) {
return (
<>
{typeof platform === "string" && (
<Group term="Platform" description={platform} />
)}
{typeof model === "string" && <Group term="Model" description={model} />}
{typeof input === "string" && <Group term="Input" description={input} />}
<Result
Expand Down