File size: 1,026 Bytes
b2ecf7d
 
 
 
 
9d298eb
b2ecf7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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://")
	);
}