forked from furnivall/anthropic-fsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
385 lines (331 loc) · 15.9 KB
/
main.py
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
import argparse
import subprocess
import sys
import re
import textwrap
from typing import List
import xml.etree.ElementTree as ET
from langchain.chat_models import ChatAnthropic
from pygments import highlight
from pygments.lexers import PythonLexer
from pygments.formatters import TerminalFormatter
from langchain.prompts.chat import ChatPromptTemplate
from util import stack_trace_to_files
from terminology import in_red, in_yellow, in_green, in_cyan, in_magenta
import time
from pyfiglet import Figlet
def infer_purpose(file_path, content):
print(in_green("\nI am now attempting to infer the purpose of your program. Please wait..."))
inference_template = """
You are a world class software developer.
I am going to send in a filename of a python file and the file's content.
I want you to then infer what you believe the developer's overall intentions for the file's purpose.
You must ONLY return your assessment of the developer's intentions at a high level.
You must not mention any mistakes or flaws or criticise the code in any way.
Use the heading 'Purpose' to indicate your answer.
Give me your best attempt.
"""
human_template = "***{filename}*** \n ***{file_content}***"
chat_prompt = ChatPromptTemplate.from_messages([
("system", inference_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
input = {"filename": file_path, "file_content": content}
return chain.invoke(input)
def infer_purpose_w_questions(file_path, content, q_and_a: List):
inference_template = """
You are a world class software developer.
I am going to send in a filename of a python file and the file's content.
I want you to then infer what you believe the developer's overall intentions for the file's purpose.
You must ONLY return your assessment of the developer's intentions at a high level.
You must not mention any mistakes or flaws or criticise the code in any way.
Use the heading 'Purpose' to indicate your answer.
Give me your best attempt.
"""
human_template = "***Filename:*** {filename} \n ***File Content:*** {file_content} \n"
for i, q in enumerate(q_and_a):
human_template = f"{human_template} ***Question_{i + 1}:*** {q[0]} \n ***Answer_{i + 1}:*** {q[1]} \n"
chat_prompt = ChatPromptTemplate.from_messages([
("system", inference_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
input = {"filename": file_path, "file_content": content}
return chain.invoke(input)
def get_user_answers(questions):
q_and_a = []
for q in questions:
print(in_cyan("Question: "), q)
a = input(in_yellow('Answer: '))
if a: q_and_a.append([q, a])
print(in_green("Please wait, I'm now using your answers to infer your true purpose."))
return q_and_a
def get_user_decision_on_inference(inference, file_path, content):
user_input = 'fuck you claude'
print(in_magenta("\nHere's my best guess at your intended purpose:"))
print(textwrap.fill(in_yellow(inference.content.split("Purpose:")[1].strip()), width=80))
while user_input not in ['y', 'n']:
user_input = input(in_cyan("\nDo you agree that this was your intention? (y/n)")).lower()
if user_input == 'y':
print(in_green("\nPerfect! I'll get to work trying to fix it now. Please wait a few seconds..."))
return inference
else:
questions: List[str] = get_clarifying_questions(
file_path,
content,
inference,
)
q_and_a = get_user_answers(questions)
new_inference = infer_purpose_w_questions(file_path, content, q_and_a)
return get_user_decision_on_inference(new_inference, file_path, content)
def get_clarifying_questions(file_path, content, inference):
print(in_green(
"Understood. I'm now generating some clarifying questions to provide a better idea of your intended purpose."))
questions_template = """You are a world class software developer.
I will send you a filename, file content, and purpose.
You should then infer some clarifying questions which would help someone to understand the intent of the given project.
Under no circumstances provide any other information. Give me your best attempt.
Provide the questions individually in structured XML format.
An example of this format is...
```
<questions><question id="1">
<text>Why is x data in csv format?</text>
</question>
<question id="2"><text>What are you expecting as an output?</text></question>
<question id="3"><text>How does this algorithm work?</text></question></questions>```.
Use as few questions as possible and do not ask simplistic questions, like 'What are you building?'"""
human_template = "***{filename}*** \n ***{file_content}*** \n ***{purpose}***"
chat_prompt = ChatPromptTemplate.from_messages([
("system", questions_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2")
input = {
"filename": file_path,
"file_content": content,
"purpose": inference,
}
question_str = chain.invoke(input).content
root = ET.fromstring(question_str)
# Extract each <text> value into list
questions = []
for q in root.findall('./question/text'):
questions.append(q.text)
return questions
def run_script(file_path):
print(in_green(Figlet(font='roman').renderText('FSD').strip()))
print(in_magenta("Welcome to fsd. Your helpful assistant for fixing software bugs. \U0001F60E"))
time.sleep(1)
print(in_yellow(f"\nRunning your code now ({file_path}). Please wait..."))
time.sleep(1)
try:
process = subprocess.run(
[sys.executable, file_path],
capture_output=True,
text=True,
timeout=15,
)
except subprocess.TimeoutExpired:
print(in_red("\nEek! Your code took too long to run. I'm going to have to kill it. \U0001F62D"))
exit(1)
if process.returncode == 0:
print(in_cyan("\nYour code ran successfully. Output as follows:"))
print(in_yellow(process.stdout))
exit(0)
else:
print(in_red(
"\nEek! Your code returned error code 1. Not to worry, we're going to fix this together. \U0001F603"))
return process.returncode, process.stderr, file_path
def read_file_content(file_path):
with open(file_path, 'r') as f:
content = f.read()
return content
def can_you_fix(file_path, content, error_message, purpose):
solvability_template = """
You are a world-class software developer. I am planning to send you the following information:
1. A piece of python code
2. The full stderror content produced by running the code
3. The developer's confirmed intent for the given output.
4. Filename of the python code
Consider whether you are able to provide a solution that resolves the error with only the information contained above.
Important: You must ONLY respond with either the integers 1 or 0. 1 means you can fix the error, 0 means you cannot.
Provide the questions individually in structured XML format.
An example of this format is...
```<bool>1</bool>```
"""
human_template = "***{filename}*** \n ***{file_content}*** \n ***{error_message}*** \n ***{purpose}***"
chat_prompt = ChatPromptTemplate.from_messages([
("system", solvability_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
our_data = {"filename": file_path, "file_content": content, "error_message": error_message, "purpose": purpose}
bool_regex = r"<bool>(0|1)</bool>"
llm_output = ""
while llm_output not in ["0", "1"]:
llm_output = chain.invoke(our_data).content
llm_output = re.findall(bool_regex, llm_output)[0]
return bool(int(llm_output))
def can_you_fix_w_context(context: List[List[str]], error_message, purpose):
solvability_template = """
You are a world-class software developer. I am planning to send you the following information:
1. A piece of python code
2. The full stderror content produced by running the code
3. The developer's confirmed intent for the given output.
4. Filename of the python code
Consider whether you are able to provide a solution that resolves the error with only the information contained above.
Important: You must ONLY respond with either the integers 1 or 0. 1 means you can fix the error, 0 means you cannot.
Provide the questions individually in structured XML format.
An example of this format is...
```<bool>1</bool>```
"""
human_template = "***{error_message}*** \n ***{purpose}*** \n"
for i, c in enumerate(context):
human_template = f"{human_template} ***Filename_{i + 1}:*** {c[0]} \n ***File_Contents_{i + 1}:*** {c[1]} \n"
chat_prompt = ChatPromptTemplate.from_messages([
("system", solvability_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
our_data = {"error_message": error_message, "purpose": purpose}
bool_regex = r"<bool>(0|1)</bool>"
llm_output = ""
while llm_output not in ["0", "1"]:
llm_output = chain.invoke(our_data).content
llm_output = re.findall(bool_regex, llm_output)[0]
return bool(int(llm_output))
def get_fix_code(file_path, content, error_message, purpose):
solvability_template = """
You are a world-class software developer who only responds in code and not english. I will send you the following information:
1. A piece of python code
2. The full error trace content produced by running the code
3. The developer's confirmed intent for the given output.
4. Filename of the python code
Return a python code that fixes the error below. don't include any explanations in your responses.
Assistant: {{list code}}
"""
human_template = "Filename: ***{filename}*** \n File Content: ***{file_content}*** \n Error Message: ***{error_message}*** \n Purpose: ***{purpose}***"
chat_prompt = ChatPromptTemplate.from_messages([
("system", solvability_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0, max_tokens=100000)
our_data = {"filename": file_path, "file_content": content, "error_message": error_message, "purpose": purpose}
llm_output = chain.invoke(our_data).content
return llm_output
def get_fix_code_w_context(context: List[List[str]], error_message, purpose):
solvability_template = """
You are a world-class software developer who only responds in code and not english. I will send you the following information:
1. Pieces of Python code
2. The full error trace content produced by running the code
3. The developer's confirmed intent for the given output.
4. Filenames of the python code
Return a python code that fixes the error below. don't include any explanations in your responses.
Assistant: {{list code}}
"""
human_template = "Error Message: ***{error_message}*** \n Purpose: ***{purpose}***"
for i, c in enumerate(context):
human_template = f"{human_template} ***Filename_{i + 1}:*** {c[0]} \n ***File_Contents_{i + 1}:*** {c[1]} \n"
chat_prompt = ChatPromptTemplate.from_messages([
("system", solvability_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
our_data = {"error_message": error_message, "purpose": purpose}
llm_output = chain.invoke(our_data).content
return llm_output
def extract_code_from_markdown(markdown_text):
# Regex to find fenced code blocks
code_blocks = re.findall(r'```(?:.*\n)?((?:.|\n)*?)```', markdown_text)
return code_blocks
def code_to_markdown(text):
"""Convert Python code blocks to Markdown format"""
pattern = r"`{3}python\n(.*?)\n`{3}"
repl = '```python\n\\1\n```'
return re.sub(pattern, repl, text, flags=re.DOTALL)
def diff(new_file, old_file, intent):
inference_template = """
You are a world class software developer.
Explain the difference between the two python files based on the intention of building them.
"""
human_template = "***{new_file}*** \n ***{old_file}*** \n ***{intent}***"
chat_prompt = ChatPromptTemplate.from_messages([
("system", inference_template),
("human", human_template),
])
chain = chat_prompt | ChatAnthropic(model="claude-2", temperature=0)
input = {"new_file": new_file, "old_file": old_file, "intent": intent}
return chain.invoke(input)
def main():
parser = argparse.ArgumentParser(description="Run a Python script and capture its exit code.")
parser.add_argument('script', type=str, help="Path to the Python script to run.")
args = parser.parse_args()
try:
exit_code, stderr_output, file_path = run_script(args.script)
content = read_file_content(file_path)
if exit_code != 0:
# Initial guess at purpose of program.
purpose_inf = infer_purpose(file_path, content)
# If we need to we get a better purpose.
purpose_inf = get_user_decision_on_inference(purpose_inf, file_path, content)
files_context: List[List[str]] = []
files_in_stack = stack_trace_to_files(stderr_output)
for f in files_in_stack:
f_context = read_file_content(f)
files_context.append([f, f_context])
i = 1
can_fix = False
while not can_fix and i <= len(files_in_stack):
# If the LLM can NOT fix the file add in extra context (if possible) and try can_you_fix() again
can_fix = can_you_fix_w_context(
files_context[:i],
stderr_output,
purpose_inf.content
)
i += 1
print(in_magenta(f"\nI reckon I can fix this for you!"))
code = None
# If the can_fix is still False then tell user and give option to run get fix code again.
if not can_fix:
ignore = ""
while ignore not in ['y', 'n']:
ignore = input(in_cyan("\nI'm still not 100% confident I can come up with a correct solution. "
"Do you want it to try making a solution anyway? (y/n)")).lower()
if ignore == 'y':
code = get_fix_code_w_context(
files_context[:i],
stderr_output,
purpose_inf.content
)
else:
print("Bye!")
exit()
if not code:
code = get_fix_code_w_context(
files_context[:i],
stderr_output,
purpose_inf.content
)
code = extract_code_from_markdown(code)
print(in_magenta("\n\nI think I may have fixed the code! Here is your solution:"))
pretty_code = highlight(code[0], PythonLexer(), TerminalFormatter())
print(pretty_code)
ask = (
input(in_cyan("Would you like to understand the difference between the original and fixed code? (y/n)"))
.lower())
if ask == 'y':
diff_output = diff(content, code, purpose_inf.content)
final_diff = code_to_markdown(diff_output.content)
print(final_diff)
else:
print("Bye!")
exit()
except FileNotFoundError:
print(f"The file {args.script} does not exist or is not a file.", file=sys.stderr)
sys.exit(2)
except Exception as e:
print(f"An error occurred: {e}", file=sys.stderr)
sys.exit(1)
if __name__ == "__main__":
main()