webscout 8.2.4__py3-none-any.whl → 8.2.6__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.

Potentially problematic release.


This version of webscout might be problematic. Click here for more details.

Files changed (110) hide show
  1. webscout/AIauto.py +112 -22
  2. webscout/AIutel.py +240 -344
  3. webscout/Extra/autocoder/autocoder.py +66 -5
  4. webscout/Extra/gguf.py +2 -0
  5. webscout/Provider/AISEARCH/scira_search.py +3 -5
  6. webscout/Provider/Aitopia.py +75 -51
  7. webscout/Provider/AllenAI.py +64 -67
  8. webscout/Provider/ChatGPTClone.py +33 -34
  9. webscout/Provider/ChatSandbox.py +342 -0
  10. webscout/Provider/Cloudflare.py +79 -32
  11. webscout/Provider/Deepinfra.py +69 -56
  12. webscout/Provider/ElectronHub.py +48 -39
  13. webscout/Provider/ExaChat.py +36 -20
  14. webscout/Provider/GPTWeb.py +24 -18
  15. webscout/Provider/GithubChat.py +52 -49
  16. webscout/Provider/GizAI.py +285 -0
  17. webscout/Provider/Glider.py +39 -28
  18. webscout/Provider/Groq.py +48 -20
  19. webscout/Provider/HeckAI.py +18 -36
  20. webscout/Provider/Jadve.py +30 -37
  21. webscout/Provider/LambdaChat.py +36 -59
  22. webscout/Provider/MCPCore.py +18 -21
  23. webscout/Provider/Marcus.py +23 -14
  24. webscout/Provider/Nemotron.py +218 -0
  25. webscout/Provider/Netwrck.py +35 -26
  26. webscout/Provider/OPENAI/__init__.py +1 -1
  27. webscout/Provider/OPENAI/exachat.py +4 -0
  28. webscout/Provider/OPENAI/scirachat.py +3 -4
  29. webscout/Provider/OPENAI/textpollinations.py +20 -22
  30. webscout/Provider/OPENAI/toolbaz.py +1 -0
  31. webscout/Provider/PI.py +22 -13
  32. webscout/Provider/StandardInput.py +42 -30
  33. webscout/Provider/TeachAnything.py +24 -12
  34. webscout/Provider/TextPollinationsAI.py +78 -76
  35. webscout/Provider/TwoAI.py +120 -88
  36. webscout/Provider/TypliAI.py +305 -0
  37. webscout/Provider/Venice.py +24 -22
  38. webscout/Provider/VercelAI.py +31 -12
  39. webscout/Provider/WiseCat.py +1 -1
  40. webscout/Provider/WrDoChat.py +370 -0
  41. webscout/Provider/__init__.py +11 -13
  42. webscout/Provider/ai4chat.py +5 -3
  43. webscout/Provider/akashgpt.py +59 -66
  44. webscout/Provider/asksteve.py +53 -44
  45. webscout/Provider/cerebras.py +77 -31
  46. webscout/Provider/chatglm.py +47 -37
  47. webscout/Provider/elmo.py +38 -32
  48. webscout/Provider/freeaichat.py +57 -43
  49. webscout/Provider/granite.py +24 -21
  50. webscout/Provider/hermes.py +27 -20
  51. webscout/Provider/learnfastai.py +25 -20
  52. webscout/Provider/llmchatco.py +48 -78
  53. webscout/Provider/multichat.py +13 -3
  54. webscout/Provider/scira_chat.py +50 -30
  55. webscout/Provider/scnet.py +27 -21
  56. webscout/Provider/searchchat.py +16 -24
  57. webscout/Provider/sonus.py +37 -39
  58. webscout/Provider/toolbaz.py +24 -46
  59. webscout/Provider/turboseek.py +37 -41
  60. webscout/Provider/typefully.py +30 -22
  61. webscout/Provider/typegpt.py +47 -51
  62. webscout/Provider/uncovr.py +46 -40
  63. webscout/__init__.py +0 -1
  64. webscout/cli.py +256 -0
  65. webscout/conversation.py +305 -448
  66. webscout/exceptions.py +3 -0
  67. webscout/swiftcli/__init__.py +80 -794
  68. webscout/swiftcli/core/__init__.py +7 -0
  69. webscout/swiftcli/core/cli.py +297 -0
  70. webscout/swiftcli/core/context.py +104 -0
  71. webscout/swiftcli/core/group.py +241 -0
  72. webscout/swiftcli/decorators/__init__.py +28 -0
  73. webscout/swiftcli/decorators/command.py +221 -0
  74. webscout/swiftcli/decorators/options.py +220 -0
  75. webscout/swiftcli/decorators/output.py +252 -0
  76. webscout/swiftcli/exceptions.py +21 -0
  77. webscout/swiftcli/plugins/__init__.py +9 -0
  78. webscout/swiftcli/plugins/base.py +135 -0
  79. webscout/swiftcli/plugins/manager.py +262 -0
  80. webscout/swiftcli/utils/__init__.py +59 -0
  81. webscout/swiftcli/utils/formatting.py +252 -0
  82. webscout/swiftcli/utils/parsing.py +267 -0
  83. webscout/version.py +1 -1
  84. {webscout-8.2.4.dist-info → webscout-8.2.6.dist-info}/METADATA +166 -45
  85. {webscout-8.2.4.dist-info → webscout-8.2.6.dist-info}/RECORD +89 -89
  86. {webscout-8.2.4.dist-info → webscout-8.2.6.dist-info}/WHEEL +1 -1
  87. webscout-8.2.6.dist-info/entry_points.txt +3 -0
  88. {webscout-8.2.4.dist-info → webscout-8.2.6.dist-info}/top_level.txt +0 -1
  89. inferno/__init__.py +0 -6
  90. inferno/__main__.py +0 -9
  91. inferno/cli.py +0 -6
  92. inferno/lol.py +0 -589
  93. webscout/LLM.py +0 -442
  94. webscout/Local/__init__.py +0 -12
  95. webscout/Local/__main__.py +0 -9
  96. webscout/Local/api.py +0 -576
  97. webscout/Local/cli.py +0 -516
  98. webscout/Local/config.py +0 -75
  99. webscout/Local/llm.py +0 -287
  100. webscout/Local/model_manager.py +0 -253
  101. webscout/Local/server.py +0 -721
  102. webscout/Local/utils.py +0 -93
  103. webscout/Provider/Chatify.py +0 -175
  104. webscout/Provider/PizzaGPT.py +0 -228
  105. webscout/Provider/askmyai.py +0 -158
  106. webscout/Provider/gaurish.py +0 -244
  107. webscout/Provider/promptrefine.py +0 -193
  108. webscout/Provider/tutorai.py +0 -270
  109. webscout-8.2.4.dist-info/entry_points.txt +0 -5
  110. {webscout-8.2.4.dist-info → webscout-8.2.6.dist-info}/licenses/LICENSE.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webscout
3
- Version: 8.2.4
3
+ Version: 8.2.6
4
4
  Summary: Search for anything using Google, DuckDuckGo, phind.com, Contains AI models, can transcribe yt videos, temporary email and phone number generation, has TTS support, webai (terminal gpt and open interpreter) and offline LLMs and more
5
5
  Author: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -68,15 +68,6 @@ Requires-Dist: aiohttp
68
68
  Provides-Extra: dev
69
69
  Requires-Dist: ruff>=0.1.6; extra == "dev"
70
70
  Requires-Dist: pytest>=7.4.2; extra == "dev"
71
- Provides-Extra: local
72
- Requires-Dist: llama-cpp-python; extra == "local"
73
- Requires-Dist: fastapi; extra == "local"
74
- Requires-Dist: uvicorn; extra == "local"
75
- Requires-Dist: rich; extra == "local"
76
- Requires-Dist: typer; extra == "local"
77
- Requires-Dist: huggingface_hub; extra == "local"
78
- Requires-Dist: pydantic; extra == "local"
79
- Requires-Dist: requests; extra == "local"
80
71
  Dynamic: author
81
72
  Dynamic: author-email
82
73
  Dynamic: classifier
@@ -113,11 +104,29 @@ Dynamic: summary
113
104
  </p>
114
105
  </div>
115
106
 
107
+ <hr/>
108
+
109
+ ## 📋 Table of Contents
110
+
111
+ - [🌟 Key Features](#-features)
112
+ - [⚙️ Installation](#️-installation)
113
+ - [🖥️ Command Line Interface](#️-command-line-interface)
114
+ - [🔍 Search Engines](#-search-engines)
115
+ - [🦆 DuckDuckGo Search](#-duckduckgo-search-with-webs-and-asyncwebs)
116
+ - [💻 WEBS API Reference](#-webs-api-reference)
117
+ - [🤖 AI Models and Voices](#-ai-models-and-voices)
118
+ - [💬 AI Chat Providers](#-ai-chat-providers)
119
+ - [👨‍💻 Advanced AI Interfaces](#-advanced-ai-interfaces)
120
+ - [🤝 Contributing](#-contributing)
121
+ - [🙏 Acknowledgments](#-acknowledgments)
122
+
123
+ <hr/>
124
+
116
125
  > [!IMPORTANT]
117
- > Webscout supports three types of compatibility:
126
+ > **Webscout supports three types of compatibility:**
118
127
  > - **Native Compatibility:** Webscout's own native API for maximum flexibility
119
128
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
120
- > - **Local LLM Compatibility:** Run local models with [Inferno](webscout/Local/README.md), an OpenAI-compatible server
129
+ > - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
121
130
  >
122
131
  > Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
123
132
 
@@ -136,36 +145,59 @@ Dynamic: summary
136
145
  </p>
137
146
  </div>
138
147
 
148
+ <hr/>
139
149
 
140
150
  ## 🚀 Features
141
151
 
142
- ### Search & AI
152
+ <details open>
153
+ <summary><b>Search & AI</b></summary>
154
+ <p>
155
+
143
156
  * **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
144
157
  * **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
145
158
  * **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
146
159
  * **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
147
- * **[Local LLMs with Inferno](webscout/Local/README.md):** Run local models with an OpenAI-compatible server
160
+ * **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
148
161
  * **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
162
+ </p>
163
+ </details>
164
+
165
+ <details open>
166
+ <summary><b>Media & Content Tools</b></summary>
167
+ <p>
149
168
 
150
- ### Media & Content Tools
151
169
  * **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
152
170
  * **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
153
171
  * **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
154
172
  * **[Weather Tools](webscout/Extra/weather.md):** Retrieve detailed weather information for any location
173
+ </p>
174
+ </details>
175
+
176
+ <details open>
177
+ <summary><b>Developer Tools</b></summary>
178
+ <p>
155
179
 
156
- ### Developer Tools
157
180
  * **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
158
181
  * **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
159
182
  * **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
160
183
  * **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
161
184
  * **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
162
185
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
163
- * **[Inferno](webscout/Local/README.md):** Run local LLMs with an OpenAI-compatible API and interactive CLI
164
- * **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
186
+ * **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
187
+ * **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
188
+ </p>
189
+ </details>
190
+
191
+ <details open>
192
+ <summary><b>Privacy & Utilities</b></summary>
193
+ <p>
165
194
 
166
- ### Privacy & Utilities
167
195
  * **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
168
196
  * **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
197
+ </p>
198
+ </details>
199
+
200
+ <hr/>
169
201
 
170
202
  ## ⚙️ Installation
171
203
 
@@ -174,6 +206,9 @@ Install Webscout using pip:
174
206
  ```bash
175
207
  pip install -U webscout
176
208
  ```
209
+ </div>
210
+
211
+ <hr/>
177
212
 
178
213
  ## 🖥️ Command Line Interface
179
214
 
@@ -183,7 +218,9 @@ Webscout provides a powerful command-line interface for quick access to its feat
183
218
  python -m webscout --help
184
219
  ```
185
220
 
186
- ### Web Search Commands
221
+ <details open>
222
+ <summary><b>Web Search Commands</b></summary>
223
+ <p>
187
224
 
188
225
  | Command | Description |
189
226
  |---------|-------------|
@@ -198,26 +235,46 @@ python -m webscout --help
198
235
  | `python -m webscout version` | Display the current version |
199
236
  | `python -m webscout videos -k "query"` | Search for videos |
200
237
  | `python -m webscout weather -l "location"` | Get weather information |
238
+ | `python -m webscout google_text -k "query"` | Perform a text search using Google |
239
+ | `python -m webscout google_news -k "query"` | Search for news using Google |
240
+ | `python -m webscout google_suggestions -q "query"` | Get search suggestions from Google |
241
+ | `python -m webscout yep_text -k "query"` | Perform a text search using Yep |
242
+ | `python -m webscout yep_images -k "query"` | Search for images using Yep |
243
+ | `python -m webscout yep_suggestions -q "query"` | Get search suggestions from Yep |
244
+ </p>
245
+ </details>
201
246
 
202
- ### Inferno LLM Commands
247
+ <details open>
248
+ <summary><b>Inferno LLM Commands</b></summary>
249
+ <p>
203
250
 
204
- Inferno provides commands for managing and using local LLMs:
251
+ Inferno is now a standalone package. Install it separately with:
205
252
 
206
253
  ```bash
207
- python -m inferno --help
254
+ pip install inferno-llm
255
+ ```
256
+
257
+ After installation, you can use its CLI for managing and using local LLMs:
258
+
259
+ ```bash
260
+ inferno --help
208
261
  ```
209
262
 
210
263
  | Command | Description |
211
264
  |---------|-------------|
212
- | `python -m inferno pull <model>` | Download a model from Hugging Face |
213
- | `python -m inferno list` | List downloaded models |
214
- | `python -m inferno serve <model>` | Start a model server with OpenAI-compatible API |
215
- | `python -m inferno run <model>` | Chat with a model interactively |
216
- | `python -m inferno remove <model>` | Remove a downloaded model |
217
- | `python -m inferno version` | Show version information |
265
+ | `inferno pull <model>` | Download a model from Hugging Face |
266
+ | `inferno list` | List downloaded models |
267
+ | `inferno serve <model>` | Start a model server with OpenAI-compatible API |
268
+ | `inferno run <model>` | Chat with a model interactively |
269
+ | `inferno remove <model>` | Remove a downloaded model |
270
+ | `inferno version` | Show version information |
271
+
272
+ For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
273
+ </p>
274
+ </details>
218
275
 
219
276
  > [!NOTE]
220
- > Hardware requirements for running models:
277
+ > **Hardware requirements for running models with Inferno:**
221
278
  > - Around 2 GB of RAM for 1B models
222
279
  > - Around 4 GB of RAM for 3B models
223
280
  > - At least 8 GB of RAM for 7B models
@@ -225,7 +282,7 @@ python -m inferno --help
225
282
  > - 32 GB of RAM for 33B models
226
283
  > - GPU acceleration is recommended for better performance
227
284
 
228
-
285
+ <hr/>
229
286
 
230
287
  ## 🔍 Search Engines
231
288
 
@@ -303,11 +360,15 @@ from webscout import search
303
360
  results = search("Python programming", num_results=5)
304
361
  ```
305
362
 
363
+ <hr/>
364
+
306
365
  ## 🦆 DuckDuckGo Search with WEBS and AsyncWEBS
307
366
 
308
367
  Webscout provides powerful interfaces to DuckDuckGo's search capabilities through the `WEBS` and `AsyncWEBS` classes.
309
368
 
310
- ### Synchronous Usage with WEBS
369
+ <details open>
370
+ <summary><b>Synchronous Usage with WEBS</b></summary>
371
+ <p>
311
372
 
312
373
  ```python
313
374
  from webscout import WEBS
@@ -319,8 +380,12 @@ with WEBS() as webs:
319
380
  for result in results:
320
381
  print(f"Title: {result['title']}\nURL: {result['url']}")
321
382
  ```
383
+ </p>
384
+ </details>
322
385
 
323
- ### Asynchronous Usage with AsyncWEBS
386
+ <details open>
387
+ <summary><b>Asynchronous Usage with AsyncWEBS</b></summary>
388
+ <p>
324
389
 
325
390
  ```python
326
391
  import asyncio
@@ -348,10 +413,14 @@ async def main():
348
413
  # Run the async function
349
414
  asyncio.run(main())
350
415
  ```
416
+ </p>
417
+ </details>
351
418
 
352
- > [!NOTE]
419
+ > [!TIP]
353
420
  > Always use these classes with a context manager (`with` statement) to ensure proper resource management and cleanup.
354
421
 
422
+ <hr/>
423
+
355
424
  ## 💻 WEBS API Reference
356
425
 
357
426
  The WEBS class provides comprehensive access to DuckDuckGo's search capabilities through a clean, intuitive API.
@@ -370,7 +439,9 @@ The WEBS class provides comprehensive access to DuckDuckGo's search capabilities
370
439
  | `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
371
440
  | `weather()` | Weather information | `webs.weather('london')` |
372
441
 
373
- ### Example: Text Search
442
+ <details>
443
+ <summary><b>Example: Text Search</b></summary>
444
+ <p>
374
445
 
375
446
  ```python
376
447
  from webscout import WEBS
@@ -389,8 +460,12 @@ with WEBS() as webs:
389
460
  print(f"URL: {result['url']}")
390
461
  print(f"Description: {result['body']}\n")
391
462
  ```
463
+ </p>
464
+ </details>
392
465
 
393
- ### Example: News Search with Formatting
466
+ <details>
467
+ <summary><b>Example: News Search with Formatting</b></summary>
468
+ <p>
394
469
 
395
470
  ```python
396
471
  from webscout import WEBS
@@ -428,8 +503,12 @@ def fetch_formatted_news(keywords, timelimit='d', max_results=20):
428
503
  news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
429
504
  print('\n'.join(news))
430
505
  ```
506
+ </p>
507
+ </details>
431
508
 
432
- ### Example: Weather Information
509
+ <details>
510
+ <summary><b>Example: Weather Information</b></summary>
511
+ <p>
433
512
 
434
513
  ```python
435
514
  from webscout import WEBS
@@ -444,12 +523,18 @@ with WEBS() as webs:
444
523
  print(f"Temperature: {weather.get('temperature', 'N/A')}")
445
524
  print(f"Conditions: {weather.get('condition', 'N/A')}")
446
525
  ```
526
+ </p>
527
+ </details>
528
+
529
+ <hr/>
447
530
 
448
531
  ## 🤖 AI Models and Voices
449
532
 
450
533
  Webscout provides easy access to a wide range of AI models and voice options.
451
534
 
452
- ### LLM Models
535
+ <details open>
536
+ <summary><b>LLM Models</b></summary>
537
+ <p>
453
538
 
454
539
  Access and manage Large Language Models with Webscout's model utilities.
455
540
 
@@ -477,8 +562,12 @@ if isinstance(available_models, list):
477
562
  else:
478
563
  print(f" {available_models}")
479
564
  ```
565
+ </p>
566
+ </details>
480
567
 
481
- ### TTS Voices
568
+ <details open>
569
+ <summary><b>TTS Voices</b></summary>
570
+ <p>
482
571
 
483
572
  Access and manage Text-to-Speech voices across multiple providers.
484
573
 
@@ -506,6 +595,10 @@ if isinstance(available_voices, dict):
506
595
  if len(available_voices) > 5:
507
596
  print(f" ... and {len(available_voices) - 5} more")
508
597
  ```
598
+ </p>
599
+ </details>
600
+
601
+ <hr/>
509
602
 
510
603
  ## 💬 AI Chat Providers
511
604
 
@@ -513,6 +606,8 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
513
606
 
514
607
  ### Popular AI Providers
515
608
 
609
+ <div class="provider-table">
610
+
516
611
  | Provider | Description | Key Features |
517
612
  |----------|-------------|-------------|
518
613
  | `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
@@ -528,7 +623,11 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
528
623
  | `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
529
624
  | `TypeGPT` | TypeChat models | Code generation focus |
530
625
 
531
- ### Example: Using Duckchat
626
+ </div>
627
+
628
+ <details>
629
+ <summary><b>Example: Using Duckchat</b></summary>
630
+ <p>
532
631
 
533
632
  ```python
534
633
  from webscout import WEBS
@@ -541,8 +640,12 @@ with WEBS() as webs:
541
640
  )
542
641
  print(response)
543
642
  ```
643
+ </p>
644
+ </details>
544
645
 
545
- ### Example: Using Meta AI
646
+ <details>
647
+ <summary><b>Example: Using Meta AI</b></summary>
648
+ <p>
546
649
 
547
650
  ```python
548
651
  from webscout import Meta
@@ -567,8 +670,12 @@ response = meta_ai.ask("Create an image of a futuristic city")
567
670
  for media in response.get("media", []):
568
671
  print(media["url"])
569
672
  ```
673
+ </p>
674
+ </details>
570
675
 
571
- ### Example: GROQ with Tool Calling
676
+ <details>
677
+ <summary><b>Example: GROQ with Tool Calling</b></summary>
678
+ <p>
572
679
 
573
680
  ```python
574
681
  from webscout import GROQ, WEBS
@@ -643,10 +750,16 @@ print(response)
643
750
  response = client.chat("Find information about quantum computing", tools=tools)
644
751
  print(response)
645
752
  ```
753
+ </p>
754
+ </details>
755
+
756
+ <hr/>
646
757
 
647
758
  ## 👨‍💻 Advanced AI Interfaces
648
759
 
649
- ### Direct Model Access with LLM and VLM
760
+ <details open>
761
+ <summary><b>Direct Model Access with LLM and VLM</b></summary>
762
+ <p>
650
763
 
651
764
  Webscout provides direct interfaces to language and vision-language models through the `LLM` and `VLM` classes.
652
765
 
@@ -673,8 +786,12 @@ response = vlm.chat([
673
786
  ])
674
787
  print(response)
675
788
  ```
789
+ </p>
790
+ </details>
676
791
 
677
- ### GGUF Model Conversion
792
+ <details open>
793
+ <summary><b>GGUF Model Conversion</b></summary>
794
+ <p>
678
795
 
679
796
  Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for offline use.
680
797
 
@@ -716,6 +833,8 @@ converter.convert()
716
833
  ```bash
717
834
  python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q "q4_k_m"
718
835
  ```
836
+ </p>
837
+ </details>
719
838
 
720
839
  <div align="center">
721
840
  <p>
@@ -724,6 +843,8 @@ python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q
724
843
  </p>
725
844
  </div>
726
845
 
846
+ <hr/>
847
+
727
848
  ## 🤝 Contributing
728
849
 
729
850
  Contributions are welcome! If you'd like to contribute to Webscout, please follow these steps:
@@ -739,7 +860,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
739
860
  * All the amazing developers who have contributed to the project
740
861
  * The open-source community for their support and inspiration
741
862
 
742
- ---
863
+ <hr/>
743
864
 
744
865
  <div align="center">
745
866
  <p>Made with ❤️ by the Webscout team</p>