-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTransformer.tsx
167 lines (156 loc) · 3.79 KB
/
Transformer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* eslint-disable @next/next/no-img-element */
import { Play, Trash2, Lock, Unlock, Repeat } from "lucide-react";
import { memo } from "react";
import {
Handle,
Position,
NodeProps,
NodeToolbar,
getIncomers,
getConnectedEdges,
useUpdateNodeInternals,
Node,
} from "reactflow";
import "reactflow/dist/style.css";
import { Nodes } from ".";
import { Label } from "../Label";
import {
NumberVariable,
Output,
Outputs,
Panel,
TextVariable,
Toolbar,
ToolButton,
Variables,
} from "../Node";
export type Transformer = NodeProps<{
locked: boolean;
running: boolean;
repeating: boolean;
input: {
prompt: string;
temperature: number;
top_p: number;
frequency_penalty: number;
};
output: {
prediction: string;
};
}>;
export function Transformer(node: Transformer) {
const { editNode, deleteNode } = Nodes.use((state) => ({
editNode: state.editNode,
deleteNode: state.deleteNode,
}));
return (
<Panel name="GPT-3" running={node.data.running} selected={node.selected}>
<Toolbar show={node.selected}>
{!node.data.running && (
<ToolButton
onClick={() => {
Nodes.resolveNode(node.id);
}}
>
<Play size={16} />
</ToolButton>
)}
<ToolButton
onClick={() => {
if (node.data.repeating) {
editNode(node.id, {
repeating: false,
});
} else {
Nodes.resolveNode(node.id, true);
}
}}
active={node.data.repeating}
>
<Repeat size={16} />
</ToolButton>
<ToolButton
onClick={() =>
editNode(node.id, {
locked: !node.data.locked,
})
}
active={node.data.locked}
>
{node.data.locked ? <Lock size={16} /> : <Unlock size={16} />}
</ToolButton>
<ToolButton onClick={() => deleteNode(node.id)}>
<Trash2 size={16} />
</ToolButton>
</Toolbar>
<Variables>
<NumberVariable
name="temperature"
value={node.data.input.temperature || 0.9}
label="Temperature"
nodeID={node.id}
/>
<NumberVariable
name="top_p"
value={node.data.input.top_p || 0.9}
label="Top P"
nodeID={node.id}
/>
<NumberVariable
name="frequency_penalty"
value={node.data.input.frequency_penalty || 0.0}
label="Frequency Penalty"
nodeID={node.id}
/>
<TextVariable
name="prompt"
value={node.data.input.prompt || ""}
label="Prompt"
nodeID={node.id}
/>
</Variables>
<Outputs>
<Output
label="Prediction"
name="prediction"
nodeID={node.id}
type="string"
value={node.data.output.prediction || ""}
/>
</Outputs>
</Panel>
);
}
export namespace Transformer {
export async function run(node: Node): Promise<any> {
const { prompt, temperature, top_p, frequency_penalty } = node.data.input;
if (!prompt) {
if (node.data.repeating) {
// disable repeating
Nodes.use.getState().editNode(node.id, {
repeating: false,
});
}
return {
prediction: "",
};
}
const response = await fetch("https://api.prototyped.ai/text", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
prompt,
temperature,
top_p,
frequency_penalty,
}),
});
const json = await response.json();
return {
prediction: json.choices.pop().text,
};
}
export const Memo = memo(Transformer);
}