UNPKG
@kyleroberts69/core
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
Core library for the Chatbot project
.
@kyleroberts69/core
/
types
/
prompt.d.ts
10 lines
(9 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
OpenAIModel
}
from
'./openai'
;
export
interface
Prompt
{
id
:
string
;
name
:
string
;
description
:
string
;
content
:
string
;
model
:
OpenAIModel
;
folderId
:
string
|
null
; }