UNPKG
chatgpt-fine-tuning
Version:
latest (1.0.0)
1.0.0
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha
Easily tune your models.
github.com/rgomezp/chatgpt-fine-tuning
rgomezp/chatgpt-fine-tuning
chatgpt-fine-tuning
/
dist
/
models
/
Tuner.d.ts
9 lines
(8 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
FineTuningRow
from
"../classes/FineTuningRow"
;
export
default
interface
ITuner
{
row
:
FineTuningRow
;
approve
():
Promise
<
void
>;
reject
():
Promise
<
void
>;
fix
(
userText
:
string
,
assistantText
:
string
):
Promise
<
void
>;
log
(
message
:
string
):
void
; }