zapgpt 3.0.0__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.
zapgpt-3.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Amit Agarwal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,27 @@
1
+ include README.md
2
+ include LICENSE
3
+ include requirements.txt
4
+ recursive-include zapgpt/prompts *.json
5
+ include zapgpt/default_pricing.json
6
+
7
+ # Exclude development and launch materials
8
+ global-exclude __pycache__
9
+ global-exclude *.py[co]
10
+ global-exclude .DS_Store
11
+ exclude docs/launch-materials/*
12
+ exclude COMMIT_MESSAGE.md
13
+ exclude BLOG_POST.md
14
+ exclude SOCIAL_MEDIA_POSTS.md
15
+ exclude PYPI_PUBLISHING_GUIDE.md
16
+ exclude LAUNCH_CHECKLIST.md
17
+ exclude UV_RECOMMENDATION.md
18
+ exclude test_*.py
19
+ exclude final_test.py
20
+ exclude test_prompts.py
21
+ exclude build_and_upload.py
22
+ exclude test_env/
23
+ exclude dev-scripts/
24
+ exclude .github/
25
+ prune docs/launch-materials
26
+ prune test_env
27
+ prune dev-scripts
zapgpt-3.0.0/PKG-INFO ADDED
@@ -0,0 +1,472 @@
1
+ Metadata-Version: 2.4
2
+ Name: zapgpt
3
+ Version: 3.0.0
4
+ Summary: A command-line tool for interacting with various LLM providers
5
+ Author-email: Amit Agarwal <amit@example.com>
6
+ Maintainer-email: Amit Agarwal <amit@example.com>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2025 Amit Agarwal
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ Project-URL: Homepage, https://github.com/yourusername/zapgpt
30
+ Project-URL: Repository, https://github.com/yourusername/zapgpt
31
+ Project-URL: Issues, https://github.com/yourusername/zapgpt/issues
32
+ Project-URL: Documentation, https://github.com/yourusername/zapgpt#readme
33
+ Keywords: ai,llm,gpt,openai,anthropic,mistral,cli,chat,terminal
34
+ Classifier: Development Status :: 5 - Production/Stable
35
+ Classifier: Environment :: Console
36
+ Classifier: Intended Audience :: Developers
37
+ Classifier: Intended Audience :: End Users/Desktop
38
+ Classifier: Intended Audience :: System Administrators
39
+ Classifier: License :: OSI Approved :: MIT License
40
+ Classifier: Operating System :: OS Independent
41
+ Classifier: Programming Language :: Python :: 3
42
+ Classifier: Programming Language :: Python :: 3.8
43
+ Classifier: Programming Language :: Python :: 3.9
44
+ Classifier: Programming Language :: Python :: 3.10
45
+ Classifier: Programming Language :: Python :: 3.11
46
+ Classifier: Programming Language :: Python :: 3.12
47
+ Classifier: Programming Language :: Python :: 3.13
48
+ Classifier: Topic :: Communications :: Chat
49
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
50
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
51
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
52
+ Classifier: Topic :: Terminals
53
+ Classifier: Topic :: Utilities
54
+ Requires-Python: >=3.8
55
+ Description-Content-Type: text/markdown
56
+ License-File: LICENSE
57
+ Requires-Dist: openai>=1.54.0
58
+ Requires-Dist: requests>=2.32.3
59
+ Requires-Dist: tabulate>=0.9.0
60
+ Requires-Dist: tiktoken>=0.8.0
61
+ Requires-Dist: rich>=13.9.4
62
+ Requires-Dist: pygments>=2.18.0
63
+ Requires-Dist: httpx>=0.28.1
64
+ Requires-Dist: rich-argparse>=1.7.1
65
+ Requires-Dist: importlib_resources>=6.4.5; python_version < "3.9"
66
+ Provides-Extra: dev
67
+ Requires-Dist: pytest>=7.0; extra == "dev"
68
+ Requires-Dist: pytest-cov>=4.0; extra == "dev"
69
+ Requires-Dist: pytest-mock>=3.10; extra == "dev"
70
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
71
+ Requires-Dist: mypy>=1.0; extra == "dev"
72
+ Requires-Dist: pre-commit>=3.0; extra == "dev"
73
+ Provides-Extra: test
74
+ Requires-Dist: pytest>=7.0; extra == "test"
75
+ Requires-Dist: pytest-cov>=4.0; extra == "test"
76
+ Requires-Dist: pytest-mock>=3.10; extra == "test"
77
+ Dynamic: license-file
78
+
79
+ # zapgpt
80
+
81
+ A minimalist CLI tool to chat with LLMs from your terminal. Supports multiple providers including OpenAI, OpenRouter, Together, Replicate, DeepInfra, and GitHub AI.
82
+
83
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•—
84
+ โ•šโ•โ•โ–ˆโ–ˆโ–ˆโ•”โ•โ–ˆโ–ˆโ•”โ•โ•โ–ˆโ–ˆโ•—โ–ˆโ–ˆโ•”โ•โ•โ–ˆโ–ˆโ•—โ–ˆโ–ˆโ•”โ•โ•โ•โ•โ• โ–ˆโ–ˆโ•”โ•โ•โ–ˆโ–ˆโ•—โ•šโ•โ•โ–ˆโ–ˆโ•”โ•โ•โ•
85
+ โ–ˆโ–ˆโ–ˆโ•”โ• โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•”โ•โ–ˆโ–ˆโ•‘ โ–ˆโ–ˆโ–ˆโ•—โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•”โ• โ–ˆโ–ˆโ•‘
86
+ โ–ˆโ–ˆโ–ˆโ•”โ• โ–ˆโ–ˆโ•”โ•โ•โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•”โ•โ•โ•โ• โ–ˆโ–ˆโ•‘ โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•”โ•โ•โ•โ• โ–ˆโ–ˆโ•‘
87
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•—โ–ˆโ–ˆโ•‘ โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•‘ โ•šโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•”โ•โ–ˆโ–ˆโ•‘ โ–ˆโ–ˆโ•‘
88
+ โ•šโ•โ•โ•โ•โ•โ•โ•โ•šโ•โ• โ•šโ•โ•โ•šโ•โ• โ•šโ•โ•โ•โ•โ•โ• โ•šโ•โ• โ•šโ•โ•
89
+ GPT on the CLI. Like a boss.
90
+
91
+ `zapgpt` is a minimalist CLI tool to chat with LLMs from your terminal. No bloated UI, just fast raw GPT magic, straight from the shell. With pre-cooked system prompt for Ethical hacking, code, file attachment and a good default prompt and usage tracking, I hope you find it useful. No extra features or frills. Modify it as you need it with a simple one file script.
92
+
93
+ Updated to version v2.
94
+
95
+ [![Introduction](https://i.ytimg.com/vi/hpiVtj_gSD4/hqdefault.jpg)](https://www.youtube.com/watch?v=hpiVtj_gSD4)
96
+
97
+ ## ๐Ÿ’พ Requirements
98
+
99
+ * Python 3.8+
100
+ * `uv` (recommended - blazingly fast Python package manager)
101
+ * pip (alternative to uv)
102
+
103
+ ## ๐Ÿš€ Installation
104
+
105
+ ### Option 1: Install with `uv` (โšก Recommended)
106
+
107
+ ```bash
108
+ uv tool install zapgpt
109
+ ```
110
+
111
+ > **Why uv?** `uv` is blazingly fast and handles CLI tools perfectly. It installs zapgpt globally and manages dependencies automatically.
112
+
113
+ **Don't have uv?** Install it first:
114
+ ```bash
115
+ # macOS/Linux
116
+ curl -LsSf https://astral.sh/uv/install.sh | sh
117
+
118
+ # Windows
119
+ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
120
+
121
+ # Or with pip
122
+ pip install uv
123
+ ```
124
+
125
+ ### Option 2: Install from PyPI
126
+
127
+ ```bash
128
+ uv tool install zapgpt
129
+ ```
130
+
131
+ ### Option 3: Development Installation
132
+
133
+ **With uv (recommended):**
134
+ ```bash
135
+ git clone https://github.com/yourusername/zapgpt.git
136
+ cd zapgpt
137
+ uv sync
138
+ uv run zapgpt "test"
139
+ ```
140
+
141
+ **With pip:**
142
+ ```bash
143
+ git clone https://github.com/yourusername/zapgpt.git
144
+ cd zapgpt
145
+ pip install -e .
146
+ ```
147
+
148
+ ### Option 4: From Source (Classic method)
149
+
150
+ ```bash
151
+ git clone https://github.com/yourusername/zapgpt.git
152
+ cd zapgpt
153
+ python3 -m venv .venv
154
+ source .venv/bin/activate
155
+ pip install -r requirements.txt
156
+ ```
157
+
158
+ ## ๐Ÿ”‘ Environment Variables
159
+
160
+ ZapGPT only requires the API key for the provider you're using. Set the appropriate environment variable:
161
+
162
+ | Provider | Environment Variable | Get API Key |
163
+ |----------|---------------------|-------------|
164
+ | OpenAI | `OPENAI_API_KEY` | [platform.openai.com](https://platform.openai.com/account/api-keys) |
165
+ | OpenRouter | `OPENROUTER_KEY` | [openrouter.ai](https://openrouter.ai/keys) |
166
+ | Together | `TOGETHER_API_KEY` | [api.together.xyz](https://api.together.xyz/settings/api-keys) |
167
+ | Replicate | `REPLICATE_API_TOKEN` | [replicate.com](https://replicate.com/account/api-tokens) |
168
+ | DeepInfra | `DEEPINFRA_API_TOKEN` | [deepinfra.com](https://deepinfra.com/dash/api_keys) |
169
+ | GitHub | `GITHUB_KEY` | [github.com](https://github.com/settings/tokens) |
170
+
171
+ **Example:**
172
+ ```bash
173
+ # For OpenAI (default provider)
174
+ export OPENAI_API_KEY="your-openai-api-key-here"
175
+
176
+ # For OpenRouter
177
+ export OPENROUTER_KEY="your-openrouter-key-here"
178
+ ```
179
+
180
+ ## ๐Ÿง  Usage
181
+
182
+ After installation, you can use `zapgpt` directly from the command line:
183
+
184
+ ```bash
185
+ # Basic usage (uses OpenAI by default)
186
+ zapgpt "What's the meaning of life?"
187
+
188
+ # Use different providers
189
+ zapgpt --provider openrouter "Explain quantum computing"
190
+ zapgpt --provider together "Write a Python function"
191
+ zapgpt --provider github "Debug this code"
192
+
193
+ # Use specific models
194
+ zapgpt -m gpt-4o "Complex reasoning task"
195
+ zapgpt --provider openrouter -m anthropic/claude-3.5-sonnet "Creative writing"
196
+ ```
197
+
198
+ ### Interactive Mode
199
+
200
+ ```bash
201
+ zapgpt # Starts interactive mode
202
+ ```
203
+
204
+ ### Development Usage
205
+
206
+ **With uv:**
207
+ ```bash
208
+ uv run zapgpt "Your question here"
209
+ ```
210
+
211
+ **With Python:**
212
+ ```bash
213
+ python -m zapgpt "Your question here"
214
+ # or
215
+ python zapgpt/main.py "Your question here"
216
+ ```
217
+
218
+ ### Quiet Mode (for Scripting)
219
+
220
+ ```bash
221
+ # Suppress all output except the LLM response
222
+ zapgpt --quiet "What is the capital of France?"
223
+
224
+ # Perfect for shell scripts
225
+ RESPONSE=$(zapgpt -q "Summarize this in one word: Machine Learning")
226
+ echo "Result: $RESPONSE"
227
+ ```
228
+
229
+ ### File Input (for Automation)
230
+
231
+ ```bash
232
+ # Send file contents to LLM
233
+ zapgpt --file /path/to/file.txt "Analyze this log file"
234
+
235
+ # Analyze command output
236
+ nmap -sV target.com > scan_results.txt
237
+ zapgpt -f scan_results.txt --use-prompt vuln_assessment "Analyze these scan results"
238
+
239
+ # Process multiple files
240
+ for file in *.log; do
241
+ zapgpt -q -f "$file" "Summarize security events" >> summary.txt
242
+ done
243
+ ```
244
+
245
+ ### Automation Examples
246
+
247
+ ```bash
248
+ # Penetration Testing Agent
249
+ #!/bin/bash
250
+ TARGET="example.com"
251
+
252
+ # 1. Reconnaissance
253
+ nmap -sV $TARGET > nmap_results.txt
254
+ RESPONSE=$(zapgpt -q -f nmap_results.txt --use-prompt vuln_assessment "Identify potential vulnerabilities")
255
+ echo "Vulnerabilities found: $RESPONSE"
256
+
257
+ # 2. Web Analysis
258
+ nikto -h $TARGET > nikto_results.txt
259
+ zapgpt -f nikto_results.txt "Prioritize these web vulnerabilities" > web_analysis.txt
260
+
261
+ # 3. Generate Report
262
+ zapgpt -q "Create executive summary" -f web_analysis.txt > final_report.md
263
+ ```
264
+
265
+ ```bash
266
+ # Log Analysis Agent
267
+ #!/bin/bash
268
+ # Monitor and analyze system logs
269
+ tail -n 100 /var/log/auth.log > recent_auth.log
270
+ ALERT=$(zapgpt -q -f recent_auth.log "Detect suspicious login attempts")
271
+
272
+ if [[ $ALERT == *"suspicious"* ]]; then
273
+ echo "Security Alert: $ALERT" | mail -s "Security Alert" admin@company.com
274
+ fi
275
+ ```
276
+
277
+ ```bash
278
+ # Code Review Agent
279
+ #!/bin/bash
280
+ # Automated code review
281
+ for file in src/*.py; do
282
+ REVIEW=$(zapgpt -q -f "$file" --use-prompt coding "Review this code for security issues")
283
+ echo "File: $file" >> code_review.md
284
+ echo "Review: $REVIEW" >> code_review.md
285
+ echo "---" >> code_review.md
286
+ done
287
+ ```
288
+
289
+ ## ๐Ÿ Programmatic API
290
+
291
+ ZapGPT can be imported and used in your Python scripts:
292
+
293
+ ### Basic Usage
294
+
295
+ ```python
296
+ from zapgpt import query_llm
297
+
298
+ # Simple query
299
+ response = query_llm("What is Python?", provider="openai")
300
+ print(response)
301
+
302
+ # With different provider
303
+ response = query_llm(
304
+ "Explain quantum computing",
305
+ provider="openrouter",
306
+ model="anthropic/claude-3.5-sonnet"
307
+ )
308
+ ```
309
+
310
+ ### Advanced Usage
311
+
312
+ ```python
313
+ from zapgpt import query_llm
314
+
315
+ # Use predefined prompts
316
+ code_review = query_llm(
317
+ "Review this Python function: def hello(): print('hi')",
318
+ provider="openai",
319
+ use_prompt="coding",
320
+ model="gpt-4o"
321
+ )
322
+
323
+ # Custom system prompt
324
+ response = query_llm(
325
+ "Write a haiku about programming",
326
+ provider="openai",
327
+ system_prompt="You are a poetic programming mentor.",
328
+ temperature=0.8
329
+ )
330
+
331
+ # Error handling
332
+ try:
333
+ response = query_llm("Hello", provider="openai")
334
+ except EnvironmentError as e:
335
+ print(f"Missing API key: {e}")
336
+ except ValueError as e:
337
+ print(f"Invalid provider: {e}")
338
+ ```
339
+
340
+ ### API Parameters
341
+
342
+ | Parameter | Type | Default | Description |
343
+ |-----------|------|---------|-------------|
344
+ | `prompt` | str | Required | Your question/prompt |
345
+ | `provider` | str | "openai" | LLM provider to use |
346
+ | `model` | str | None | Specific model (overrides prompt default) |
347
+ | `system_prompt` | str | None | Custom system prompt |
348
+ | `use_prompt` | str | None | Use predefined prompt template |
349
+ | `temperature` | float | 0.3 | Response randomness (0.0-1.0) |
350
+ | `max_tokens` | int | 4096 | Maximum response length |
351
+ | `quiet` | bool | True | Suppress logging output |
352
+
353
+ ### Environment Variables
354
+
355
+ Set the appropriate API key for your chosen provider:
356
+
357
+ ```python
358
+ import os
359
+ os.environ['OPENAI_API_KEY'] = 'your-key-here'
360
+
361
+ from zapgpt import query_llm
362
+ response = query_llm("Hello world", provider="openai")
363
+ ```
364
+
365
+ ### Python Automation Examples
366
+
367
+ ```python
368
+ # Penetration Testing Automation
369
+ import subprocess
370
+ from zapgpt import query_llm
371
+
372
+ def analyze_nmap_scan(target):
373
+ # Run nmap scan
374
+ result = subprocess.run(['nmap', '-sV', target], capture_output=True, text=True)
375
+
376
+ # Analyze with LLM
377
+ analysis = query_llm(
378
+ f"Analyze this nmap scan: {result.stdout}",
379
+ provider="openai",
380
+ use_prompt="vuln_assessment"
381
+ )
382
+ return analysis
383
+
384
+ vulns = analyze_nmap_scan("example.com")
385
+ print(f"Vulnerabilities: {vulns}")
386
+ ```
387
+
388
+ ```python
389
+ # Log Analysis Agent
390
+ from zapgpt import query_llm
391
+
392
+ def monitor_logs(log_file):
393
+ with open(log_file, 'r') as f:
394
+ logs = f.read()
395
+
396
+ alert = query_llm(
397
+ f"Detect suspicious activity: {logs}",
398
+ provider="openai",
399
+ quiet=True
400
+ )
401
+
402
+ if "suspicious" in alert.lower():
403
+ print(f"ALERT: {alert}")
404
+ return True
405
+ return False
406
+
407
+ # Monitor auth logs
408
+ monitor_logs('/var/log/auth.log')
409
+ ```
410
+
411
+ [![Using zapgpt for pentesting on Kali](https://i.ytimg.com/vi/vDTwIsEUheE/hqdefault.jpg)](https://www.youtube.com/watch?v=hpiVtj_gSD4)
412
+
413
+
414
+ ## ๐Ÿ› ๏ธ Features
415
+
416
+ * Context-aware prompts (memory)
417
+ * Easily customizable for your LLM endpoints
418
+ * Show your current usage.
419
+ * Optional pre-cooked system prompts.
420
+
421
+ ## ๐Ÿ“ Configuration & Prompts
422
+
423
+ ZapGPT stores its configuration and prompts in `~/.config/zapgpt/`:
424
+
425
+ - **Configuration directory**: `~/.config/zapgpt/`
426
+ - **Prompts directory**: `~/.config/zapgpt/prompts/`
427
+ - **Database file**: `~/.config/zapgpt/gpt_usage.db`
428
+
429
+ ### Managing Prompts
430
+
431
+ On first run, zapgpt automatically copies default prompts to your config directory. You can:
432
+
433
+ - **View config location**: `zapgpt --config`
434
+ - **List available prompts**: `zapgpt --list-prompt`
435
+ - **Use a specific prompt**: `zapgpt --use-prompt coding "Your question"`
436
+ - **Add custom prompts**: Create `.json` files in `~/.config/zapgpt/prompts/`
437
+ - **Modify existing prompts**: Edit the `.json` files in your prompts directory
438
+
439
+ ### Default Prompts Included
440
+
441
+ - `coding` - Programming and development assistance
442
+ - `cyber_awareness` - Cybersecurity guidance
443
+ - `vuln_assessment` - Vulnerability assessment help
444
+ - `kalihacking` - Kali Linux and penetration testing
445
+ - `prompting` - Prompt engineering assistance
446
+ - `powershell` - PowerShell scripting help
447
+ - `default` - General purpose prompt
448
+ - `common_base` - Base prompt added to all others
449
+
450
+ ### v2 Features
451
+
452
+ * Script now uses class and is much more well organized.
453
+ * Prompts are not hard-coded in the script. You can simply drop in any new
454
+ system prompt in prompts folder and use it.
455
+ * โœ… **Multi-Provider Support**: Supports OpenAI, OpenRouter, Together, Replicate, DeepInfra, and GitHub AI
456
+ * โœ… **Easy Provider Switching**: Use `--provider` flag to switch between providers
457
+ * โœ… **Model Selection**: Override model with `-m` flag for any provider
458
+
459
+ ## ๐Ÿงช Example
460
+
461
+ ```bash
462
+ $ zapgpt "Summarize the Unix philosophy."
463
+ > Small is beautiful. Do one thing well. Write programs that work together.
464
+ ```
465
+
466
+ ## ๐Ÿ™Œ Credits
467
+
468
+ Built with โค๏ธ by [Amit Agarwal aka](https://github.com/raj77in) โ€” because LLMs deserve a good CLI.
469
+
470
+ ## ๐Ÿง™โ€โ™‚๏ธ License
471
+
472
+ MIT โ€” do whatever, just don't blame me if it becomes sentient.