Spaces:
Running
Running
File size: 698 Bytes
e538a38 |
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 |
export type TextSearchResult = [title: string, snippet: string, url: string];
export type ImageSearchResult = [
title: string,
url: string,
thumbnailUrl: string,
sourceUrl: string,
];
export type TextSearchResults = TextSearchResult[];
export type ImageSearchResults = ImageSearchResult[];
export type SearchState = "idle" | "running" | "failed" | "completed";
export type SearchResults = {
textResults: TextSearchResult[];
imageResults: ImageSearchResult[];
};
export type TextGenerationState =
| "idle"
| "awaitingModelDownloadAllowance"
| "loadingModel"
| "awaitingSearchResults"
| "preparingToGenerate"
| "generating"
| "interrupted"
| "failed"
| "completed";
|