summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorHeiner Lohaus <heiner@lohaus.eu>2023-10-07 10:17:43 +0200
committerHeiner Lohaus <heiner@lohaus.eu>2023-10-07 10:17:43 +0200
commitf7bb30036e5e5482611627a040f54254ac162f72 (patch)
tree32afa79238a6acc49d8890d26bbdfa38829ce316 /etc
parentAdd GptGod Provider (diff)
downloadgpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar.gz
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar.bz2
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar.lz
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar.xz
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.tar.zst
gpt4free-f7bb30036e5e5482611627a040f54254ac162f72.zip
Diffstat (limited to 'etc')
-rw-r--r--etc/tool/improve_file.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/etc/tool/improve_file.py b/etc/tool/improve_file.py
new file mode 100644
index 00000000..cef41354
--- /dev/null
+++ b/etc/tool/improve_file.py
@@ -0,0 +1,44 @@
+
+import sys, re
+from pathlib import Path
+from os import path
+
+sys.path.append(str(Path(__file__).parent.parent.parent))
+
+import g4f
+
+def read_code(text):
+ match = re.search(r"```(python|py|)\n(?P<code>[\S\s]+?)\n```", text)
+ if match:
+ return match.group("code")
+
+path = input("Path: ")
+
+with open(path, "r") as file:
+ code = file.read()
+
+prompt = f"""
+Improve the code in this file:
+```py
+{code}
+```
+Don't remove anything. Add type hints if possible.
+"""
+
+print("Create code...")
+response = []
+for chunk in g4f.ChatCompletion.create(
+ model=g4f.models.gpt_35_long,
+ messages=[{"role": "user", "content": prompt}],
+ timeout=0,
+ stream=True
+):
+ response.append(chunk)
+ print(chunk, end="", flush=True)
+print()
+response = "".join(response)
+
+code = read_code(response)
+if code:
+ with open(path, "w") as file:
+ file.write(code) \ No newline at end of file