openvino_notebooks / selector /src /shared /notebook-metadata.ts
malvika2003's picture
Upload folder using huggingface_hub
db5855f verified
raw
history blame
527 Bytes
import { CATEGORIES, TASKS_VALUES } from './notebook-tags.js';
type ObjectValues<T> = T[keyof T];
export interface INotebookMetadata {
title: string;
path: string;
imageUrl: string | null;
createdDate: string;
modifiedDate: string;
links: {
github: string;
docs: string | null;
colab: string | null;
binder: string | null;
};
tags: {
categories: ObjectValues<typeof CATEGORIES>[];
tasks: typeof TASKS_VALUES;
libraries: string[];
other: string[];
};
}