Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
inference-widgets
/
packages
/widgets
/src
/lib
/components
/InferenceWidget
/shared
/outputValidation.ts
| import type { | |
| WidgetExampleOutputLabels, | |
| WidgetExampleOutputAnswerScore, | |
| WidgetExampleOutputText, | |
| WidgetExampleOutputUrl, | |
| } from "@huggingface/tasks"; | |
| export function isValidOutputLabels(arg: unknown): arg is WidgetExampleOutputLabels { | |
| return Array.isArray(arg) && arg.every((x) => typeof x.label === "string" && typeof x.score === "number"); | |
| } | |
| export function isValidOutputAnswerScore(arg: unknown): arg is WidgetExampleOutputAnswerScore { | |
| return ( | |
| !!arg && | |
| typeof arg === "object" && | |
| "answer" in arg && | |
| typeof arg["answer"] === "string" && | |
| "score" in arg && | |
| typeof arg["score"] === "number" | |
| ); | |
| } | |
| export function isValidOutputText(arg: unknown): arg is WidgetExampleOutputText { | |
| return !!arg && typeof arg === "object" && "text" in arg && typeof arg["text"] === "string"; | |
| } | |
| export function isValidOutputUrl(arg: unknown): arg is WidgetExampleOutputUrl { | |
| return ( | |
| !!arg && | |
| typeof arg === "object" && | |
| "url" in arg && | |
| typeof arg["url"] === "string" && | |
| arg["url"].startsWith("https://") | |
| ); | |
| } | |