Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Daniton
/
FreeGpt
like
0
Runtime error
App
Files
Files
Fetching metadata from the HF Docker repository...
40c5b6a
FreeGpt
/
types
/
prompt.ts
Daniton
Duplicate from yxmnjxzx/chatbot-mini
5d4afba
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
;
}