Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
matthoffner
/
chatbot
like
3
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
796c5dd
chatbot
/
types
/
prompt.ts
matthoffner
Upload 242 files
15d9c3e
over 1 year ago
raw
Copy download link
history
blame
Safe
190 Bytes
import
{
OpenAIModel
}
from
'./openai'
;
export
interface
Prompt
{
id
:
string
;
name
:
string
;
description
:
string
;
content
:
string
;
model
:
OpenAIModel
;
folderId
:
string
|
null
;
}