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
/
FineTuningRowElement.d.ts
7 lines
(6 loc)
•
171 B
TypeScript
View Raw
1
2
3
4
5
6
7
export default interface IFineTuningRowElement { role:
"system"
|
"assistant"
|
"user"
;
content
: string; weight?:
0
|
1
; setWeight(weight:
0
|
1
): void; }