ngpt 3.1.0__tar.gz → 3.1.1__tar.gz

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.
Files changed (60) hide show
  1. {ngpt-3.1.0 → ngpt-3.1.1}/PKG-INFO +1 -1
  2. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/main.py +3 -3
  3. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/utils/config.py +7 -6
  4. {ngpt-3.1.0 → ngpt-3.1.1}/pyproject.toml +1 -1
  5. {ngpt-3.1.0 → ngpt-3.1.1}/uv.lock +1 -1
  6. {ngpt-3.1.0 → ngpt-3.1.1}/.github/workflows/aur-publish.yml +0 -0
  7. {ngpt-3.1.0 → ngpt-3.1.1}/.github/workflows/python-publish.yml +0 -0
  8. {ngpt-3.1.0 → ngpt-3.1.1}/.gitignore +0 -0
  9. {ngpt-3.1.0 → ngpt-3.1.1}/.python-version +0 -0
  10. {ngpt-3.1.0 → ngpt-3.1.1}/COMMIT_GUIDELINES.md +0 -0
  11. {ngpt-3.1.0 → ngpt-3.1.1}/CONTRIBUTING.md +0 -0
  12. {ngpt-3.1.0 → ngpt-3.1.1}/LICENSE +0 -0
  13. {ngpt-3.1.0 → ngpt-3.1.1}/PKGBUILD +0 -0
  14. {ngpt-3.1.0 → ngpt-3.1.1}/README.md +0 -0
  15. {ngpt-3.1.0 → ngpt-3.1.1}/docs/CONTRIBUTING.md +0 -0
  16. {ngpt-3.1.0 → ngpt-3.1.1}/docs/LICENSE.md +0 -0
  17. {ngpt-3.1.0 → ngpt-3.1.1}/docs/README.md +0 -0
  18. {ngpt-3.1.0 → ngpt-3.1.1}/docs/_config.yml +0 -0
  19. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/README.md +0 -0
  20. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/cli.md +0 -0
  21. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/cli_config.md +0 -0
  22. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/client.md +0 -0
  23. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/config.md +0 -0
  24. {ngpt-3.1.0 → ngpt-3.1.1}/docs/api/logging.md +0 -0
  25. {ngpt-3.1.0 → ngpt-3.1.1}/docs/assets/css/style.scss +0 -0
  26. {ngpt-3.1.0 → ngpt-3.1.1}/docs/configuration.md +0 -0
  27. {ngpt-3.1.0 → ngpt-3.1.1}/docs/examples/README.md +0 -0
  28. {ngpt-3.1.0 → ngpt-3.1.1}/docs/examples/advanced.md +0 -0
  29. {ngpt-3.1.0 → ngpt-3.1.1}/docs/examples/basic.md +0 -0
  30. {ngpt-3.1.0 → ngpt-3.1.1}/docs/examples/cli_components.md +0 -0
  31. {ngpt-3.1.0 → ngpt-3.1.1}/docs/examples/integrations.md +0 -0
  32. {ngpt-3.1.0 → ngpt-3.1.1}/docs/installation.md +0 -0
  33. {ngpt-3.1.0 → ngpt-3.1.1}/docs/overview.md +0 -0
  34. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/README.md +0 -0
  35. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/cli_config.md +0 -0
  36. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/cli_framework.md +0 -0
  37. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/cli_usage.md +0 -0
  38. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/gitcommsg.md +0 -0
  39. {ngpt-3.1.0 → ngpt-3.1.1}/docs/usage/library_usage.md +0 -0
  40. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/__init__.py +0 -0
  41. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/__main__.py +0 -0
  42. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/__init__.py +0 -0
  43. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/args.py +0 -0
  44. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/config_manager.py +0 -0
  45. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/formatters.py +0 -0
  46. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/interactive.py +0 -0
  47. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/__init__.py +0 -0
  48. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/chat.py +0 -0
  49. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/code.py +0 -0
  50. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/gitcommsg.py +0 -0
  51. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/rewrite.py +0 -0
  52. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/shell.py +0 -0
  53. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/modes/text.py +0 -0
  54. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/renderers.py +0 -0
  55. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/cli/ui.py +0 -0
  56. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/client.py +0 -0
  57. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/utils/__init__.py +0 -0
  58. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/utils/cli_config.py +0 -0
  59. {ngpt-3.1.0 → ngpt-3.1.1}/ngpt/utils/log.py +0 -0
  60. {ngpt-3.1.0 → ngpt-3.1.1}/wiki.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ngpt
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: Swiss army knife for LLMs: powerful CLI, interactive chatbot, and flexible Python library. Works with OpenAI, Ollama, Groq, Claude, Gemini, and any OpenAI-compatible API.
5
5
  Project-URL: Homepage, https://github.com/nazdridoy/ngpt
6
6
  Project-URL: Repository, https://github.com/nazdridoy/ngpt
@@ -297,12 +297,12 @@ def main():
297
297
  elif len(matching_configs) > 1:
298
298
  print(f"Multiple configurations found for provider '{effective_provider}':")
299
299
  for i, idx in enumerate(matching_configs):
300
- print(f" [{i}] Index {idx}: {configs[idx].get('model', 'Unknown model')}")
300
+ print(f" Choice [{i+1}] Config #{idx}: {configs[idx].get('model', 'Unknown model')}")
301
301
 
302
302
  try:
303
303
  choice = input("Choose a configuration to remove (or press Enter to cancel): ")
304
- if choice and choice.isdigit() and 0 <= int(choice) < len(matching_configs):
305
- config_index = matching_configs[int(choice)]
304
+ if choice and choice.isdigit() and 1 <= int(choice) <= len(matching_configs):
305
+ config_index = matching_configs[int(choice)-1]
306
306
  else:
307
307
  print("Configuration removal cancelled.")
308
308
  return
@@ -172,18 +172,19 @@ def load_config(custom_path: Optional[str] = None, config_index: int = 0, provid
172
172
  elif len(matching_configs) > 1:
173
173
  print(f"Warning: Multiple configurations found for provider '{provider}'.")
174
174
  for i, idx in enumerate(matching_configs):
175
- print(f" [{i}] Index {idx}: {configs[idx].get('model', 'Unknown model')}")
175
+ print(f" Choice [{i+1}] Config #{idx}: {configs[idx].get('model', 'Unknown model')}")
176
176
 
177
177
  try:
178
- choice = input("Choose a configuration (or press Enter for the first one): ")
179
- if choice and choice.isdigit() and 0 <= int(choice) < len(matching_configs):
180
- config_index = matching_configs[int(choice)]
178
+ choice = input("Enter choice number (or press Enter for the first one): ")
179
+ if choice and choice.isdigit() and 1 <= int(choice) <= len(matching_configs):
180
+ config_index = matching_configs[int(choice)-1]
181
+ print(f"Selected configuration #{config_index}.")
181
182
  else:
182
183
  config_index = matching_configs[0]
183
- print(f"Using first matching configuration (index {config_index}).")
184
+ print(f"Using first matching configuration (config #{config_index}).")
184
185
  except (ValueError, IndexError, KeyboardInterrupt):
185
186
  config_index = matching_configs[0]
186
- print(f"Using first matching configuration (index {config_index}).")
187
+ print(f"Using first matching configuration (config #{config_index}).")
187
188
  else:
188
189
  config_index = matching_configs[0]
189
190
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ngpt"
3
- version = "3.1.0"
3
+ version = "3.1.1"
4
4
  description = "Swiss army knife for LLMs: powerful CLI, interactive chatbot, and flexible Python library. Works with OpenAI, Ollama, Groq, Claude, Gemini, and any OpenAI-compatible API."
5
5
  authors = [
6
6
  {name = "nazDridoy", email = "nazdridoy399@gmail.com"},
@@ -134,7 +134,7 @@ wheels = [
134
134
 
135
135
  [[package]]
136
136
  name = "ngpt"
137
- version = "3.1.0"
137
+ version = "3.1.1"
138
138
  source = { editable = "." }
139
139
  dependencies = [
140
140
  { name = "prompt-toolkit" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes