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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
import styled from "styled-components";
import {
Button,
defaultBorderRadius,
vscBackground,
MainTextInput,
Loader,
} from "../components";
import ContinueButton from "../components/ContinueButton";
import { useCallback, useEffect, useRef, useState } from "react";
import { History } from "../../../schema/History";
import { HistoryNode } from "../../../schema/HistoryNode";
import StepContainer from "../components/StepContainer";
import { useSelector } from "react-redux";
import { RootStore } from "../redux/store";
import useContinueWebsocket from "../hooks/useWebsocket";
import useContinueGUIProtocol from "../hooks/useWebsocket";
let TopGUIDiv = styled.div`
display: grid;
grid-template-columns: 1fr;
`;
let UserInputQueueItem = styled.div`
border-radius: ${defaultBorderRadius};
color: gray;
padding: 8px;
margin: 8px;
text-align: center;
`;
interface GUIProps {
firstObservation?: any;
}
function GUI(props: GUIProps) {
const [waitingForSteps, setWaitingForSteps] = useState(false);
const [userInputQueue, setUserInputQueue] = useState<string[]>([]);
const [history, setHistory] = useState<History | undefined>();
// {
// timeline: [
// {
// step: {
// name: "RunCodeStep",
// cmd: "python3 /Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// description:
// "Run `python3 /Users/natesesti/Desktop/continue/extension/examples/python/main.py`",
// },
// output: [
// {
// traceback: {
// frames: [
// {
// filepath:
// "/Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// lineno: 7,
// function: "<module>",
// code: "print(sum(first, second))",
// },
// ],
// message: "unsupported operand type(s) for +: 'int' and 'str'",
// error_type:
// ' ^^^^^^^^^^^^^^^^^^\n File "/Users/natesesti/Desktop/continue/extension/examples/python/sum.py", line 2, in sum\n return a + b\n ~~^~~\nTypeError',
// full_traceback:
// "Traceback (most recent call last):\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/main.py\", line 7, in <module>\n print(sum(first, second))\n ^^^^^^^^^^^^^^^^^^\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/sum.py\", line 2, in sum\n return a + b\n ~~^~~\nTypeError: unsupported operand type(s) for +: 'int' and 'str'",
// },
// },
// null,
// ],
// },
// {
// step: {
// name: "EditCodeStep",
// range_in_files: [
// {
// filepath:
// "/Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// range: {
// start: {
// line: 0,
// character: 0,
// },
// end: {
// line: 6,
// character: 25,
// },
// },
// },
// ],
// prompt:
// "I ran into this problem with my Python code:\n\n Traceback (most recent call last):\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/main.py\", line 7, in <module>\n print(sum(first, second))\n ^^^^^^^^^^^^^^^^^^\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/sum.py\", line 2, in sum\n return a + b\n ~~^~~\nTypeError: unsupported operand type(s) for +: 'int' and 'str'\n\n Below are the files that might need to be fixed:\n\n {code}\n\n This is what the code should be in order to avoid the problem:\n",
// description:
// "Editing files: /Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// },
// output: [
// null,
// {
// reversible: true,
// actions: [
// {
// reversible: true,
// filesystem: {},
// filepath:
// "/Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// range: {
// start: {
// line: 0,
// character: 0,
// },
// end: {
// line: 6,
// character: 25,
// },
// },
// replacement:
// "\nfrom sum import sum\n\nfirst = 1\nsecond = 2\n\nprint(sum(first, second))",
// },
// ],
// },
// ],
// },
// {
// step: {
// name: "SolveTracebackStep",
// traceback: {
// frames: [
// {
// filepath:
// "/Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// lineno: 7,
// function: "<module>",
// code: "print(sum(first, second))",
// },
// ],
// message: "unsupported operand type(s) for +: 'int' and 'str'",
// error_type:
// ' ^^^^^^^^^^^^^^^^^^\n File "/Users/natesesti/Desktop/continue/extension/examples/python/sum.py", line 2, in sum\n return a + b\n ~~^~~\nTypeError',
// full_traceback:
// "Traceback (most recent call last):\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/main.py\", line 7, in <module>\n print(sum(first, second))\n ^^^^^^^^^^^^^^^^^^\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/sum.py\", line 2, in sum\n return a + b\n ~~^~~\nTypeError: unsupported operand type(s) for +: 'int' and 'str'",
// },
// description: "Running step: SolveTracebackStep",
// },
// output: [null, null],
// },
// {
// step: {
// name: "RunCodeStep",
// cmd: "python3 /Users/natesesti/Desktop/continue/extension/examples/python/main.py",
// description:
// "Run `python3 /Users/natesesti/Desktop/continue/extension/examples/python/main.py`",
// },
// output: [null, null],
// },
// ],
// current_index: 0,
// } as any
// );
const client = useContinueGUIProtocol();
useEffect(() => {
console.log("CLIENT ON STATE UPDATE: ", client, client?.onStateUpdate);
client?.onStateUpdate((state) => {
console.log("Received state update: ", state);
setWaitingForSteps(state.active);
setHistory(state.history);
setUserInputQueue(state.user_input_queue);
});
}, [client]);
const mainTextInputRef = useRef<HTMLTextAreaElement>(null);
useEffect(() => {
if (mainTextInputRef.current) {
mainTextInputRef.current.focus();
let handler = (event: any) => {
if (event.data.type === "focusContinueInput") {
mainTextInputRef.current?.focus();
}
};
window.addEventListener("message", handler);
return () => {
window.removeEventListener("message", handler);
};
}
}, [mainTextInputRef]);
const onMainTextInput = () => {
if (mainTextInputRef.current) {
if (!client) return;
let input = mainTextInputRef.current.value;
setWaitingForSteps(true);
client.sendMainInput(input);
setUserInputQueue((queue) => {
return [...queue, input];
});
mainTextInputRef.current.value = "";
mainTextInputRef.current.style.height = "";
}
};
const onStepUserInput = (input: string, index: number) => {
if (!client) return;
console.log("Sending step user input", input, index);
client.sendStepUserInput(input, index);
};
// const iterations = useSelector(selectIterations);
return (
<TopGUIDiv>
{typeof client === "undefined" && (
<>
<Loader></Loader>
<p>Server disconnected</p>
</>
)}
{history?.timeline.map((node: HistoryNode, index: number) => {
return (
<StepContainer
key={index}
onUserInput={(input: string) => {
onStepUserInput(input, index);
}}
inFuture={index > history?.current_index}
historyNode={node}
onRefinement={(input: string) => {
client?.sendRefinementInput(input, index);
}}
onReverse={() => {
client?.reverseToIndex(index);
}}
/>
);
})}
{waitingForSteps && <Loader></Loader>}
<div>
{userInputQueue.map((input) => {
return <UserInputQueueItem>{input}</UserInputQueueItem>;
})}
</div>
<MainTextInput
ref={mainTextInputRef}
onKeyDown={(e) => {
if (e.key === "Enter") {
onMainTextInput();
e.stopPropagation();
e.preventDefault();
}
}}
rows={1}
onChange={() => {
let textarea = mainTextInputRef.current!;
textarea.style.height = ""; /* Reset the height*/
textarea.style.height =
Math.min(textarea.scrollHeight - 15, 500) + "px";
}}
></MainTextInput>
<ContinueButton onClick={onMainTextInput}></ContinueButton>
</TopGUIDiv>
);
}
export default GUI;
|