ngpt 2.5.1__py3-none-any.whl → 2.6.0__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.py +6 -4
- {ngpt-2.5.1.dist-info → ngpt-2.6.0.dist-info}/METADATA +15 -4
- ngpt-2.6.0.dist-info/RECORD +9 -0
- ngpt-2.5.1.dist-info/RECORD +0 -9
- {ngpt-2.5.1.dist-info → ngpt-2.6.0.dist-info}/WHEEL +0 -0
- {ngpt-2.5.1.dist-info → ngpt-2.6.0.dist-info}/entry_points.txt +0 -0
- {ngpt-2.5.1.dist-info → ngpt-2.6.0.dist-info}/licenses/LICENSE +0 -0
ngpt/cli.py
CHANGED
@@ -115,10 +115,11 @@ def show_available_renderers():
|
|
115
115
|
if HAS_RICH:
|
116
116
|
print(f" {COLORS['green']}✓ Rich{COLORS['reset']} - Python library for terminal formatting (Recommended)")
|
117
117
|
else:
|
118
|
-
print(f" {COLORS['yellow']}✗ Rich{COLORS['reset']} - Not installed (pip install rich)")
|
118
|
+
print(f" {COLORS['yellow']}✗ Rich{COLORS['reset']} - Not installed (pip install \"ngpt[full]\" or pip install rich)")
|
119
119
|
|
120
120
|
if not HAS_GLOW and not HAS_RICH:
|
121
121
|
print(f"\n{COLORS['yellow']}To enable prettified markdown output, install one of the above renderers.{COLORS['reset']}")
|
122
|
+
print(f"{COLORS['yellow']}For Rich: pip install \"ngpt[full]\" or pip install rich{COLORS['reset']}")
|
122
123
|
else:
|
123
124
|
renderers = []
|
124
125
|
if HAS_RICH:
|
@@ -148,11 +149,11 @@ def warn_if_no_markdown_renderer(renderer='auto'):
|
|
148
149
|
|
149
150
|
if renderer == 'auto':
|
150
151
|
print(f"{COLORS['yellow']}Warning: No markdown rendering library available.{COLORS['reset']}")
|
151
|
-
print(f"{COLORS['yellow']}Install
|
152
|
+
print(f"{COLORS['yellow']}Install with: pip install \"ngpt[full]\"{COLORS['reset']}")
|
152
153
|
print(f"{COLORS['yellow']}Or install 'glow' from https://github.com/charmbracelet/glow{COLORS['reset']}")
|
153
154
|
elif renderer == 'rich':
|
154
155
|
print(f"{COLORS['yellow']}Warning: Rich is not available.{COLORS['reset']}")
|
155
|
-
print(f"{COLORS['yellow']}Install with: pip install rich{COLORS['reset']}")
|
156
|
+
print(f"{COLORS['yellow']}Install with: pip install \"ngpt[full]\" or pip install rich{COLORS['reset']}")
|
156
157
|
elif renderer == 'glow':
|
157
158
|
print(f"{COLORS['yellow']}Warning: Glow is not available.{COLORS['reset']}")
|
158
159
|
print(f"{COLORS['yellow']}Install from https://github.com/charmbracelet/glow{COLORS['reset']}")
|
@@ -219,7 +220,8 @@ def prettify_markdown(text, renderer='auto'):
|
|
219
220
|
# Use rich for rendering
|
220
221
|
elif renderer == 'rich':
|
221
222
|
if not HAS_RICH:
|
222
|
-
print(f"{COLORS['yellow']}Warning: Rich is not available.
|
223
|
+
print(f"{COLORS['yellow']}Warning: Rich is not available.{COLORS['reset']}")
|
224
|
+
print(f"{COLORS['yellow']}Install with: pip install \"ngpt[full]\" or pip install rich{COLORS['reset']}")
|
223
225
|
# Fall back to glow if available
|
224
226
|
if HAS_GLOW:
|
225
227
|
print(f"{COLORS['yellow']}Falling back to Glow renderer.{COLORS['reset']}")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ngpt
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.6.0
|
4
4
|
Summary: A lightweight Python CLI and library for interacting with OpenAI-compatible APIs, supporting both official and self-hosted LLM endpoints.
|
5
5
|
Project-URL: Homepage, https://github.com/nazdridoy/ngpt
|
6
6
|
Project-URL: Repository, https://github.com/nazdridoy/ngpt
|
@@ -28,10 +28,10 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
28
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
29
29
|
Classifier: Topic :: Utilities
|
30
30
|
Requires-Python: >=3.8
|
31
|
-
Requires-Dist: prompt-toolkit>=3.0.0
|
32
31
|
Requires-Dist: requests>=2.31.0
|
33
|
-
Provides-Extra:
|
34
|
-
Requires-Dist:
|
32
|
+
Provides-Extra: full
|
33
|
+
Requires-Dist: prompt-toolkit>=3.0.0; extra == 'full'
|
34
|
+
Requires-Dist: rich>=10.0.0; extra == 'full'
|
35
35
|
Description-Content-Type: text/markdown
|
36
36
|
|
37
37
|
# nGPT
|
@@ -66,6 +66,9 @@ A lightweight Python CLI and library for interacting with OpenAI-compatible APIs
|
|
66
66
|
# Install
|
67
67
|
pip install ngpt
|
68
68
|
|
69
|
+
# Install with additional features
|
70
|
+
pip install "ngpt[full]"
|
71
|
+
|
69
72
|
# Chat with default settings
|
70
73
|
ngpt "Tell me about quantum computing"
|
71
74
|
|
@@ -136,11 +139,19 @@ Key documentation sections:
|
|
136
139
|
## Installation
|
137
140
|
|
138
141
|
```bash
|
142
|
+
# Basic installation (minimal dependencies)
|
139
143
|
pip install ngpt
|
144
|
+
|
145
|
+
# Full installation with all features (recommended)
|
146
|
+
pip install "ngpt[full]"
|
140
147
|
```
|
141
148
|
|
142
149
|
Requires Python 3.8 or newer.
|
143
150
|
|
151
|
+
The full installation includes:
|
152
|
+
- Enhanced markdown rendering with syntax highlighting
|
153
|
+
- Improved interactive input experience with multiline editing
|
154
|
+
|
144
155
|
For detailed installation instructions, see the [Installation Guide](https://nazdridoy.github.io/ngpt/installation.html).
|
145
156
|
|
146
157
|
## Usage
|
@@ -0,0 +1,9 @@
|
|
1
|
+
ngpt/__init__.py,sha256=ehInP9w0MZlS1vZ1g6Cm4YE1ftmgF72CnEddQ3Le9n4,368
|
2
|
+
ngpt/cli.py,sha256=4PN0iHSxwhifg3x5MDlwDg-ZMiZIoLYGBHqBROyo6e0,60347
|
3
|
+
ngpt/client.py,sha256=QyPw93oJrMnStOzRqK6AldVqHATH1QgdbJ3vfkFjUsQ,14152
|
4
|
+
ngpt/config.py,sha256=WYOk_b1eiYjo6hpV3pfXr2RjqhOnmKqwZwKid1T41I4,10363
|
5
|
+
ngpt-2.6.0.dist-info/METADATA,sha256=RDCx6SGlvdZ0LlifLxBagznn9pP5f2kBQ564UO7HZvk,15000
|
6
|
+
ngpt-2.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
7
|
+
ngpt-2.6.0.dist-info/entry_points.txt,sha256=1cnAMujyy34DlOahrJg19lePSnb08bLbkUs_kVerqdk,39
|
8
|
+
ngpt-2.6.0.dist-info/licenses/LICENSE,sha256=mQkpWoADxbHqE0HRefYLJdm7OpdrXBr3vNv5bZ8w72M,1065
|
9
|
+
ngpt-2.6.0.dist-info/RECORD,,
|
ngpt-2.5.1.dist-info/RECORD
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
ngpt/__init__.py,sha256=ehInP9w0MZlS1vZ1g6Cm4YE1ftmgF72CnEddQ3Le9n4,368
|
2
|
-
ngpt/cli.py,sha256=IiBVelrzhrRDu75B5wbf5GlCbBqgQXMh7tJ3Nk_WDsQ,60095
|
3
|
-
ngpt/client.py,sha256=QyPw93oJrMnStOzRqK6AldVqHATH1QgdbJ3vfkFjUsQ,14152
|
4
|
-
ngpt/config.py,sha256=WYOk_b1eiYjo6hpV3pfXr2RjqhOnmKqwZwKid1T41I4,10363
|
5
|
-
ngpt-2.5.1.dist-info/METADATA,sha256=wdJY5g_7LG2hvj5U3I_uY9Zho02lrqfolgj0G2Gjr0A,14657
|
6
|
-
ngpt-2.5.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
7
|
-
ngpt-2.5.1.dist-info/entry_points.txt,sha256=1cnAMujyy34DlOahrJg19lePSnb08bLbkUs_kVerqdk,39
|
8
|
-
ngpt-2.5.1.dist-info/licenses/LICENSE,sha256=mQkpWoADxbHqE0HRefYLJdm7OpdrXBr3vNv5bZ8w72M,1065
|
9
|
-
ngpt-2.5.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|