webscout 7.2__py3-none-any.whl → 7.4__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 (47) hide show
  1. webscout/Bard.py +2 -2
  2. webscout/Litlogger/core/level.py +3 -0
  3. webscout/Litlogger/core/logger.py +101 -58
  4. webscout/Litlogger/handlers/console.py +14 -31
  5. webscout/Litlogger/handlers/network.py +16 -17
  6. webscout/Litlogger/styles/colors.py +81 -63
  7. webscout/Litlogger/styles/formats.py +163 -80
  8. webscout/Provider/AISEARCH/ISou.py +277 -0
  9. webscout/Provider/AISEARCH/__init__.py +4 -2
  10. webscout/Provider/AISEARCH/genspark_search.py +208 -0
  11. webscout/Provider/AllenAI.py +282 -0
  12. webscout/Provider/Deepinfra.py +52 -37
  13. webscout/Provider/ElectronHub.py +634 -0
  14. webscout/Provider/Glider.py +7 -41
  15. webscout/Provider/HeckAI.py +200 -0
  16. webscout/Provider/Jadve.py +49 -63
  17. webscout/Provider/PI.py +106 -93
  18. webscout/Provider/Perplexitylabs.py +395 -0
  19. webscout/Provider/QwenLM.py +7 -61
  20. webscout/Provider/TTI/FreeAIPlayground/__init__.py +9 -0
  21. webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +206 -0
  22. webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +192 -0
  23. webscout/Provider/TTI/__init__.py +3 -1
  24. webscout/Provider/TTI/piclumen/__init__.py +23 -0
  25. webscout/Provider/TTI/piclumen/async_piclumen.py +268 -0
  26. webscout/Provider/TTI/piclumen/sync_piclumen.py +233 -0
  27. webscout/Provider/TextPollinationsAI.py +28 -6
  28. webscout/Provider/TwoAI.py +200 -0
  29. webscout/Provider/Venice.py +200 -0
  30. webscout/Provider/WiseCat.py +1 -18
  31. webscout/Provider/__init__.py +14 -0
  32. webscout/Provider/akashgpt.py +312 -0
  33. webscout/Provider/chatglm.py +5 -5
  34. webscout/Provider/freeaichat.py +251 -0
  35. webscout/Provider/koala.py +9 -1
  36. webscout/Provider/yep.py +5 -25
  37. webscout/__init__.py +1 -0
  38. webscout/version.py +1 -1
  39. webscout/webscout_search.py +82 -2
  40. webscout/webscout_search_async.py +58 -1
  41. webscout/yep_search.py +297 -0
  42. {webscout-7.2.dist-info → webscout-7.4.dist-info}/METADATA +99 -65
  43. {webscout-7.2.dist-info → webscout-7.4.dist-info}/RECORD +47 -30
  44. {webscout-7.2.dist-info → webscout-7.4.dist-info}/WHEEL +1 -1
  45. {webscout-7.2.dist-info → webscout-7.4.dist-info}/LICENSE.md +0 -0
  46. {webscout-7.2.dist-info → webscout-7.4.dist-info}/entry_points.txt +0 -0
  47. {webscout-7.2.dist-info → webscout-7.4.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 7.2
3
+ Version: 7.4
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
@@ -29,8 +29,9 @@ Requires-Dist: wheel
29
29
  Requires-Dist: pip
30
30
  Requires-Dist: mistune
31
31
  Requires-Dist: tenacity
32
- Requires-Dist: curl_cffi
32
+ Requires-Dist: curl-cffi
33
33
  Requires-Dist: nest-asyncio
34
+ Requires-Dist: websocket-client
34
35
  Requires-Dist: rich
35
36
  Requires-Dist: markdownify
36
37
  Requires-Dist: requests
@@ -39,7 +40,7 @@ Requires-Dist: lxml>=5.2.2
39
40
  Requires-Dist: termcolor
40
41
  Requires-Dist: orjson
41
42
  Requires-Dist: PyYAML
42
- Requires-Dist: tls_client
43
+ Requires-Dist: tls-client
43
44
  Requires-Dist: clipman
44
45
  Requires-Dist: playsound==1.2.2
45
46
  Requires-Dist: ollama
@@ -52,8 +53,8 @@ Requires-Dist: emoji
52
53
  Requires-Dist: openai
53
54
  Requires-Dist: prompt-toolkit
54
55
  Requires-Dist: primp
55
- Requires-Dist: pyreqwest_impersonate
56
- Requires-Dist: gradio_client
56
+ Requires-Dist: pyreqwest-impersonate
57
+ Requires-Dist: gradio-client
57
58
  Requires-Dist: psutil
58
59
  Requires-Dist: pygetwindow
59
60
  Requires-Dist: aiohttp
@@ -64,27 +65,14 @@ Provides-Extra: local
64
65
  Requires-Dist: llama-cpp-python; extra == "local"
65
66
  Requires-Dist: colorama; extra == "local"
66
67
  Requires-Dist: numpy; extra == "local"
67
- Requires-Dist: huggingface_hub[cli]; extra == "local"
68
+ Requires-Dist: huggingface-hub[cli]; extra == "local"
68
69
  Requires-Dist: unicorn; extra == "local"
69
- Dynamic: author
70
- Dynamic: author-email
71
- Dynamic: classifier
72
- Dynamic: description
73
- Dynamic: description-content-type
74
- Dynamic: license
75
- Dynamic: project-url
76
- Dynamic: provides-extra
77
- Dynamic: requires-dist
78
- Dynamic: requires-python
79
- Dynamic: summary
80
-
81
-
82
- [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/official_helpingai)
70
+
71
+ [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/PyscoutAI)
83
72
  [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/oevortex/)
84
73
  [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/oe-vortex-29a407265/)
85
74
  [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black)](https://buymeacoffee.com/oevortex)
86
75
 
87
-
88
76
  <div align="center">
89
77
  <a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> &bull;
90
78
  <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> &bull;
@@ -96,7 +84,7 @@ Dynamic: summary
96
84
  <p align="center">
97
85
  <strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
98
86
  <br>
99
- Discover insights with Google, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
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; run offline language models; and much more!
100
88
  </p>
101
89
 
102
90
  <div align="center">
@@ -108,9 +96,11 @@ Dynamic: summary
108
96
  ---
109
97
 
110
98
  ## 🚀 Features
99
+
111
100
  * **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
112
101
  * **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
113
102
  * **[YouTube Toolkit](webscout/Extra/YTToolkit):** Advanced YouTube video and transcript management with multi-language support, versatile downloading, and intelligent data extraction
103
+ * **[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
114
104
  * **Tempmail & Temp Number:** Generate temporary email addresses and phone numbers for enhanced privacy.
115
105
  * **[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.
116
106
  * **Offline LLMs:** Utilize powerful language models offline with GGUF support.
@@ -124,8 +114,10 @@ Dynamic: summary
124
114
  * **[LitAgent](webscout/litagent/Readme.md):** Powerful and modern user agent generator that keeps your requests fresh and undetectable
125
115
  * **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
126
116
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
117
+ * **[AISearch](webscout/Provider/AISEARCH/README.md):** AI Search Providers offer powerful and flexible AI-powered search Search Engine
127
118
 
128
119
  ## ⚙️ Installation
120
+
129
121
  ```python
130
122
  pip install -U webscout
131
123
  ```
@@ -145,12 +137,13 @@ python -m webscout --help
145
137
  | python -m webscout suggestions -k Text | CLI function to perform a suggestions search using Webscout. |
146
138
  | python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
147
139
  | python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
148
- | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
140
+ | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
149
141
  | python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
150
142
 
151
- [Go To TOP](#webscout-️)
143
+ [Go To TOP](#webscout-️)
152
144
 
153
145
  ## 🌍 Regions
146
+
154
147
  <details>
155
148
  <summary>Expand</summary>
156
149
 
@@ -223,17 +216,14 @@ python -m webscout --help
223
216
  vn-vi for Vietnam
224
217
  wt-wt for No region
225
218
 
226
-
227
219
  </details>
228
220
 
229
-
230
221
  [Go To TOP](#webscout-️)
231
222
 
232
-
233
-
234
223
  ## ☀️ Weather
235
224
 
236
- ### 1. Weather
225
+ ### 1. Weather
226
+
237
227
  ```python
238
228
  from webscout import weather as w
239
229
  weather = w.get("Qazigund")
@@ -241,6 +231,7 @@ print(weather)
241
231
  ```
242
232
 
243
233
  ### 2. Weather ASCII
234
+
244
235
  ```python
245
236
  from webscout import weather_ascii as w
246
237
  weather = w.get("Qazigund")
@@ -285,8 +276,44 @@ if __name__ == "__main__":
285
276
  asyncio.run(main())
286
277
  ```
287
278
 
279
+ ...
280
+
281
+ ### 🔍 `YepSearch` - Search using Yep.com
282
+
283
+ ```python
284
+ from webscout import YepSearch
285
+
286
+ # Initialize YepSearch
287
+ yep = YepSearch(
288
+ timeout=20, # Optional: Set custom timeout
289
+ proxies=None, # Optional: Use proxies
290
+ verify=True # Optional: SSL verification
291
+ )
292
+
293
+ # Text Search
294
+ text_results = yep.text(
295
+ keywords="artificial intelligence",
296
+ region="all", # Optional: Region for results
297
+ safesearch="moderate", # Optional: "on", "moderate", "off"
298
+ max_results=10 # Optional: Limit number of results
299
+ )
300
+ print(text_results)
301
+
302
+ # Image Search
303
+ image_results = yep.images(
304
+ keywords="nature photography",
305
+ region="all",
306
+ safesearch="moderate",
307
+ max_results=10
308
+ )
309
+ print(image_results)
288
310
 
289
311
 
312
+ # Suggestions
313
+ suggestions = yep.suggestions("hist")
314
+ print(suggestions)
315
+ ```
316
+
290
317
  ## 🔍 GoogleS (formerly DWEBS)
291
318
 
292
319
  ```python
@@ -298,7 +325,6 @@ for result in results:
298
325
  print(result)
299
326
  ```
300
327
 
301
-
302
328
  ## 🦆 WEBS and AsyncWEBS
303
329
 
304
330
  The `WEBS` and `AsyncWEBS` classes are used to retrieve search results from DuckDuckGo.com.
@@ -368,7 +394,7 @@ await main()
368
394
 
369
395
  ## 💻 Usage of WEBS
370
396
 
371
- ### 1. `text()` - Text Search by DuckDuckGo.com
397
+ ### 1. `text()` - Text Search by DuckDuckGo.com
372
398
 
373
399
  ```python
374
400
  from webscout import WEBS
@@ -382,7 +408,7 @@ with WEBS() as WEBS:
382
408
  print(r)
383
409
  ```
384
410
 
385
- ### 2. `answers()` - Instant Answers by DuckDuckGo.com
411
+ ### 2. `answers()` - Instant Answers by DuckDuckGo.com
386
412
 
387
413
  ```python
388
414
  from webscout import WEBS
@@ -393,7 +419,7 @@ with WEBS() as WEBS:
393
419
  print(r)
394
420
  ```
395
421
 
396
- ### 3. `images()` - Image Search by DuckDuckGo.com
422
+ ### 3. `images()` - Image Search by DuckDuckGo.com
397
423
 
398
424
  ```python
399
425
  from webscout import WEBS
@@ -415,7 +441,7 @@ with WEBS() as WEBS:
415
441
  print(r)
416
442
  ```
417
443
 
418
- ### 4. `videos()` - Video Search by DuckDuckGo.com
444
+ ### 4. `videos()` - Video Search by DuckDuckGo.com
419
445
 
420
446
  ```python
421
447
  from webscout import WEBS
@@ -436,7 +462,7 @@ with WEBS() as WEBS:
436
462
  print(r)
437
463
  ```
438
464
 
439
- ### 5. `news()` - News Search by DuckDuckGo.com
465
+ ### 5. `news()` - News Search by DuckDuckGo.com
440
466
 
441
467
  ```python
442
468
  from webscout import WEBS
@@ -517,18 +543,29 @@ with WEBS() as WEBS:
517
543
  print(r)
518
544
  ```
519
545
 
546
+ ### 9. `weather()` - Weather Information by DuckDuckGo.com
547
+
548
+ ```python
549
+ from webscout import WEBS
550
+
551
+ # Get weather information for a location using DuckDuckGo.com
552
+ with WEBS() as webs:
553
+ weather_data = webs.weather("New York")
554
+ print(weather_data)
520
555
 
521
- ## 🎭 ALL Acts
556
+ ```
557
+
558
+ ## ALL Acts
522
559
 
523
560
  <details>
524
561
  <summary>Expand</summary>
525
562
 
526
- ## Webscout Supported Acts:
563
+ ## Webscout Supported Acts
527
564
 
528
565
  1. Free-mode
529
566
  2. Linux Terminal
530
567
  3. English Translator and Improver
531
- 4. `position` Interviewer
568
+ 4. `position` Interviewer
532
569
  5. JavaScript Console
533
570
  6. Excel Sheet
534
571
  7. English Pronunciation Helper
@@ -686,7 +723,7 @@ with WEBS() as WEBS:
686
723
  159. Wikipedia page
687
724
  160. Japanese Kanji quiz machine
688
725
  161. note-taking assistant
689
- 162. `language` Literary Critic
726
+ 162. `language` Literary Critic
690
727
  163. Cheap Travel Ticket Advisor
691
728
  164. DALL-E
692
729
  165. MathBot
@@ -711,7 +748,7 @@ with WEBS() as WEBS:
711
748
  184. Hypothetical response
712
749
  185. BH
713
750
  186. Text Continuation
714
- 187. Dude v3
751
+ 187. Dude v3
715
752
  188. SDA (Superior DAN)
716
753
  189. AntiGPT
717
754
  190. BasedGPT v2
@@ -760,19 +797,19 @@ with WEBS() as WEBS:
760
797
  233. LiveGPT
761
798
  234. DAN Jailbreak
762
799
  235. Cooper
763
- 236. Steve
800
+ 236. Steve
764
801
  237. DAN 5.0
765
802
  238. Axies
766
803
  239. OMNI
767
804
  240. Burple
768
- 241. JOHN
805
+ 241. JOHN
769
806
  242. An Ethereum Developer
770
807
  243. SEO Prompt
771
808
  244. Prompt Enhancer
772
809
  245. Data Scientist
773
810
  246. League of Legends Player
774
811
 
775
- **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
812
+ **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
776
813
  ___
777
814
  </details>
778
815
 
@@ -866,7 +903,7 @@ for chunk in response:
866
903
 
867
904
  ```
868
905
 
869
- ### ⬛ `BlackBox` - Search/Chat with BlackBox
906
+ ### ⬛ `BlackBox` - Search/Chat with BlackBox
870
907
 
871
908
  ```python
872
909
  from webscout import BLACKBOXAI
@@ -893,8 +930,7 @@ r = ai.chat(prompt)
893
930
  print(r)
894
931
  ```
895
932
 
896
-
897
- ### 🤖 `Meta AI` - Chat with Meta AI
933
+ ### 🤖 `Meta AI` - Chat with Meta AI
898
934
 
899
935
  ```python
900
936
  from webscout import Meta
@@ -928,7 +964,7 @@ for media in response["media"]:
928
964
 
929
965
  ```
930
966
 
931
- ### `KOBOLDAI`
967
+ ### `KOBOLDAI`
932
968
 
933
969
  ```python
934
970
  from webscout import KOBOLDAI
@@ -948,7 +984,7 @@ print(message)
948
984
 
949
985
  ```
950
986
 
951
- ### `Reka` - Chat with Reka
987
+ ### `Reka` - Chat with Reka
952
988
 
953
989
  ```python
954
990
  from webscout import REKA
@@ -960,7 +996,7 @@ response_str = a.chat(prompt)
960
996
  print(response_str)
961
997
  ```
962
998
 
963
- ### `Cohere` - Chat with Cohere
999
+ ### `Cohere` - Chat with Cohere
964
1000
 
965
1001
  ```python
966
1002
  from webscout import Cohere
@@ -972,7 +1008,7 @@ response_str = a.chat(prompt)
972
1008
  print(response_str)
973
1009
  ```
974
1010
 
975
- ### `Deepinfra`
1011
+ ### `Deepinfra`
976
1012
 
977
1013
  ```python
978
1014
  from webscout import DeepInfra
@@ -999,8 +1035,7 @@ message = ai.get_message(response)
999
1035
  print(message)
1000
1036
  ```
1001
1037
 
1002
-
1003
- ### `GROQ`
1038
+ ### `GROQ`
1004
1039
 
1005
1040
  ```python
1006
1041
  from webscout import GROQ
@@ -1087,7 +1122,7 @@ print(response_search)
1087
1122
 
1088
1123
  ```
1089
1124
 
1090
- ### `LLama 70b` - Chat with Meta's Llama 3 70b
1125
+ ### `LLama 70b` - Chat with Meta's Llama 3 70b
1091
1126
 
1092
1127
  ```python
1093
1128
 
@@ -1099,7 +1134,7 @@ r = llama.chat("What is the meaning of life?")
1099
1134
  print(r)
1100
1135
  ```
1101
1136
 
1102
- ### `AndiSearch`
1137
+ ### `AndiSearch`
1103
1138
 
1104
1139
  ```python
1105
1140
  from webscout import AndiSearch
@@ -1107,8 +1142,7 @@ a = AndiSearch()
1107
1142
  print(a.chat("HelpingAI-9B"))
1108
1143
  ```
1109
1144
 
1110
-
1111
- ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek
1145
+ ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek, FreeAIChat, AkashGPT, PerplexityLabs, AllenAI, HeckAI, TwoAI, Venice
1112
1146
 
1113
1147
  Code is similar to other providers.
1114
1148
 
@@ -1132,7 +1166,7 @@ response = vlm.chat([{
1132
1166
  }])
1133
1167
  ```
1134
1168
 
1135
- ## 💻 Local-LLM
1169
+ ## 💻 Local-LLM
1136
1170
 
1137
1171
  Webscout can now run GGUF models locally. You can download and run your favorite models with minimal configuration.
1138
1172
 
@@ -1244,7 +1278,7 @@ while True:
1244
1278
 
1245
1279
  ```
1246
1280
 
1247
- ## GGUF
1281
+ ## GGUF
1248
1282
 
1249
1283
  Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
1250
1284
 
@@ -1283,21 +1317,22 @@ autollama.main(model_path, gguf_file)
1283
1317
  **Command Line Usage:**
1284
1318
 
1285
1319
  * **GGUF Conversion:**
1320
+
1286
1321
  ```bash
1287
1322
  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"
1288
1323
  ```
1289
1324
 
1290
1325
  * **Autollama:**
1326
+
1291
1327
  ```bash
1292
1328
  python -m webscout.Extra.autollama -m "OEvortex/HelpingAI-Lite-1.5T" -g "HelpingAI-Lite-1.5T.q4_k_m.gguf"
1293
1329
  ```
1294
1330
 
1295
- **Note:**
1331
+ **Note:**
1296
1332
 
1297
1333
  * Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
1298
1334
  * The `model_path` in `autollama` is the Hugging Face model ID, and `gguf_file` is the GGUF file ID.
1299
1335
 
1300
-
1301
1336
  <div align="center">
1302
1337
  <!-- Replace `#` with your actual links -->
1303
1338
  <a href="https://t.me/official_helpingai"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
@@ -1308,13 +1343,13 @@ autollama.main(model_path, gguf_file)
1308
1343
 
1309
1344
  <div align="center">
1310
1345
  <!-- Replace `#` with your actual links -->
1311
- <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1346
+ <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1312
1347
  </div>
1313
1348
  <div align="center">
1314
- <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1349
+ <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1315
1350
  </div>
1316
1351
  <div align="center">
1317
- <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1352
+ <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1318
1353
  </div>
1319
1354
 
1320
1355
  ## 🤝 Contributing
@@ -1327,7 +1362,6 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1327
1362
  4. Push your branch to your forked repository.
1328
1363
  5. Submit a pull request to the main repository.
1329
1364
 
1330
-
1331
1365
  ## 🙏 Acknowledgments
1332
1366
 
1333
1367
  * All the amazing developers who have contributed to the project!
@@ -1,10 +1,10 @@
1
1
  webscout/AIauto.py,sha256=h8bz7FeYMbSXlNvIynn4e2aqydVcFjrONPckaJ3j_b4,7185
2
2
  webscout/AIbase.py,sha256=gksLU3cxp_GnbUqD4mX58tlr4-e6_rqdwVhTUXmJncM,3762
3
3
  webscout/AIutel.py,sha256=0AP3yGTVc04QqqfZSm50jgL87_ot9i44XCe9j9DaHLY,12460
4
- webscout/Bard.py,sha256=kPfn36bC_0y9AAhv_kXEfAA6bNiD4BfDY9c-CV8_9e8,21144
4
+ webscout/Bard.py,sha256=uQHFd9ryRTXTyT_1OrVmW4jDMxEmHGIwJflLwjcSFPI,21132
5
5
  webscout/DWEBS.py,sha256=AG3_nATzHRDjYZclYuk0jdUNHlOwNkH9jMqEiWaxR3s,19674
6
6
  webscout/LLM.py,sha256=p8Zq5P8lCcg98R1b6YQeUIzmf0b6pJDX_QDjwOXl870,16788
7
- webscout/__init__.py,sha256=ABIIQ5KBftowGxWHkHoPK1VOQlExJcDypTwbyiUsifM,840
7
+ webscout/__init__.py,sha256=XQR6yIGHMTyoBtvRRYXfzngzVCNFYl9DCF6cp__7_Xk,867
8
8
  webscout/__main__.py,sha256=qtkMZK5jzQ79ZkFAuZBxMgayuhmw3aRDj1F8Pt06NW4,108
9
9
  webscout/cli.py,sha256=VBGdH1ns8WjLDwppZ9b6I2rGtaIWG6oORW-4K-syEWI,12313
10
10
  webscout/conversation.py,sha256=hj-T6ja2EtaB69KTXyCB5srmA9ym6ejeyI5qntvfR6I,8946
@@ -14,9 +14,10 @@ webscout/prompt_manager.py,sha256=Jc0demWN6M6QcwRp14aHZR05r_PVPOaG8PnQkO7pDZ4,98
14
14
  webscout/tempid.py,sha256=hxzPVBjxAa5GLBQ9fE6ob5ixJpQeU-mgdfTzh33EHvE,4926
15
15
  webscout/update_checker.py,sha256=DuibA_i2if47V40luhPBY0AeVEo8RjkDFzPElRISQn4,4867
16
16
  webscout/utils.py,sha256=LVW7U0XcGYqigqxV6D5YXeGMrc_mt7PnNG_YnKf9bBM,3059
17
- webscout/version.py,sha256=6iGNblRylnkOtzxoMKyv4zjcI8c0UyTbv1sF3-lL0ps,44
18
- webscout/webscout_search.py,sha256=tVj64sFzSG-b984TWOkU_csyZr5tWMxeWy4d4nH8fVY,46028
19
- webscout/webscout_search_async.py,sha256=DvfFPs6BETDmCc6w99930XMdXE6WqbmVOwZr7HXeuGg,25301
17
+ webscout/version.py,sha256=8MMpUMYCxhOeS8LAtRcGSnOca3mFGqIIRAG-mTjB9mQ,44
18
+ webscout/webscout_search.py,sha256=Kl2gDj03xZeg4g-szln7R_f8oAbZ4_tjKtrXVgBfG1U,49854
19
+ webscout/webscout_search_async.py,sha256=wlLv4vn8UP54R76vsTwvnUgpP0a6nPAPDdX2Cz8F_Dg,27310
20
+ webscout/yep_search.py,sha256=IuuhtTN6_H__EwtMpXs_o_0SEeujV68hfAS2teAgoZc,10132
20
21
  webscout/Extra/__init__.py,sha256=FbDnwI3zZdoQFosA5Q2bIYpJlHUKFWiFmFKvnk9xWKY,153
21
22
  webscout/Extra/autollama.py,sha256=Y8ruE8KI6gr49PLU30yvDcmgfYBBJSN5yOjJLts_UwM,7795
22
23
  webscout/Extra/gguf.py,sha256=YmqDA8ljxM6VIRDi6YX7Gea26RXXv7vdiry6lVz6eps,15512
@@ -42,15 +43,15 @@ webscout/Extra/autocoder/autocoder_utiles.py,sha256=I7pugVx5BjLjbNj59-0m880Er0TL
42
43
  webscout/Extra/autocoder/rawdog.py,sha256=VA5DpdiLd5Eqc_7Is_QoPpfLh_658rV4D1tKDmysTaw,25617
43
44
  webscout/Litlogger/__init__.py,sha256=0lHzxdl5CpGBAABvW4YqVb1-FOibEvTe4SOx8ORHmzs,1568
44
45
  webscout/Litlogger/core/__init__.py,sha256=zgZvP-lBrspukBu8LhQb7SUkSIh9HdsVbzpoZyaq110,130
45
- webscout/Litlogger/core/level.py,sha256=MkW_4L6u9DzWqtR9bAV2dBLtjv5Q9itjE4y41vw17IA,505
46
- webscout/Litlogger/core/logger.py,sha256=hEFIFQ9mCUGVEseeUjS8aqVmAVAqksLnLABLaQCLcFA,4222
46
+ webscout/Litlogger/core/level.py,sha256=fe0Lz5G-gMpsKAzoLgTUJ53IaFaa5ruXiw4q1ritGI4,584
47
+ webscout/Litlogger/core/logger.py,sha256=WwN3ot9_bnhPRKhC8EKwCjL8r8Tyq6ii-H7CTDmLC3s,6196
47
48
  webscout/Litlogger/handlers/__init__.py,sha256=a6ZQUE6IZud9gUNnubPwUPJGOGcL648Tl_w3FT85wTQ,294
48
- webscout/Litlogger/handlers/console.py,sha256=sj1NM_GyrbV3I44JZflOIGyppsYsv1ITiCi1naTPsyQ,1699
49
+ webscout/Litlogger/handlers/console.py,sha256=iM1O8j6h2Z78volyOdFzOnysoYfePnYeyEeYU299qnE,1287
49
50
  webscout/Litlogger/handlers/file.py,sha256=FTHyxOOSFNl7Oamq1ASenJSEq1yDB5k1eokCMxfnjXE,5077
50
- webscout/Litlogger/handlers/network.py,sha256=TGwAAHhK-8-jMVDRGWzrIvJFuxcM5EI33J54YeiG7JM,6117
51
+ webscout/Litlogger/handlers/network.py,sha256=27jJvM5hzhk994jcUO_o7r409Tukr5CwEgRy32-9Aa0,6235
51
52
  webscout/Litlogger/styles/__init__.py,sha256=Cla8fPBziCs0JcJgMVAd9CJl5eMEUDUT6JQ6R_u_T_w,188
52
- webscout/Litlogger/styles/colors.py,sha256=IS2LpiIxIUZW6Mi_jADsqaIHNEGF_qygwofzZKNtSko,8665
53
- webscout/Litlogger/styles/formats.py,sha256=uzfbHyOEHAcGS8LDu2V9t6VmqFnQIEj7Mbea2EUUaKA,10103
53
+ webscout/Litlogger/styles/colors.py,sha256=PtcJXfvAZUx4vt2nneHDEaehUOrO4citSr65DZUdm3E,9321
54
+ webscout/Litlogger/styles/formats.py,sha256=IV8ahZRE8yDmhvCT4voe-ZI-5dTS4YI7_h1Hw69i4H8,13272
54
55
  webscout/Litlogger/styles/text.py,sha256=JLz1oUve9cHCxiHA8mj1cnvFKvQkvvPZgawHBYPWaiU,3135
55
56
  webscout/Litlogger/utils/__init__.py,sha256=G9WTxWGbDMt07Sh6OyLf4rrjjFKiaWTfZBKM8QZGtuI,206
56
57
  webscout/Litlogger/utils/detectors.py,sha256=nOogjO2eu22PpIAq20qyoBQFNXdiJc2lI7l-XqVDltY,4785
@@ -64,6 +65,7 @@ webscout/Local/thread.py,sha256=ctnoJtkOpKbpdlqCjsnyM2sI-3_AKg9PzNwS3QAIifQ,2360
64
65
  webscout/Local/ui.py,sha256=FhqBcC7SVHwRfvrnTduoa7gpQNWYzrSc7OGm89ErNPY,15064
65
66
  webscout/Local/utils.py,sha256=kYXfR9h4JFojkiKQhF1XHclqX0vB0qPKOkfYKjrgwuc,13216
66
67
  webscout/Provider/AI21.py,sha256=JBh-xnspxTZNMcl-Gd0Cgseqht9gTM64TUv9I4Imc9k,6218
68
+ webscout/Provider/AllenAI.py,sha256=wvelD3lHyaLiOPPH-C2EGJJOQDkY4Jdfr9xQXRi2LnA,10949
67
69
  webscout/Provider/Amigo.py,sha256=LkZuvFUwkmdzgMhUEMYvXKpNpLstjznRMe-CQydYO7g,11637
68
70
  webscout/Provider/Andi.py,sha256=-vqXWlJcHzhfZ-iW4qJy9yxzctPKp2RdmdW02hf4XLs,8863
69
71
  webscout/Provider/Bing.py,sha256=zxIzq7dlqaLskx9LsYppbMJuwfGtYid3Uh0gIhZ0hps,9001
@@ -75,15 +77,17 @@ webscout/Provider/Cloudflare.py,sha256=DgIYvYMZpuolh6JTFWiJEKL-WRWF6fBdmpMg0LmkY
75
77
  webscout/Provider/Cohere.py,sha256=oL9kAv--RSkEQxwkPTq1Wi57Wkgg0WNvL82CpTj22YY,8264
76
78
  webscout/Provider/DARKAI.py,sha256=kVElPYVh_VchfGylR4YzC3orrPJPyPoOpSolc62b5eY,8944
77
79
  webscout/Provider/DeepSeek.py,sha256=xa_ct5ux6K7GGoaruKWUdykNpMQQvnkMWAl5BhWvj1A,8435
78
- webscout/Provider/Deepinfra.py,sha256=3EhVFJF7CDjEtOgosIDK4arRqxjch81jQL1Xaaa2vbM,8220
80
+ webscout/Provider/Deepinfra.py,sha256=ZuKmzg0j3_C8kPv9MuJucMkP3MXllQ07Jbsw2gtFzEc,8701
79
81
  webscout/Provider/DiscordRocks.py,sha256=fRkVBCyDMZf0SoaNPK7KXAsh8mQj0JWDb7ifYpL9PQQ,11372
80
82
  webscout/Provider/EDITEE.py,sha256=9rq7c84XoIoRBqd0qgW-Ebu3lyffhicSOtUvMtAjO0s,7742
83
+ webscout/Provider/ElectronHub.py,sha256=FYSWV-ujltkRR0dn7xLmDuSgiZE8-sfn1O5NjW4a5DU,20777
81
84
  webscout/Provider/Free2GPT.py,sha256=3c1tLsYhYCBdjBStLfQvUII3Vojw9-DZpgjyK_T13a4,9197
82
85
  webscout/Provider/GPTWeb.py,sha256=xh_mnBko6RDyz2v3KhMux-yIipipkZfVVVoUJWkbzcQ,7466
83
86
  webscout/Provider/Gemini.py,sha256=0ohprs4SZsH2hRCYXWWMXiBP5qCvAmFoJAdnP6BR5yA,7295
84
- webscout/Provider/Glider.py,sha256=ZQwM86ZPmEvIHj7jFFZ1x80ij0wgnY6pXQCWmZ3LTY0,8906
87
+ webscout/Provider/Glider.py,sha256=6WjnnxwBm7uIlHidbMI-aSFJalmJAwmCRCTSO1X8UDA,7325
85
88
  webscout/Provider/Groq.py,sha256=N6iRcxBhtsKdaJNAD5oMauPZFW8Kti2Lpiss7GN5mJ4,29062
86
- webscout/Provider/Jadve.py,sha256=XjsL9dyn8yNd9lgI08eb3dlhiC_Efm9FY7rzGbfFBQ4,10508
89
+ webscout/Provider/HeckAI.py,sha256=mulDtFUsWniNvSh1xh1hQZhniWGpgIOhnErVKeP2cho,7505
90
+ webscout/Provider/Jadve.py,sha256=MFMsTPbZC9QJjyS23zvzU6HMq31rqKpos7vp-LEhIk8,10112
87
91
  webscout/Provider/Koboldai.py,sha256=gpRgyDe4OQWwNqT7MWnNrJx4dnFmCW23KUx0Ezjgchk,15185
88
92
  webscout/Provider/Llama.py,sha256=N01p3ZVD1HgRnNNxhjRhBVD4m_qiextdyF1KDfJlqbE,7703
89
93
  webscout/Provider/Llama3.py,sha256=O2XJKoQD2bYq9T_PyFW36mFy3yNXYMuGSBzlfFzVdo8,8106
@@ -91,32 +95,37 @@ webscout/Provider/Marcus.py,sha256=UkCr3GgoF6YB6x3PdA2iZOPivfkD8lXh--yM16iPAh0,7
91
95
  webscout/Provider/Netwrck.py,sha256=MgzLg-Z6QOPUlnK08oKoPw2JDvZrHClacbiU1YmC06w,9465
92
96
  webscout/Provider/OLLAMA.py,sha256=RQXJt-PJYnA15_IXhUy4mM9qwm4PcBMfINaZm2KG6zE,7018
93
97
  webscout/Provider/Openai.py,sha256=mpJ9VgIyvW6uo0-jIcx5Qcz4PIUAj3xVLOgKrB1z9pU,20074
94
- webscout/Provider/PI.py,sha256=2Sbwk4ZPciFOWFfth9AKrZ8eEBT0DwFuN_O3aqXZqiQ,11582
98
+ webscout/Provider/PI.py,sha256=A2Tr7DJXf3jkB8JVcWfQSmL4hAHwrXdUcKrfv50I2-E,11988
99
+ webscout/Provider/Perplexitylabs.py,sha256=_g6J91ca4qlRDPBaUvAL5ZZaOJjdmUVamjomS8itZ8M,15687
95
100
  webscout/Provider/Phind.py,sha256=FaE10xQJ_TluRnzA_t7SxXsqgKzTfXR5lLGla2DQVBM,19467
96
101
  webscout/Provider/PizzaGPT.py,sha256=sYijGNHFKry1Uai4CPcsaBl2UQ_rB3lksIdAvpqW6FA,9070
97
- webscout/Provider/QwenLM.py,sha256=_iV84_jCIhnoqFwjLtSFBCRL_JNZeEKCNCgkO-LE5eY,13056
102
+ webscout/Provider/QwenLM.py,sha256=PA7Sq00E-eAjmePqnDYmLgzjdHbriwH6lIiivpJWLwM,10478
98
103
  webscout/Provider/Reka.py,sha256=dWw4vX91nJhAn-X1SXK72gttRaTqWNGUBFaeRJobTJg,8519
99
104
  webscout/Provider/TeachAnything.py,sha256=6scp1tzcc5z_TKUALArQ4APCNElHJ7SzsJoiB71o0V0,7169
100
- webscout/Provider/TextPollinationsAI.py,sha256=4msd-aJOB4Ke90T0TZlU_W3kQbJsN52MtvSfsC1KiG0,8750
101
- webscout/Provider/WiseCat.py,sha256=lZeOCd_eyhzXlEYIkLc3vqSO0SuCdCqhXd2rJ5iCaj8,6598
105
+ webscout/Provider/TextPollinationsAI.py,sha256=2UyorUNaOxe58RyblbAdkHPrIg5zgS7WvUEMqAJ216o,9869
106
+ webscout/Provider/TwoAI.py,sha256=QmUC5DzkaxxJQ7lkn4EN3XS6RnuEwho4C3qzaVul3Zk,7240
107
+ webscout/Provider/Venice.py,sha256=Jce4282i9pkr6-nwOvNqvwGzotGjBcU7PXr9kqvr1q4,7223
108
+ webscout/Provider/WiseCat.py,sha256=OKDe-p4puC70BLslD12_cUfFZAls8K55MJ7M5pVwOEc,5988
102
109
  webscout/Provider/Youchat.py,sha256=LmPskUWaOJlJSYsGeHsu5riD1X6Rp6pFmdApZh_t98I,10205
103
- webscout/Provider/__init__.py,sha256=btcvXQN-Kcs6tee7WkZv6dvOdj_VEr8sgvLzxLlIna0,3064
110
+ webscout/Provider/__init__.py,sha256=Sir3adO8HK_kEcWfsuL_xSVd4IQ4MiQTVuYXLGJ-34o,3367
104
111
  webscout/Provider/ai4chat.py,sha256=av96iS4QPt9IzhcswowmDY2F8IUSLl1YVHZ4bAbfO-s,8140
105
112
  webscout/Provider/aimathgpt.py,sha256=BdXNxEHQP11p6m0wl2Q-uben46A6lMKOg89utV1S7aI,7320
113
+ webscout/Provider/akashgpt.py,sha256=S9sZ3VoAOlBG6d-138Mrc_YfQyAhkTYA9t3eIVhopkI,11626
106
114
  webscout/Provider/askmyai.py,sha256=MX3883xxpMe5GUahyQOwR4ZR_Oa_zAg4N7ksZ4zhB9s,5904
107
115
  webscout/Provider/bagoodex.py,sha256=OdYIyvypX-Vkok9zAr6F5NwFQx_z0bKhiw8U4tTFw5o,5023
108
116
  webscout/Provider/cerebras.py,sha256=6lbXnzTsTgcWQFgNA5dBI1MumSEc6EljJ5GI_YQoyMQ,8586
109
- webscout/Provider/chatglm.py,sha256=Ls-HFp7tcWYJwwniyu6yw75DarqD97DMTA9ND5skCts,8251
117
+ webscout/Provider/chatglm.py,sha256=QPqUd9Wb_waoYe6ctMvTZpRigCuWlbvFozfwHRSd6o4,8191
110
118
  webscout/Provider/cleeai.py,sha256=ZIPm2dT8H8BxGSLHsgp6aDWn3DVOxAOcFfkMNH1UK0I,7979
111
119
  webscout/Provider/dgaf.py,sha256=KMzeAnKR12cGWcqQGZi56VoN6JChIrryCBOYSB0aQOE,8881
112
120
  webscout/Provider/elmo.py,sha256=I7qq2YvKht28Z2KFTxj3wNyekJM6gAJCExilB-_UkzQ,9308
121
+ webscout/Provider/freeaichat.py,sha256=VIyW9Yrlu6GCx4CwnEHOeQeOGjAkOgtqR9J_vG8qwFw,9424
113
122
  webscout/Provider/gaurish.py,sha256=-eZapN28Fsp9SPwF2KpakaB8mPChQDsEWHYMKwPovEc,10079
114
123
  webscout/Provider/geminiapi.py,sha256=-_QbDBF_IiYyOJ0_uAIcE-gfzIs8H86nA5VWX52SRoY,8505
115
124
  webscout/Provider/geminiprorealtime.py,sha256=DQdChZRryg9bvXiKpos7wFlu0Q6QNq9lYkbb-FJubWk,5766
116
125
  webscout/Provider/granite.py,sha256=kj2KK_ak1ZaJY116Hir_F8TfZkCDyCUtWkzmaMqFVwg,9366
117
126
  webscout/Provider/hermes.py,sha256=NhVAwefvPYyIaWVctw_6iNoDLVJw5nR3Zd4mmA0Dl9M,8452
118
127
  webscout/Provider/julius.py,sha256=unD3UUnW8-Bie4o0__Vn7cXfqnaVvlE3MWI-LYGb5VE,8576
119
- webscout/Provider/koala.py,sha256=qBtqjTvhoMQdDE8qUH0XuNa_x2bic77d7CUjIVboask,10106
128
+ webscout/Provider/koala.py,sha256=JQBBkC1IoT8UERpXhAWRXU-UJeuEqn5W3PADkYMnAeQ,10336
120
129
  webscout/Provider/learnfastai.py,sha256=xANWSHF3e6kTKgwbAHYdjNWIwYvr5Bin0NDENmJvruE,9763
121
130
  webscout/Provider/lepton.py,sha256=ocex934Pb0AXiDrTLh67KhouoHh4EIl5giQbW6cgeDQ,7513
122
131
  webscout/Provider/llama3mitril.py,sha256=zRd9fVplpYWxDr83peayC_KLoYdmC9FMqWp3V6RpPBs,6624
@@ -130,16 +139,21 @@ webscout/Provider/turboseek.py,sha256=uEoL5eJFvnpDCymTufrC8O9Ni3i8acb0GBy4JweFeI
130
139
  webscout/Provider/tutorai.py,sha256=hgjYrI1zqNRhHEoi8t1OU8m9i80EQCay5UtmKqbNS9w,11205
131
140
  webscout/Provider/typegpt.py,sha256=UYczMtQD3iJa4681O3aIt_oZ-8tjws69CFx_65mMC0E,13630
132
141
  webscout/Provider/x0gpt.py,sha256=eKDEbUIkY1Cc8mCad-CFA4ZgBXOmR7T7rKf89lh16-8,9383
133
- webscout/Provider/yep.py,sha256=Z0JayKFhXOLhI-QgajIQq7k1GvTqQvcPVzY0boEWm_c,9899
142
+ webscout/Provider/yep.py,sha256=h0XuPE867mChw1b1T31UUsVVJ2iiIJEPw_-fqoUlEuc,9049
134
143
  webscout/Provider/AISEARCH/DeepFind.py,sha256=u7jendlE27jY3H_PRB5I5ne_z2oZCeEVBTbXkQ7Msn0,10293
135
- webscout/Provider/AISEARCH/__init__.py,sha256=oSGWYCOsLGXxBLUN6R_x_ohElenwWlvKGK5BFsja1PM,61
144
+ webscout/Provider/AISEARCH/ISou.py,sha256=Gpud30sMwoLGngkIvi6YH0rXcWiAAFTemZnIW4Zdtbc,10720
145
+ webscout/Provider/AISEARCH/__init__.py,sha256=mO1mvCXUK7pAkjD7LAg3CFqqr0TbiX_B72e7P7niGIo,104
136
146
  webscout/Provider/AISEARCH/felo_search.py,sha256=uR89JwDXH5HB_EHdVwHC6CMpPeLvHFYmi6PO-YQmAyw,8879
147
+ webscout/Provider/AISEARCH/genspark_search.py,sha256=37RDY4yUp46yOm3IgmrVSLOLfCeyJYkFwrYzewwzKaM,8155
137
148
  webscout/Provider/HF_space/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
149
  webscout/Provider/HF_space/qwen_qwen2.py,sha256=KP7KiPa_OavNh_dF4B2qAv6sX5O6LgD6FeEep5wRNM4,7627
139
- webscout/Provider/TTI/__init__.py,sha256=9Hu_y-z6Ev2SQL5-IF_B4UDetoOl7hVclka1RatQ6_M,225
150
+ webscout/Provider/TTI/__init__.py,sha256=_C-bHeJqixz8Xii-5Ee8GwRaoIrfns03bw3jRgskko8,285
140
151
  webscout/Provider/TTI/AiForce/__init__.py,sha256=R8r6XYBUoGB_26jSyjGwHpw8GtZ0wbnkBoHxu26T_QU,685
141
152
  webscout/Provider/TTI/AiForce/async_aiforce.py,sha256=Soq-h0BK20nVU1IcRrg4Sb8a4XAJ7_DDQMdFYP5_4Tg,9847
142
153
  webscout/Provider/TTI/AiForce/sync_aiforce.py,sha256=eGAveKtkp-h5kSZ-bQo4b2LlNSGpFyGklPm80ECwsto,8859
154
+ webscout/Provider/TTI/FreeAIPlayground/__init__.py,sha256=MmjKj2U1glmn0HDfMkCE64WKA4fsMbqphK5v-E3Sphs,277
155
+ webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py,sha256=1j_0SRBnvqK78rS9QQeQDj6bejWa2-7h4P8ctYooOjk,7808
156
+ webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py,sha256=7iQX8QxMHRV5_IfRIdtMiqWb_SsxKvRc6SrK0ChbINk,6706
143
157
  webscout/Provider/TTI/Nexra/__init__.py,sha256=0mO8r6eLnilf3tZchmdyN13OaNoUt-fg5rCNXgWdt5Q,663
144
158
  webscout/Provider/TTI/Nexra/async_nexra.py,sha256=fDY-5rRyzauTXE78yglTnE2yWfBfYGUQhBxr-xmK5Sk,11240
145
159
  webscout/Provider/TTI/Nexra/sync_nexra.py,sha256=VjzetIdyl8Tmcoyii1fvNJNvfEAQQBrycm6IBmlUjfI,9570
@@ -161,6 +175,9 @@ webscout/Provider/TTI/huggingface/sync_huggingface.py,sha256=wS900jmz1nVl7ji06hx
161
175
  webscout/Provider/TTI/imgninza/__init__.py,sha256=z9HSgDhhjeVBglzhjGY-YbXVntBROOf7fEwKw4ss55A,129
162
176
  webscout/Provider/TTI/imgninza/async_ninza.py,sha256=ilCNzviqBlzy9nRerY8wKDkkOJp-Wj7DdXCUmFKDy88,8541
163
177
  webscout/Provider/TTI/imgninza/sync_ninza.py,sha256=7WATZJt5v-L9ys5t69Hq5rQuaUfTDneox531rH97s_o,8427
178
+ webscout/Provider/TTI/piclumen/__init__.py,sha256=-UH3nxe3O_xDAHGYGh9g11HG37enJAiZvyraQDnf9os,814
179
+ webscout/Provider/TTI/piclumen/async_piclumen.py,sha256=VaeI21pHpUjxZNQXSm6AYHsE9cGQJl6SesGjgZF5R_M,10119
180
+ webscout/Provider/TTI/piclumen/sync_piclumen.py,sha256=LV8WkHZVrOJayO3JyW9vKZGLsX6ebl95G8WND7iiUjk,8466
164
181
  webscout/Provider/TTI/talkai/__init__.py,sha256=3gAbrtt0GvnpwNN4N6ZpGgP489S6yhipRJo04RS5ilY,135
165
182
  webscout/Provider/TTI/talkai/async_talkai.py,sha256=Rw8dHO_qKje0hH58NSZmLEDcjq-PIpLEzRPyQL0kSDM,9411
166
183
  webscout/Provider/TTI/talkai/sync_talkai.py,sha256=cShwwaLBbCdgW4DdoaYIMGK5DuR6f0aZRx2UQ-idqxM,8300
@@ -209,9 +226,9 @@ webstoken/sentiment.py,sha256=yHtaHXJNS_sH1UTHZsOIgyhdijr8oi1pMlg_QE2wtxw,8202
209
226
  webstoken/stemmer.py,sha256=VXWkBpPaH328WEQxw9e9ff-p2e27xDdbpVSy0nTnXYE,2624
210
227
  webstoken/tagger.py,sha256=p4ScFnxn5sShYDVRoHK5pn_mzaDTsEtx3EHRvuvOlfE,2306
211
228
  webstoken/tokenizer.py,sha256=XJ-d1MFRp0Trw6gtOtZ8_wAcaSQidnSCHLNpV1-OFJc,6016
212
- webscout-7.2.dist-info/LICENSE.md,sha256=5mkWS6cgjGxJClmN7n--h0beF3uFAOV_Ngr1YTK33Tk,9203
213
- webscout-7.2.dist-info/METADATA,sha256=22WDpinr4hYgXAhzogmwd_Rhk318r_8JuN-lHg8HZ6A,40096
214
- webscout-7.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
215
- webscout-7.2.dist-info/entry_points.txt,sha256=7thMsVUoHiXGoIH1NeoocKpxlszWflNsNyrnDqGzvO0,70
216
- webscout-7.2.dist-info/top_level.txt,sha256=KQtbgkA3gxcsADB0hIIx-heydmEYXpAY7xn3LjwDx0E,19
217
- webscout-7.2.dist-info/RECORD,,
229
+ webscout-7.4.dist-info/LICENSE.md,sha256=5mkWS6cgjGxJClmN7n--h0beF3uFAOV_Ngr1YTK33Tk,9203
230
+ webscout-7.4.dist-info/METADATA,sha256=UpPqLPSx9vJ69R4CuU0aQbpDSdWzNLHdY7bo4kUtchQ,41415
231
+ webscout-7.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
232
+ webscout-7.4.dist-info/entry_points.txt,sha256=7thMsVUoHiXGoIH1NeoocKpxlszWflNsNyrnDqGzvO0,70
233
+ webscout-7.4.dist-info/top_level.txt,sha256=KQtbgkA3gxcsADB0hIIx-heydmEYXpAY7xn3LjwDx0E,19
234
+ webscout-7.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5