ngpt 3.11.2__py3-none-any.whl → 3.11.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ngpt/cli/args.py CHANGED
@@ -119,6 +119,11 @@ def setup_argument_parser():
119
119
  gitcommsg_group.add_argument('--max-recursion-depth', type=int, default=3,
120
120
  help='Maximum recursion depth for commit message condensing (default: 3)')
121
121
 
122
+ # Rewrite mode options
123
+ rewrite_group = parser.add_argument_group('Rewrite Mode Options')
124
+ rewrite_group.add_argument('--humanize', action='store_true',
125
+ help='Transform AI-generated text into human-like content that passes AI detection tools')
126
+
122
127
  # Mode flags (mutually exclusive)
123
128
  mode_group = parser.add_argument_group('Modes (mutually exclusive)')
124
129
  mode_exclusive_group = mode_group.add_mutually_exclusive_group()
@@ -135,11 +140,6 @@ def setup_argument_parser():
135
140
  mode_exclusive_group.add_argument('-g', '--gitcommsg', action='store_true',
136
141
  help='Generate AI-powered git commit messages from staged changes or diff file')
137
142
 
138
- # Rewrite mode options
139
- rewrite_group = parser.add_argument_group('Rewrite Mode Options')
140
- rewrite_group.add_argument('--humanize', action='store_true',
141
- help='Transform AI-generated text into human-like content that passes AI detection tools')
142
-
143
143
  return parser
144
144
 
145
145
  def parse_args():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ngpt
3
- Version: 3.11.2
3
+ Version: 3.11.3
4
4
  Summary: A Swiss army knife for LLMs: A fast, lightweight CLI and interactive chat tool that brings the power of any OpenAI-compatible LLM (OpenAI, Ollama, Groq, Claude, Gemini, etc.) straight to your terminal. rewrite texts or refine code, craft git commit messages, generate and run OS-aware shell commands.
5
5
  Project-URL: Homepage, https://github.com/nazdridoy/ngpt
6
6
  Project-URL: Repository, https://github.com/nazdridoy/ngpt
@@ -2,7 +2,7 @@ ngpt/__init__.py,sha256=kpKhViLakwMdHZkuLht2vWcjt0uD_5gR33gvMhfXr6w,664
2
2
  ngpt/__main__.py,sha256=j3eFYPOtCCFBOGh7NK5IWEnADnTMMSEB9GLyIDoW724,66
3
3
  ngpt/client.py,sha256=XjpA2UnvrRvzk6_DzVEddUTzoPlF8koQ-cZURpHoT7c,9041
4
4
  ngpt/cli/__init__.py,sha256=hebbDSMGiOd43YNnQP67uzr67Ue6rZPwm2czynr5iZY,43
5
- ngpt/cli/args.py,sha256=Vih8fBectyHHr2G8q3Kl2lflo_yFbB0ory55MZv1dEI,15048
5
+ ngpt/cli/args.py,sha256=tHx5CwSzmynbdPV5D-ly3Hs7OInZXjrvnNodtW_Eypk,15048
6
6
  ngpt/cli/config_manager.py,sha256=NQQcWnjUppAAd0s0p9YAf8EyKS1ex5-0EB4DvKdB4dk,3662
7
7
  ngpt/cli/formatters.py,sha256=HBYGlx_7eoAKyzfy0Vq5L0yn8yVKjngqYBukMmXCcz0,9401
8
8
  ngpt/cli/main.py,sha256=36mi8uYDcl56IhTkt-TJTRRhwHeF157xMAYgufLRAMo,29256
@@ -23,8 +23,8 @@ ngpt/utils/config.py,sha256=wsArA4osnh8fKqOvtsPqqBxAz3DpdjtaWUFaRtnUdyc,10452
23
23
  ngpt/utils/log.py,sha256=f1jg2iFo35PAmsarH8FVL_62plq4VXH0Mu2QiP6RJGw,15934
24
24
  ngpt/utils/pipe.py,sha256=qRHF-Ma7bbU0cOcb1Yhe4S-kBavivtnnvLA3EYS4FY4,2162
25
25
  ngpt/utils/web_search.py,sha256=w5ke4KJMRxq7r5jtbUXvspja6XhjoPZloVkZ0IvBXIE,30731
26
- ngpt-3.11.2.dist-info/METADATA,sha256=U5gICkaY4PxSgOJQdgnXlWpF0RWDo_XF7MNB3aoN2Ko,31332
27
- ngpt-3.11.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
- ngpt-3.11.2.dist-info/entry_points.txt,sha256=SqAAvLhMrsEpkIr4YFRdUeyuXQ9o0IBCeYgE6AVojoI,44
29
- ngpt-3.11.2.dist-info/licenses/LICENSE,sha256=mQkpWoADxbHqE0HRefYLJdm7OpdrXBr3vNv5bZ8w72M,1065
30
- ngpt-3.11.2.dist-info/RECORD,,
26
+ ngpt-3.11.3.dist-info/METADATA,sha256=V8jJuKwIMdwPM3PMxTuPhPldJJH-4IegwcIgx-NqBeU,31332
27
+ ngpt-3.11.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
28
+ ngpt-3.11.3.dist-info/entry_points.txt,sha256=SqAAvLhMrsEpkIr4YFRdUeyuXQ9o0IBCeYgE6AVojoI,44
29
+ ngpt-3.11.3.dist-info/licenses/LICENSE,sha256=mQkpWoADxbHqE0HRefYLJdm7OpdrXBr3vNv5bZ8w72M,1065
30
+ ngpt-3.11.3.dist-info/RECORD,,
File without changes