ollama / types /error.ts
rippanteq7's picture
Upload folder using huggingface_hub
bbef364 verified
raw
history blame contribute delete
100 Bytes
export interface ErrorMessage {
code: String | null;
title: String;
messageLines: String[];
}