File size: 1,623 Bytes
0ad74ed |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
<script lang="ts">
export let parameters = [] as any[];
import ParamViewer from "@gradio/paramviewer";
interface OriginalParam {
annotation: string | null;
doc: string;
default?: string | null;
name: string;
}
interface NewParam {
type: string | null;
description: string;
default: string | null;
name?: string;
}
function decode_html_entities(text: string | null): string {
if (text == null) {
return "";
}
const entities: { [key: string]: string } = {
""": '"',
"'": "'",
"&": "&",
"<": "<",
">": ">",
" ": " ",
"¡": "¡"
};
const decimal_regex = /&#(\d+);/g;
const hex_regex = /&#x([0-9A-Fa-f]+);/g;
const named_regex = new RegExp(Object.keys(entities).join("|"), "g");
return text
.replace(decimal_regex, (_, code) =>
String.fromCharCode(parseInt(code, 10))
)
.replace(hex_regex, (_, code) => String.fromCharCode(parseInt(code, 16)))
.replace(named_regex, (match) => entities[match]);
}
function convert_params(
original_parameters: OriginalParam[]
): Record<string, NewParam> {
let new_parameters: Record<string, NewParam> = {};
for (let param of original_parameters) {
new_parameters[param.name] = {
type: param.annotation
.replaceAll("Sequence[", "list[")
.replaceAll("AbstractSet[", "set[")
.replaceAll("Mapping[", "dict["),
description: decode_html_entities(param.doc),
default: param.default || null
};
}
return new_parameters;
}
let new_parameters = convert_params(parameters);
</script>
<ParamViewer value={new_parameters} header="Parameters" />
|