Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mxmxk
/
ollama
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c8d5203
ollama
/
types
/
prompt.ts
rippanteq7
Upload folder using huggingface_hub
bbef364
verified
6 months ago
raw
Copy download link
history
blame
Safe
190 Bytes
import
{
OllamaModel
}
from
'./ollama'
;
export
interface
Prompt
{
id
:
string
;
name
:
string
;
description
:
string
;
content
:
string
;
model
:
OllamaModel
;
folderId
:
string
|
null
;
}