Spaces:
Runtime error
Runtime error
File size: 3,814 Bytes
46d7a45 94753b6 46d7a45 94753b6 46d7a45 |
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
/**
* See default-widget-inputs.ts for the default widget inputs, this files only contains the types
*/
type TableData = Record<string, (string | number)[]>;
//#region outputs
export type WidgetExampleOutputLabels = Array<{ label: string; score: number }>;
export interface WidgetExampleOutputAnswerScore {
answer: string;
score: number;
}
export interface WidgetExampleOutputText {
text: string;
}
export interface WidgetExampleOutputUrl {
url: string;
}
export type WidgetExampleOutput =
| WidgetExampleOutputLabels
| WidgetExampleOutputAnswerScore
| WidgetExampleOutputText
| WidgetExampleOutputUrl;
//#endregion
export interface WidgetExampleBase<TOutput> {
example_title?: string;
group?: string;
/**
* Potential overrides to API parameters for this specific example
* (takes precedences over the model card metadata's inference.parameters)
*/
parameters?: {
/// token-classification
aggregation_strategy?: string;
/// text-generation
top_k?: number;
top_p?: number;
temperature?: number;
max_new_tokens?: number;
do_sample?: boolean;
/// text-to-image
negative_prompt?: string;
guidance_scale?: number;
num_inference_steps?: number;
};
/**
* Optional output
*/
output?: TOutput;
}
export interface ChatMessage {
role: "user" | "assistant" | "system";
content: string;
}
export interface WidgetExampleChatInput<TOutput = WidgetExampleOutput> extends WidgetExampleBase<TOutput> {
messages: ChatMessage[];
}
export interface WidgetExampleTextInput<TOutput = WidgetExampleOutput> extends WidgetExampleBase<TOutput> {
text: string;
}
export interface WidgetExampleTextAndContextInput<TOutput = WidgetExampleOutput>
extends WidgetExampleTextInput<TOutput> {
context: string;
}
export interface WidgetExampleTextAndTableInput<TOutput = WidgetExampleOutput> extends WidgetExampleTextInput<TOutput> {
table: TableData;
}
export interface WidgetExampleAssetInput<TOutput = WidgetExampleOutput> extends WidgetExampleBase<TOutput> {
src: string;
}
export interface WidgetExampleAssetAndPromptInput<TOutput = WidgetExampleOutput>
extends WidgetExampleAssetInput<TOutput> {
prompt: string;
}
export type WidgetExampleAssetAndTextInput<TOutput = WidgetExampleOutput> = WidgetExampleAssetInput<TOutput> &
WidgetExampleTextInput<TOutput>;
export type WidgetExampleAssetAndZeroShotInput<TOutput = WidgetExampleOutput> = WidgetExampleAssetInput<TOutput> &
WidgetExampleZeroShotTextInput<TOutput>;
export interface WidgetExampleStructuredDataInput<TOutput = WidgetExampleOutput> extends WidgetExampleBase<TOutput> {
structured_data: TableData;
}
export interface WidgetExampleTableDataInput<TOutput = WidgetExampleOutput> extends WidgetExampleBase<TOutput> {
table: TableData;
}
export interface WidgetExampleZeroShotTextInput<TOutput = WidgetExampleOutput> extends WidgetExampleTextInput<TOutput> {
text: string;
candidate_labels: string;
multi_class: boolean;
}
export interface WidgetExampleSentenceSimilarityInput<TOutput = WidgetExampleOutput>
extends WidgetExampleBase<TOutput> {
source_sentence: string;
sentences: string[];
}
//#endregion
export type WidgetExample<TOutput = WidgetExampleOutput> =
| WidgetExampleChatInput<TOutput>
| WidgetExampleTextInput<TOutput>
| WidgetExampleTextAndContextInput<TOutput>
| WidgetExampleTextAndTableInput<TOutput>
| WidgetExampleAssetInput<TOutput>
| WidgetExampleAssetAndPromptInput<TOutput>
| WidgetExampleAssetAndTextInput<TOutput>
| WidgetExampleAssetAndZeroShotInput<TOutput>
| WidgetExampleStructuredDataInput<TOutput>
| WidgetExampleTableDataInput<TOutput>
| WidgetExampleZeroShotTextInput<TOutput>
| WidgetExampleSentenceSimilarityInput<TOutput>;
type KeysOfUnion<T> = T extends unknown ? keyof T : never;
export type WidgetExampleAttribute = KeysOfUnion<WidgetExample>;
|