-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGPTPythonFixer.py
68 lines (55 loc) · 2.15 KB
/
GPTPythonFixer.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
import sys
import subprocess
import openai
def fix_python_file(file_path, use_pipe):
with open(file_path, 'r') as file:
python_code = file.read()
if use_pipe:
try:
result = subprocess.run(['python', file_path], capture_output=True, text=True)
python_output = result.stdout
except subprocess.CalledProcessError as e:
python_output = e.output
conversation = [
{"role": "system", "content": "You are a Python code fixer."},
{"role": "user", "content": python_output},
{"role": "assistant", "content": "Please help me fix any errors in the code."}
]
else:
conversation = [
{"role": "system", "content": "You are a Python code fixer."},
{"role": "user", "content": python_code},
{"role": "assistant", "content": "Please help me fix any errors in the code."}
]
openai.api_key = 'YOUR_API_KEY'
chatgpt = openai.ChatCompletion.create(model="gpt-3.5-turbo")
response = chatgpt.messages.create(
model="gpt-3.5-turbo",
messages=conversation
)
suggested_output = response['choices'][0]['message']['content']
if use_pipe:
print("Suggested Output:")
print(suggested_output)
else:
if suggested_output != python_code:
print("Suggested Code:")
print(suggested_output)
user_input = input("Do you want to replace the code in the file? (yes/no): ")
if user_input.lower() == "yes":
with open(file_path, 'w') as file:
file.write(suggested_output)
print("Code replaced successfully!")
else:
print("Code not replaced.")
else:
print("No errors found in the code!")
if __name__ == "__main__":
if len(sys.argv) < 2:
print("Please provide the path to the Python file as a command-line argument.")
sys.exit(1)
file_path = sys.argv[1]
use_pipe = False
if len(sys.argv) > 2 and (sys.argv[2] == '-p' or sys.argv[2] == '--pipe'):
use_pipe = True
fix_python_file(file_path, use_pipe)