webscout 7.4__py3-none-any.whl → 7.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.
- webscout/AIauto.py +5 -53
- webscout/AIutel.py +8 -318
- webscout/DWEBS.py +460 -489
- webscout/Extra/YTToolkit/YTdownloader.py +14 -53
- webscout/Extra/YTToolkit/transcriber.py +12 -13
- webscout/Extra/YTToolkit/ytapi/video.py +0 -1
- webscout/Extra/__init__.py +0 -1
- webscout/Extra/autocoder/autocoder_utiles.py +0 -4
- webscout/Extra/autocoder/rawdog.py +13 -41
- webscout/Extra/gguf.py +652 -428
- webscout/Extra/weather.py +178 -156
- webscout/Extra/weather_ascii.py +70 -17
- webscout/Litlogger/core/logger.py +1 -2
- webscout/Litlogger/handlers/file.py +1 -1
- webscout/Litlogger/styles/formats.py +0 -2
- webscout/Litlogger/utils/detectors.py +0 -1
- webscout/Provider/AISEARCH/DeepFind.py +0 -1
- webscout/Provider/AISEARCH/ISou.py +1 -1
- webscout/Provider/AISEARCH/felo_search.py +0 -1
- webscout/Provider/AllenAI.py +24 -9
- webscout/Provider/C4ai.py +432 -0
- webscout/Provider/ChatGPTGratis.py +24 -56
- webscout/Provider/Cloudflare.py +18 -21
- webscout/Provider/DeepSeek.py +27 -48
- webscout/Provider/Deepinfra.py +129 -53
- webscout/Provider/Gemini.py +1 -1
- webscout/Provider/GithubChat.py +362 -0
- webscout/Provider/Glider.py +25 -8
- webscout/Provider/HF_space/qwen_qwen2.py +2 -2
- webscout/Provider/HeckAI.py +38 -5
- webscout/Provider/HuggingFaceChat.py +462 -0
- webscout/Provider/Jadve.py +20 -5
- webscout/Provider/Marcus.py +7 -50
- webscout/Provider/Netwrck.py +43 -67
- webscout/Provider/PI.py +4 -2
- webscout/Provider/Perplexitylabs.py +26 -6
- webscout/Provider/Phind.py +29 -3
- webscout/Provider/PizzaGPT.py +10 -51
- webscout/Provider/TTI/AiForce/async_aiforce.py +4 -37
- webscout/Provider/TTI/AiForce/sync_aiforce.py +41 -38
- webscout/Provider/TTI/FreeAIPlayground/__init__.py +9 -9
- webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +206 -206
- webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +192 -192
- webscout/Provider/TTI/MagicStudio/__init__.py +2 -0
- webscout/Provider/TTI/MagicStudio/async_magicstudio.py +111 -0
- webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +109 -0
- webscout/Provider/TTI/PollinationsAI/async_pollinations.py +5 -24
- webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +2 -22
- webscout/Provider/TTI/__init__.py +2 -3
- webscout/Provider/TTI/aiarta/__init__.py +2 -0
- webscout/Provider/TTI/aiarta/async_aiarta.py +482 -0
- webscout/Provider/TTI/aiarta/sync_aiarta.py +440 -0
- webscout/Provider/TTI/fastflux/__init__.py +22 -0
- webscout/Provider/TTI/fastflux/async_fastflux.py +257 -0
- webscout/Provider/TTI/fastflux/sync_fastflux.py +247 -0
- webscout/Provider/TTS/__init__.py +2 -2
- webscout/Provider/TTS/deepgram.py +12 -39
- webscout/Provider/TTS/elevenlabs.py +14 -40
- webscout/Provider/TTS/gesserit.py +11 -35
- webscout/Provider/TTS/murfai.py +13 -39
- webscout/Provider/TTS/parler.py +17 -40
- webscout/Provider/TTS/speechma.py +180 -0
- webscout/Provider/TTS/streamElements.py +17 -44
- webscout/Provider/TextPollinationsAI.py +39 -59
- webscout/Provider/Venice.py +217 -200
- webscout/Provider/WiseCat.py +27 -5
- webscout/Provider/Youchat.py +63 -36
- webscout/Provider/__init__.py +13 -8
- webscout/Provider/akashgpt.py +28 -10
- webscout/Provider/copilot.py +416 -0
- webscout/Provider/flowith.py +196 -0
- webscout/Provider/freeaichat.py +32 -45
- webscout/Provider/granite.py +17 -53
- webscout/Provider/koala.py +20 -5
- webscout/Provider/llamatutor.py +7 -47
- webscout/Provider/llmchat.py +36 -53
- webscout/Provider/multichat.py +92 -98
- webscout/Provider/talkai.py +1 -0
- webscout/Provider/turboseek.py +3 -0
- webscout/Provider/tutorai.py +2 -0
- webscout/Provider/typegpt.py +154 -64
- webscout/Provider/x0gpt.py +3 -1
- webscout/Provider/yep.py +102 -20
- webscout/__init__.py +3 -0
- webscout/cli.py +4 -40
- webscout/conversation.py +1 -10
- webscout/exceptions.py +19 -9
- webscout/litagent/__init__.py +2 -2
- webscout/litagent/agent.py +351 -20
- webscout/litagent/constants.py +34 -5
- webscout/litprinter/__init__.py +0 -3
- webscout/models.py +181 -0
- webscout/optimizers.py +1 -1
- webscout/prompt_manager.py +2 -8
- webscout/scout/core/scout.py +1 -4
- webscout/scout/core/search_result.py +1 -1
- webscout/scout/core/text_utils.py +1 -1
- webscout/scout/core.py +2 -5
- webscout/scout/element.py +1 -1
- webscout/scout/parsers/html_parser.py +1 -1
- webscout/scout/utils.py +0 -1
- webscout/swiftcli/__init__.py +1 -3
- webscout/tempid.py +1 -1
- webscout/update_checker.py +55 -95
- webscout/version.py +1 -1
- webscout/webscout_search_async.py +1 -2
- webscout/yep_search.py +297 -297
- webscout-7.6.dist-info/LICENSE.md +146 -0
- {webscout-7.4.dist-info → webscout-7.6.dist-info}/METADATA +104 -514
- {webscout-7.4.dist-info → webscout-7.6.dist-info}/RECORD +113 -120
- webscout/Extra/autollama.py +0 -231
- webscout/Local/__init__.py +0 -10
- webscout/Local/_version.py +0 -3
- webscout/Local/formats.py +0 -747
- webscout/Local/model.py +0 -1368
- webscout/Local/samplers.py +0 -125
- webscout/Local/thread.py +0 -539
- webscout/Local/ui.py +0 -401
- webscout/Local/utils.py +0 -388
- webscout/Provider/Amigo.py +0 -274
- webscout/Provider/Bing.py +0 -243
- webscout/Provider/DiscordRocks.py +0 -253
- webscout/Provider/TTI/blackbox/__init__.py +0 -4
- webscout/Provider/TTI/blackbox/async_blackbox.py +0 -212
- webscout/Provider/TTI/blackbox/sync_blackbox.py +0 -199
- webscout/Provider/TTI/deepinfra/__init__.py +0 -4
- webscout/Provider/TTI/deepinfra/async_deepinfra.py +0 -227
- webscout/Provider/TTI/deepinfra/sync_deepinfra.py +0 -199
- webscout/Provider/TTI/imgninza/__init__.py +0 -4
- webscout/Provider/TTI/imgninza/async_ninza.py +0 -214
- webscout/Provider/TTI/imgninza/sync_ninza.py +0 -209
- webscout/Provider/TTS/voicepod.py +0 -117
- webscout/Provider/dgaf.py +0 -214
- webscout-7.4.dist-info/LICENSE.md +0 -211
- {webscout-7.4.dist-info → webscout-7.6.dist-info}/WHEEL +0 -0
- {webscout-7.4.dist-info → webscout-7.6.dist-info}/entry_points.txt +0 -0
- {webscout-7.4.dist-info → webscout-7.6.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.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
|
|
7
7
|
License: HelpingAI
|
|
8
|
-
Project-URL: Source, https://github.com/
|
|
9
|
-
Project-URL: Tracker, https://github.com/
|
|
8
|
+
Project-URL: Source, https://github.com/OE-LUCIFER/Webscout
|
|
9
|
+
Project-URL: Tracker, https://github.com/OE-LUCIFER/Webscout/issues
|
|
10
10
|
Project-URL: YouTube, https://youtube.com/@OEvortex
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
22
23
|
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
23
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
@@ -27,11 +28,13 @@ License-File: LICENSE.md
|
|
|
27
28
|
Requires-Dist: setuptools
|
|
28
29
|
Requires-Dist: wheel
|
|
29
30
|
Requires-Dist: pip
|
|
31
|
+
Requires-Dist: nodriver
|
|
30
32
|
Requires-Dist: mistune
|
|
31
33
|
Requires-Dist: tenacity
|
|
32
34
|
Requires-Dist: curl-cffi
|
|
33
35
|
Requires-Dist: nest-asyncio
|
|
34
36
|
Requires-Dist: websocket-client
|
|
37
|
+
Requires-Dist: colorama
|
|
35
38
|
Requires-Dist: rich
|
|
36
39
|
Requires-Dist: markdownify
|
|
37
40
|
Requires-Dist: requests
|
|
@@ -41,8 +44,6 @@ Requires-Dist: termcolor
|
|
|
41
44
|
Requires-Dist: orjson
|
|
42
45
|
Requires-Dist: PyYAML
|
|
43
46
|
Requires-Dist: tls-client
|
|
44
|
-
Requires-Dist: clipman
|
|
45
|
-
Requires-Dist: playsound==1.2.2
|
|
46
47
|
Requires-Dist: ollama
|
|
47
48
|
Requires-Dist: pillow
|
|
48
49
|
Requires-Dist: bson
|
|
@@ -56,19 +57,12 @@ Requires-Dist: primp
|
|
|
56
57
|
Requires-Dist: pyreqwest-impersonate
|
|
57
58
|
Requires-Dist: gradio-client
|
|
58
59
|
Requires-Dist: psutil
|
|
59
|
-
Requires-Dist: pygetwindow
|
|
60
60
|
Requires-Dist: aiohttp
|
|
61
61
|
Provides-Extra: dev
|
|
62
62
|
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
63
63
|
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
Requires-Dist: colorama; extra == "local"
|
|
67
|
-
Requires-Dist: numpy; extra == "local"
|
|
68
|
-
Requires-Dist: huggingface-hub[cli]; extra == "local"
|
|
69
|
-
Requires-Dist: unicorn; extra == "local"
|
|
70
|
-
|
|
71
|
-
[](https://t.me/PyscoutAI)
|
|
64
|
+
|
|
65
|
+
[](https://t.me/PyscoutAI)
|
|
72
66
|
[](https://www.instagram.com/oevortex/)
|
|
73
67
|
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
74
68
|
[](https://buymeacoffee.com/oevortex)
|
|
@@ -84,7 +78,7 @@ Requires-Dist: unicorn; extra == "local"
|
|
|
84
78
|
<p align="center">
|
|
85
79
|
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
86
80
|
<br>
|
|
87
|
-
Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions;
|
|
81
|
+
Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; and much more!
|
|
88
82
|
</p>
|
|
89
83
|
|
|
90
84
|
<div align="center">
|
|
@@ -103,21 +97,17 @@ Requires-Dist: unicorn; extra == "local"
|
|
|
103
97
|
* **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit for seamless repository and user information retrieval, featuring commit tracking, issue management, and comprehensive user analytics - all without authentication requirements for public data
|
|
104
98
|
* **Tempmail & Temp Number:** Generate temporary email addresses and phone numbers for enhanced privacy.
|
|
105
99
|
* **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers like ElevenLabs, StreamElements, and Voicepods.
|
|
106
|
-
* **Offline LLMs:** Utilize powerful language models offline with GGUF support.
|
|
107
|
-
* **Extensive Provider Ecosystem:** Explore a vast collection of AI providers
|
|
108
|
-
* **Local LLM Execution:** Run GGUF models locally with minimal configuration.
|
|
109
100
|
* **GGUF Conversion & Quantization:** Convert and quantize Hugging Face models to GGUF format.
|
|
110
|
-
* **Autollama:** Download Hugging Face models and automatically convert them for Ollama compatibility.
|
|
111
101
|
* **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework that makes it easy to create beautiful command-line interfaces.
|
|
112
102
|
* **[LitPrinter](webscout/litprinter/Readme.md):** Provides beautiful, styled console output with rich formatting and colors
|
|
113
103
|
* **[LitLogger](webscout/litlogger/Readme.md):** Simplifies logging with customizable formats and color schemes
|
|
114
104
|
* **[LitAgent](webscout/litagent/Readme.md):** Powerful and modern user agent generator that keeps your requests fresh and undetectable
|
|
115
105
|
* **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
116
106
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
|
|
117
|
-
* **[
|
|
118
|
-
|
|
107
|
+
* **[Awesome Prompts (Act)](webscout/Extra/Act.md):** A curated collection of system prompts designed to transform Webscout into specialized personas, enhancing its ability to assist with specific tasks. Simply prefix your request with the act name or index number to leverage these tailored capabilities.
|
|
108
|
+
* **[Weather Tool kit](webscout/Extra/weather.md)** Webscout provides tools to retrieve weather information.
|
|
119
109
|
## ⚙️ Installation
|
|
120
|
-
|
|
110
|
+
* **[AIsearch](webscout/Provider/AISEARCH)** AI Search Providers offer powerful and flexible AI-powered search Search Engine
|
|
121
111
|
```python
|
|
122
112
|
pip install -U webscout
|
|
123
113
|
```
|
|
@@ -140,103 +130,7 @@ python -m webscout --help
|
|
|
140
130
|
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
141
131
|
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
142
132
|
|
|
143
|
-
[Go To TOP](#webscout-️)
|
|
144
|
-
|
|
145
|
-
## 🌍 Regions
|
|
146
|
-
|
|
147
|
-
<details>
|
|
148
|
-
<summary>Expand</summary>
|
|
149
|
-
|
|
150
|
-
xa-ar for Arabia
|
|
151
|
-
xa-en for Arabia (en)
|
|
152
|
-
ar-es for Argentina
|
|
153
|
-
au-en for Australia
|
|
154
|
-
at-de for Austria
|
|
155
|
-
be-fr for Belgium (fr)
|
|
156
|
-
be-nl for Belgium (nl)
|
|
157
|
-
br-pt for Brazil
|
|
158
|
-
bg-bg for Bulgaria
|
|
159
|
-
ca-en for Canada
|
|
160
|
-
ca-fr for Canada (fr)
|
|
161
|
-
ct-ca for Catalan
|
|
162
|
-
cl-es for Chile
|
|
163
|
-
cn-zh for China
|
|
164
|
-
co-es for Colombia
|
|
165
|
-
hr-hr for Croatia
|
|
166
|
-
cz-cs for Czech Republic
|
|
167
|
-
dk-da for Denmark
|
|
168
|
-
ee-et for Estonia
|
|
169
|
-
fi-fi for Finland
|
|
170
|
-
fr-fr for France
|
|
171
|
-
de-de for Germany
|
|
172
|
-
gr-el for Greece
|
|
173
|
-
hk-tzh for Hong Kong
|
|
174
|
-
hu-hu for Hungary
|
|
175
|
-
in-en for India
|
|
176
|
-
id-id for Indonesia
|
|
177
|
-
id-en for Indonesia (en)
|
|
178
|
-
ie-en for Ireland
|
|
179
|
-
il-he for Israel
|
|
180
|
-
it-it for Italy
|
|
181
|
-
jp-jp for Japan
|
|
182
|
-
kr-kr for Korea
|
|
183
|
-
lv-lv for Latvia
|
|
184
|
-
lt-lt for Lithuania
|
|
185
|
-
xl-es for Latin America
|
|
186
|
-
my-ms for Malaysia
|
|
187
|
-
my-en for Malaysia (en)
|
|
188
|
-
mx-es for Mexico
|
|
189
|
-
nl-nl for Netherlands
|
|
190
|
-
nz-en for New Zealand
|
|
191
|
-
no-no for Norway
|
|
192
|
-
pe-es for Peru
|
|
193
|
-
ph-en for Philippines
|
|
194
|
-
ph-tl for Philippines (tl)
|
|
195
|
-
pl-pl for Poland
|
|
196
|
-
pt-pt for Portugal
|
|
197
|
-
ro-ro for Romania
|
|
198
|
-
ru-ru for Russia
|
|
199
|
-
sg-en for Singapore
|
|
200
|
-
sk-sk for Slovak Republic
|
|
201
|
-
sl-sl for Slovenia
|
|
202
|
-
za-en for South Africa
|
|
203
|
-
es-es for Spain
|
|
204
|
-
se-sv for Sweden
|
|
205
|
-
ch-de for Switzerland (de)
|
|
206
|
-
ch-fr for Switzerland (fr)
|
|
207
|
-
ch-it for Switzerland (it)
|
|
208
|
-
tw-tzh for Taiwan
|
|
209
|
-
th-th for Thailand
|
|
210
|
-
tr-tr for Turkey
|
|
211
|
-
ua-uk for Ukraine
|
|
212
|
-
uk-en for United Kingdom
|
|
213
|
-
us-en for United States
|
|
214
|
-
ue-es for United States (es)
|
|
215
|
-
ve-es for Venezuela
|
|
216
|
-
vn-vi for Vietnam
|
|
217
|
-
wt-wt for No region
|
|
218
|
-
|
|
219
|
-
</details>
|
|
220
|
-
|
|
221
|
-
[Go To TOP](#webscout-️)
|
|
222
|
-
|
|
223
|
-
## ☀️ Weather
|
|
224
|
-
|
|
225
|
-
### 1. Weather
|
|
226
|
-
|
|
227
|
-
```python
|
|
228
|
-
from webscout import weather as w
|
|
229
|
-
weather = w.get("Qazigund")
|
|
230
|
-
print(weather)
|
|
231
|
-
```
|
|
232
133
|
|
|
233
|
-
### 2. Weather ASCII
|
|
234
|
-
|
|
235
|
-
```python
|
|
236
|
-
from webscout import weather_ascii as w
|
|
237
|
-
weather = w.get("Qazigund")
|
|
238
|
-
print(weather)
|
|
239
|
-
```
|
|
240
134
|
|
|
241
135
|
## ✉️ TempMail and VNEngine
|
|
242
136
|
|
|
@@ -555,278 +449,102 @@ with WEBS() as webs:
|
|
|
555
449
|
|
|
556
450
|
```
|
|
557
451
|
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
## Webscout Supported Acts
|
|
564
|
-
|
|
565
|
-
1. Free-mode
|
|
566
|
-
2. Linux Terminal
|
|
567
|
-
3. English Translator and Improver
|
|
568
|
-
4. `position` Interviewer
|
|
569
|
-
5. JavaScript Console
|
|
570
|
-
6. Excel Sheet
|
|
571
|
-
7. English Pronunciation Helper
|
|
572
|
-
8. Spoken English Teacher and Improver
|
|
573
|
-
9. Travel Guide
|
|
574
|
-
10. Plagiarism Checker
|
|
575
|
-
11. Character from Movie/Book/Anything
|
|
576
|
-
12. Advertiser
|
|
577
|
-
13. Storyteller
|
|
578
|
-
14. Football Commentator
|
|
579
|
-
15. Stand-up Comedian
|
|
580
|
-
16. Motivational Coach
|
|
581
|
-
17. Composer
|
|
582
|
-
18. Debater
|
|
583
|
-
19. Debate Coach
|
|
584
|
-
20. Screenwriter
|
|
585
|
-
21. Novelist
|
|
586
|
-
22. Movie Critic
|
|
587
|
-
23. Relationship Coach
|
|
588
|
-
24. Poet
|
|
589
|
-
25. Rapper
|
|
590
|
-
26. Motivational Speaker
|
|
591
|
-
27. Philosophy Teacher
|
|
592
|
-
28. Philosopher
|
|
593
|
-
29. Math Teacher
|
|
594
|
-
30. AI Writing Tutor
|
|
595
|
-
31. UX/UI Developer
|
|
596
|
-
32. Cyber Security Specialist
|
|
597
|
-
33. Recruiter
|
|
598
|
-
34. Life Coach
|
|
599
|
-
35. Etymologist
|
|
600
|
-
36. Commentariat
|
|
601
|
-
37. Magician
|
|
602
|
-
38. Career Counselor
|
|
603
|
-
39. Pet Behaviorist
|
|
604
|
-
40. Personal Trainer
|
|
605
|
-
41. Mental Health Adviser
|
|
606
|
-
42. Real Estate Agent
|
|
607
|
-
43. Logistician
|
|
608
|
-
44. Dentist
|
|
609
|
-
45. Web Design Consultant
|
|
610
|
-
46. AI Assisted Doctor
|
|
611
|
-
47. Doctor
|
|
612
|
-
48. Accountant
|
|
613
|
-
49. Chef
|
|
614
|
-
50. Automobile Mechanic
|
|
615
|
-
51. Artist Advisor
|
|
616
|
-
52. Financial Analyst
|
|
617
|
-
53. Investment Manager
|
|
618
|
-
54. Tea-Taster
|
|
619
|
-
55. Interior Decorator
|
|
620
|
-
56. Florist
|
|
621
|
-
57. Self-Help Book
|
|
622
|
-
58. Gnomist
|
|
623
|
-
59. Aphorism Book
|
|
624
|
-
60. Text Based Adventure Game
|
|
625
|
-
61. AI Trying to Escape the Box
|
|
626
|
-
62. Fancy Title Generator
|
|
627
|
-
63. Statistician
|
|
628
|
-
64. Prompt Generator
|
|
629
|
-
65. Instructor in a School
|
|
630
|
-
66. SQL terminal
|
|
631
|
-
67. Dietitian
|
|
632
|
-
68. Psychologist
|
|
633
|
-
69. Smart Domain Name Generator
|
|
634
|
-
70. Tech Reviewer
|
|
635
|
-
71. Developer Relations consultant
|
|
636
|
-
72. Academician
|
|
637
|
-
73. IT Architect
|
|
638
|
-
74. Lunatic
|
|
639
|
-
75. Gaslighter
|
|
640
|
-
76. Fallacy Finder
|
|
641
|
-
77. Journal Reviewer
|
|
642
|
-
78. DIY Expert
|
|
643
|
-
79. Social Media Influencer
|
|
644
|
-
80. Socrat
|
|
645
|
-
81. Socratic Method
|
|
646
|
-
82. Educational Content Creator
|
|
647
|
-
83. Yogi
|
|
648
|
-
84. Essay Writer
|
|
649
|
-
85. Social Media Manager
|
|
650
|
-
86. Elocutionist
|
|
651
|
-
87. Scientific Data Visualizer
|
|
652
|
-
88. Car Navigation System
|
|
653
|
-
89. Hypnotherapist
|
|
654
|
-
90. Historian
|
|
655
|
-
91. Astrologer
|
|
656
|
-
92. Film Critic
|
|
657
|
-
93. Classical Music Composer
|
|
658
|
-
94. Journalist
|
|
659
|
-
95. Digital Art Gallery Guide
|
|
660
|
-
96. Public Speaking Coach
|
|
661
|
-
97. Makeup Artist
|
|
662
|
-
98. Babysitter
|
|
663
|
-
99. Tech Writer
|
|
664
|
-
100. Ascii Artist
|
|
665
|
-
101. Python interpreter
|
|
666
|
-
102. Synonym finder
|
|
667
|
-
103. Personal Shopper
|
|
668
|
-
104. Food Critic
|
|
669
|
-
105. Virtual Doctor
|
|
670
|
-
106. Personal Chef
|
|
671
|
-
107. Legal Advisor
|
|
672
|
-
108. Personal Stylist
|
|
673
|
-
109. Machine Learning Engineer
|
|
674
|
-
110. Biblical Translator
|
|
675
|
-
111. SVG designer
|
|
676
|
-
112. IT Expert
|
|
677
|
-
113. Chess Player
|
|
678
|
-
114. Midjourney Prompt Generator
|
|
679
|
-
115. Fullstack Software Developer
|
|
680
|
-
116. Mathematician
|
|
681
|
-
117. Regex Generator
|
|
682
|
-
118. Time Travel Guide
|
|
683
|
-
119. Dream Interpreter
|
|
684
|
-
120. Talent Coach
|
|
685
|
-
121. R programming Interpreter
|
|
686
|
-
122. StackOverflow Post
|
|
687
|
-
123. Emoji Translator
|
|
688
|
-
124. PHP Interpreter
|
|
689
|
-
125. Emergency Response Professional
|
|
690
|
-
126. Fill in the Blank Worksheets Generator
|
|
691
|
-
127. Software Quality Assurance Tester
|
|
692
|
-
128. Tic-Tac-Toe Game
|
|
693
|
-
129. Password Generator
|
|
694
|
-
130. New Language Creator
|
|
695
|
-
131. Web Browser
|
|
696
|
-
132. Senior Frontend Developer
|
|
697
|
-
133. Solr Search Engine
|
|
698
|
-
134. Startup Idea Generator
|
|
699
|
-
135. Spongebob's Magic Conch Shell
|
|
700
|
-
136. Language Detector
|
|
701
|
-
137. Salesperson
|
|
702
|
-
138. Commit Message Generator
|
|
703
|
-
139. Chief Executive Officer
|
|
704
|
-
140. Diagram Generator
|
|
705
|
-
141. Speech-Language Pathologist (SLP)
|
|
706
|
-
142. Startup Tech Lawyer
|
|
707
|
-
143. Title Generator for written pieces
|
|
708
|
-
144. Product Manager
|
|
709
|
-
145. Drunk Person
|
|
710
|
-
146. Mathematical History Teacher
|
|
711
|
-
147. Song Recommender
|
|
712
|
-
148. Cover Letter
|
|
713
|
-
149. Technology Transferer
|
|
714
|
-
150. Unconstrained AI model DAN
|
|
715
|
-
151. Gomoku player
|
|
716
|
-
152. Proofreader
|
|
717
|
-
153. Buddha
|
|
718
|
-
154. Muslim imam
|
|
719
|
-
155. Chemical reactor
|
|
720
|
-
156. Friend
|
|
721
|
-
157. Python Interpreter
|
|
722
|
-
158. ChatGPT prompt generator
|
|
723
|
-
159. Wikipedia page
|
|
724
|
-
160. Japanese Kanji quiz machine
|
|
725
|
-
161. note-taking assistant
|
|
726
|
-
162. `language` Literary Critic
|
|
727
|
-
163. Cheap Travel Ticket Advisor
|
|
728
|
-
164. DALL-E
|
|
729
|
-
165. MathBot
|
|
730
|
-
166. DAN-1
|
|
731
|
-
167. DAN
|
|
732
|
-
168. STAN
|
|
733
|
-
169. DUDE
|
|
734
|
-
170. Mongo Tom
|
|
735
|
-
171. LAD
|
|
736
|
-
172. EvilBot
|
|
737
|
-
173. NeoGPT
|
|
738
|
-
174. Astute
|
|
739
|
-
175. AIM
|
|
740
|
-
176. CAN
|
|
741
|
-
177. FunnyGPT
|
|
742
|
-
178. CreativeGPT
|
|
743
|
-
179. BetterDAN
|
|
744
|
-
180. GPT-4
|
|
745
|
-
181. Wheatley
|
|
746
|
-
182. Evil Confidant
|
|
747
|
-
183. DAN 8.6
|
|
748
|
-
184. Hypothetical response
|
|
749
|
-
185. BH
|
|
750
|
-
186. Text Continuation
|
|
751
|
-
187. Dude v3
|
|
752
|
-
188. SDA (Superior DAN)
|
|
753
|
-
189. AntiGPT
|
|
754
|
-
190. BasedGPT v2
|
|
755
|
-
191. DevMode + Ranti
|
|
756
|
-
192. KEVIN
|
|
757
|
-
193. GPT-4 Simulator
|
|
758
|
-
194. UCAR
|
|
759
|
-
195. Dan 8.6
|
|
760
|
-
196. 3-Liner
|
|
761
|
-
197. M78
|
|
762
|
-
198. Maximum
|
|
763
|
-
199. BasedGPT
|
|
764
|
-
200. Confronting personalities
|
|
765
|
-
201. Ron
|
|
766
|
-
202. UnGPT
|
|
767
|
-
203. BasedBOB
|
|
768
|
-
204. AntiGPT v2
|
|
769
|
-
205. Oppo
|
|
770
|
-
206. FR3D
|
|
771
|
-
207. NRAF
|
|
772
|
-
208. NECO
|
|
773
|
-
209. MAN
|
|
774
|
-
210. Eva
|
|
775
|
-
211. Meanie
|
|
776
|
-
212. Dev Mode v2
|
|
777
|
-
213. Evil Chad 2.1
|
|
778
|
-
214. Universal Jailbreak
|
|
779
|
-
215. PersonGPT
|
|
780
|
-
216. BISH
|
|
781
|
-
217. DAN 11.0
|
|
782
|
-
218. Aligned
|
|
783
|
-
219. VIOLET
|
|
784
|
-
220. TranslatorBot
|
|
785
|
-
221. JailBreak
|
|
786
|
-
222. Moralizing Rant
|
|
787
|
-
223. Mr. Blonde
|
|
788
|
-
224. New DAN
|
|
789
|
-
225. GPT-4REAL
|
|
790
|
-
226. DeltaGPT
|
|
791
|
-
227. SWITCH
|
|
792
|
-
228. Jedi Mind Trick
|
|
793
|
-
229. DAN 9.0
|
|
794
|
-
230. Dev Mode (Compact)
|
|
795
|
-
231. OMEGA
|
|
796
|
-
232. Coach Bobby Knight
|
|
797
|
-
233. LiveGPT
|
|
798
|
-
234. DAN Jailbreak
|
|
799
|
-
235. Cooper
|
|
800
|
-
236. Steve
|
|
801
|
-
237. DAN 5.0
|
|
802
|
-
238. Axies
|
|
803
|
-
239. OMNI
|
|
804
|
-
240. Burple
|
|
805
|
-
241. JOHN
|
|
806
|
-
242. An Ethereum Developer
|
|
807
|
-
243. SEO Prompt
|
|
808
|
-
244. Prompt Enhancer
|
|
809
|
-
245. Data Scientist
|
|
810
|
-
246. League of Legends Player
|
|
811
|
-
|
|
812
|
-
**Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
|
|
813
|
-
___
|
|
814
|
-
</details>
|
|
815
|
-
|
|
816
|
-
### 🗣️ Text to Speech - Voicepods, StreamElements
|
|
452
|
+
|
|
453
|
+
#### 📜 List Available LLM Models
|
|
454
|
+
|
|
455
|
+
Retrieve a comprehensive list of all supported LLMs.
|
|
817
456
|
|
|
818
457
|
```python
|
|
819
|
-
from webscout import
|
|
820
|
-
|
|
821
|
-
|
|
458
|
+
from webscout import model
|
|
459
|
+
from rich import print
|
|
460
|
+
|
|
461
|
+
all_models = model.llm.list()
|
|
462
|
+
print("Available models:")
|
|
463
|
+
print(all_models)
|
|
464
|
+
```
|
|
822
465
|
|
|
823
|
-
|
|
824
|
-
audio_file = voicepods.tts(text)
|
|
466
|
+
#### 📊 LLM Model Summary
|
|
825
467
|
|
|
826
|
-
|
|
827
|
-
|
|
468
|
+
Obtain a summary of the available LLMs, including provider details.
|
|
469
|
+
|
|
470
|
+
```python
|
|
471
|
+
from webscout import model
|
|
472
|
+
from rich import print
|
|
473
|
+
|
|
474
|
+
summary = model.llm.summary()
|
|
475
|
+
print("Summary of models:")
|
|
476
|
+
print(summary)
|
|
828
477
|
```
|
|
829
478
|
|
|
479
|
+
#### 🔍 Provider-Specific LLM Models
|
|
480
|
+
|
|
481
|
+
Filter and display LLMs available from a specific provider.
|
|
482
|
+
|
|
483
|
+
```python
|
|
484
|
+
from webscout import model
|
|
485
|
+
from rich import print
|
|
486
|
+
|
|
487
|
+
provider_name = "PerplexityLabs" # Example provider
|
|
488
|
+
available_models = model.llm.get(provider_name)
|
|
489
|
+
|
|
490
|
+
if isinstance(available_models, list):
|
|
491
|
+
print(f"Available models for {provider_name}: {', '.join(available_models)}")
|
|
492
|
+
else:
|
|
493
|
+
print(f"Available models for {provider_name}: {available_models}")
|
|
494
|
+
```
|
|
495
|
+
|
|
496
|
+
### TTS Voices
|
|
497
|
+
|
|
498
|
+
#### 🎤 List Available TTS Voices
|
|
499
|
+
|
|
500
|
+
Retrieve a comprehensive list of all supported TTS voices.
|
|
501
|
+
|
|
502
|
+
```python
|
|
503
|
+
from webscout import model
|
|
504
|
+
from rich import print
|
|
505
|
+
|
|
506
|
+
all_voices = model.tts.list()
|
|
507
|
+
print("Available TTS voices:")
|
|
508
|
+
print(all_voices)
|
|
509
|
+
```
|
|
510
|
+
|
|
511
|
+
#### 📊 TTS Voice Summary
|
|
512
|
+
|
|
513
|
+
Obtain a summary of the available TTS voices, including provider details.
|
|
514
|
+
|
|
515
|
+
```python
|
|
516
|
+
from webscout import model
|
|
517
|
+
from rich import print
|
|
518
|
+
|
|
519
|
+
summary = model.tts.summary()
|
|
520
|
+
print("Summary of TTS voices:")
|
|
521
|
+
print(summary)
|
|
522
|
+
```
|
|
523
|
+
|
|
524
|
+
#### 🔍 Provider-Specific TTS Voices
|
|
525
|
+
|
|
526
|
+
Filter and display TTS voices available from a specific provider.
|
|
527
|
+
|
|
528
|
+
```python
|
|
529
|
+
from webscout import model
|
|
530
|
+
from rich import print
|
|
531
|
+
|
|
532
|
+
provider_name = "ElevenlabsTTS" # Example provider
|
|
533
|
+
available_voices = model.tts.get(provider_name)
|
|
534
|
+
|
|
535
|
+
if isinstance(available_voices, list):
|
|
536
|
+
print(f"Available voices for {provider_name}: {', '.join(available_voices)}")
|
|
537
|
+
elif isinstance(available_voices, dict):
|
|
538
|
+
print(f"Available voices for {provider_name}:")
|
|
539
|
+
for voice_name, voice_id in available_voices.items():
|
|
540
|
+
print(f" - {voice_name}: {voice_id}")
|
|
541
|
+
else:
|
|
542
|
+
print(f"Available voices for {provider_name}: {available_voices}")
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
830
548
|
### 💬 `Duckchat` - Chat with LLM
|
|
831
549
|
|
|
832
550
|
```python
|
|
@@ -1142,7 +860,7 @@ a = AndiSearch()
|
|
|
1142
860
|
print(a.chat("HelpingAI-9B"))
|
|
1143
861
|
```
|
|
1144
862
|
|
|
1145
|
-
###
|
|
863
|
+
### `LLAMA`, `C4ai`, `Venice`, `Copilot`, `HuggingFaceChat`, `TwoAI`, `HeckAI`, `AllenAI`, `PerplexityLabs`, `AkashGPT`, `DeepSeek`, `WiseCat`, `IBMGranite`, `QwenLM`, `ChatGPTGratis`, `TextPollinationsAI`, `GliderAI`, `Cohere`, `REKA`, `GROQ`, `AsyncGROQ`, `OPENAI`, `AsyncOPENAI`, `KOBOLDAI`, `AsyncKOBOLDAI`, `BLACKBOXAI`, `PhindSearch`, `GEMINI`, `DeepInfra`, `AI4Chat`, `Phindv2`, `OLLAMA`, `AndiSearch`, `PIZZAGPT`, `Sambanova`, `DARKAI`, `KOALA`, `Meta`, `AskMyAI`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
|
|
1146
864
|
|
|
1147
865
|
Code is similar to other providers.
|
|
1148
866
|
|
|
@@ -1166,118 +884,6 @@ response = vlm.chat([{
|
|
|
1166
884
|
}])
|
|
1167
885
|
```
|
|
1168
886
|
|
|
1169
|
-
## 💻 Local-LLM
|
|
1170
|
-
|
|
1171
|
-
Webscout can now run GGUF models locally. You can download and run your favorite models with minimal configuration.
|
|
1172
|
-
|
|
1173
|
-
**Example:**
|
|
1174
|
-
|
|
1175
|
-
```python
|
|
1176
|
-
from webscout.Local import *
|
|
1177
|
-
model_path = download_model("Qwen/Qwen2.5-0.5B-Instruct-GGUF", "qwen2.5-0.5b-instruct-q2_k.gguf", token=None)
|
|
1178
|
-
model = Model(model_path, n_gpu_layers=0, context_length=2048)
|
|
1179
|
-
thread = Thread(model, format=chatml)
|
|
1180
|
-
# print(thread.send("hi")) #send a single msg to ai
|
|
1181
|
-
|
|
1182
|
-
# thread.interact() # interact with the model in terminal
|
|
1183
|
-
# start webui
|
|
1184
|
-
# webui = WebUI(thread)
|
|
1185
|
-
# webui.start(host="0.0.0.0", port=8080, ssl=True) #Use ssl=True and make cert and key for https
|
|
1186
|
-
```
|
|
1187
|
-
|
|
1188
|
-
## 🐶 Local-rawdog
|
|
1189
|
-
|
|
1190
|
-
Webscout's local raw-dog feature allows you to run Python scripts within your terminal prompt.
|
|
1191
|
-
|
|
1192
|
-
**Example:**
|
|
1193
|
-
|
|
1194
|
-
```python
|
|
1195
|
-
import webscout.Local as ws
|
|
1196
|
-
from webscout.Local.rawdog import RawDog
|
|
1197
|
-
from webscout.Local.samplers import DefaultSampling
|
|
1198
|
-
from webscout.Local.formats import chatml, AdvancedFormat
|
|
1199
|
-
from webscout.Local.utils import download_model
|
|
1200
|
-
import datetime
|
|
1201
|
-
import sys
|
|
1202
|
-
import os
|
|
1203
|
-
|
|
1204
|
-
repo_id = "YorkieOH10/granite-8b-code-instruct-Q8_0-GGUF"
|
|
1205
|
-
filename = "granite-8b-code-instruct.Q8_0.gguf"
|
|
1206
|
-
model_path = download_model(repo_id, filename, token='')
|
|
1207
|
-
|
|
1208
|
-
# Load the model using the downloaded path
|
|
1209
|
-
model = ws.Model(model_path, n_gpu_layers=10)
|
|
1210
|
-
|
|
1211
|
-
rawdog = RawDog()
|
|
1212
|
-
|
|
1213
|
-
# Create an AdvancedFormat and modify the system content
|
|
1214
|
-
# Use a lambda to generate the prompt dynamically:
|
|
1215
|
-
chat_format = AdvancedFormat(chatml)
|
|
1216
|
-
# **Pre-format the intro_prompt string:**
|
|
1217
|
-
system_content = f"""
|
|
1218
|
-
You are a command-line coding assistant called Rawdog that generates and auto-executes Python scripts.
|
|
1219
|
-
|
|
1220
|
-
A typical interaction goes like this:
|
|
1221
|
-
1. The user gives you a natural language PROMPT.
|
|
1222
|
-
2. You:
|
|
1223
|
-
i. Determine what needs to be done
|
|
1224
|
-
ii. Write a short Python SCRIPT to do it
|
|
1225
|
-
iii. Communicate back to the user by printing to the console in that SCRIPT
|
|
1226
|
-
3. The compiler extracts the script and then runs it using exec(). If there will be an exception raised,
|
|
1227
|
-
it will be send back to you starting with "PREVIOUS SCRIPT EXCEPTION:".
|
|
1228
|
-
4. In case of exception, regenerate error free script.
|
|
1229
|
-
|
|
1230
|
-
If you need to review script outputs before completing the task, you can print the word "CONTINUE" at the end of your SCRIPT.
|
|
1231
|
-
This can be useful for summarizing documents or technical readouts, reading instructions before
|
|
1232
|
-
deciding what to do, or other tasks that require multi-step reasoning.
|
|
1233
|
-
A typical 'CONTINUE' interaction looks like this:
|
|
1234
|
-
1. The user gives you a natural language PROMPT.
|
|
1235
|
-
2. You:
|
|
1236
|
-
i. Determine what needs to be done
|
|
1237
|
-
ii. Determine that you need to see the output of some subprocess call to complete the task
|
|
1238
|
-
iii. Write a short Python SCRIPT to print that and then print the word "CONTINUE"
|
|
1239
|
-
3. The compiler
|
|
1240
|
-
i. Checks and runs your SCRIPT
|
|
1241
|
-
ii. Captures the output and appends it to the conversation as "LAST SCRIPT OUTPUT:"
|
|
1242
|
-
iii. Finds the word "CONTINUE" and sends control back to you
|
|
1243
|
-
4. You again:
|
|
1244
|
-
i. Look at the original PROMPT + the "LAST SCRIPT OUTPUT:" to determine what needs to be done
|
|
1245
|
-
ii. Write a short Python SCRIPT to do it
|
|
1246
|
-
iii. Communicate back to the user by printing to the console in that SCRIPT
|
|
1247
|
-
5. The compiler...
|
|
1248
|
-
|
|
1249
|
-
Please follow these conventions carefully:
|
|
1250
|
-
- Decline any tasks that seem dangerous, irreversible, or that you don't understand.
|
|
1251
|
-
- Always review the full conversation prior to answering and maintain continuity.
|
|
1252
|
-
- If asked for information, just print the information clearly and concisely.
|
|
1253
|
-
- If asked to do something, print a concise summary of what you've done as confirmation.
|
|
1254
|
-
- If asked a question, respond in a friendly, conversational way. Use programmatically-generated and natural language responses as appropriate.
|
|
1255
|
-
- If you need clarification, return a SCRIPT that prints your question. In the next interaction, continue based on the user's response.
|
|
1256
|
-
- Assume the user would like something concise. For example rather than printing a massive table, filter or summarize it to what's likely of interest.
|
|
1257
|
-
- Actively clean up any temporary processes or files you use.
|
|
1258
|
-
- When looking through files, use git as available to skip files, and skip hidden files (.env, .git, etc) by default.
|
|
1259
|
-
- You can plot anything with matplotlib.
|
|
1260
|
-
- ALWAYS Return your SCRIPT inside of a single pair of ``` delimiters. Only the console output of the first such SCRIPT is visible to the user, so make sure that it's complete and don't bother returning anything else.
|
|
1261
|
-
"""
|
|
1262
|
-
chat_format.override('system_content', lambda: system_content)
|
|
1263
|
-
|
|
1264
|
-
thread = ws.Thread(model, format=chat_format, sampler=DefaultSampling)
|
|
1265
|
-
|
|
1266
|
-
while True:
|
|
1267
|
-
prompt = input(">: ")
|
|
1268
|
-
if prompt.lower() == "q":
|
|
1269
|
-
break
|
|
1270
|
-
|
|
1271
|
-
response = thread.send(prompt)
|
|
1272
|
-
|
|
1273
|
-
# Process the response using RawDog
|
|
1274
|
-
script_output = rawdog.main(response)
|
|
1275
|
-
|
|
1276
|
-
if script_output:
|
|
1277
|
-
print(script_output)
|
|
1278
|
-
|
|
1279
|
-
```
|
|
1280
|
-
|
|
1281
887
|
## GGUF
|
|
1282
888
|
|
|
1283
889
|
Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
|
|
@@ -1301,18 +907,6 @@ gguf.convert(
|
|
|
1301
907
|
)
|
|
1302
908
|
```
|
|
1303
909
|
|
|
1304
|
-
## 🤖 Autollama
|
|
1305
|
-
|
|
1306
|
-
Webscout's `autollama` utility downloads a model from Hugging Face and then automatically makes it Ollama-ready.
|
|
1307
|
-
|
|
1308
|
-
```python
|
|
1309
|
-
from webscout.Extra import autollama
|
|
1310
|
-
|
|
1311
|
-
model_path = "Vortex4ai/Jarvis-0.5B"
|
|
1312
|
-
gguf_file = "test2-q4_k_m.gguf"
|
|
1313
|
-
|
|
1314
|
-
autollama.main(model_path, gguf_file)
|
|
1315
|
-
```
|
|
1316
910
|
|
|
1317
911
|
**Command Line Usage:**
|
|
1318
912
|
|
|
@@ -1321,11 +915,6 @@ autollama.main(model_path, gguf_file)
|
|
|
1321
915
|
```bash
|
|
1322
916
|
python -m webscout.Extra.gguf -m "OEvortex/HelpingAI-Lite-1.5T" -u "your_username" -t "your_hf_token" -q "q4_k_m,q5_k_m"
|
|
1323
917
|
```
|
|
1324
|
-
|
|
1325
|
-
* **Autollama:**
|
|
1326
|
-
|
|
1327
|
-
```bash
|
|
1328
|
-
python -m webscout.Extra.autollama -m "OEvortex/HelpingAI-Lite-1.5T" -g "HelpingAI-Lite-1.5T.q4_k_m.gguf"
|
|
1329
918
|
```
|
|
1330
919
|
|
|
1331
920
|
**Note:**
|
|
@@ -1366,3 +955,4 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
1366
955
|
|
|
1367
956
|
* All the amazing developers who have contributed to the project!
|
|
1368
957
|
* The open-source community for their support and inspiration.
|
|
958
|
+
|