-
+
+
+
+
+
+
+
+
+ Status: 
+
+
+ Cost: 
+
+
+
+
+
-
+
+
+
\ No newline at end of file
diff --git a/main.py b/main.py
index 1181690..1d54cd9 100644
--- a/main.py
+++ b/main.py
@@ -4,7 +4,6 @@
class ChatGPTPlugin(Wox):
-
# query is default function to receive realtime keystrokes from wox launcher
def query(self, query):
results = []
@@ -22,7 +21,10 @@ def query(self, query):
return results
def take_action(self, query):
- subprocess.Popen(["python", "app.py", query]).wait()
+ # subprocess.Popen(["python", "app.py", query]).wait()
+
+ ## no cmd window
+ subprocess.Popen(["python", "app.py", query], creationflags=subprocess.CREATE_NO_WINDOW).wait()
if __name__ == "__main__":
diff --git a/requirements.txt b/requirements.txt
index 56d47f5..d75113b 100644
Binary files a/requirements.txt and b/requirements.txt differ