webscout 7.4__py3-none-any.whl → 7.5__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 (42) hide show
  1. webscout/Provider/C4ai.py +414 -0
  2. webscout/Provider/Cloudflare.py +18 -21
  3. webscout/Provider/DeepSeek.py +3 -32
  4. webscout/Provider/Deepinfra.py +30 -21
  5. webscout/Provider/GithubChat.py +362 -0
  6. webscout/Provider/HeckAI.py +20 -3
  7. webscout/Provider/HuggingFaceChat.py +462 -0
  8. webscout/Provider/Marcus.py +7 -50
  9. webscout/Provider/Netwrck.py +6 -53
  10. webscout/Provider/Phind.py +29 -3
  11. webscout/Provider/TTI/aiarta/__init__.py +2 -0
  12. webscout/Provider/TTI/aiarta/async_aiarta.py +482 -0
  13. webscout/Provider/TTI/aiarta/sync_aiarta.py +409 -0
  14. webscout/Provider/Venice.py +200 -200
  15. webscout/Provider/Youchat.py +1 -1
  16. webscout/Provider/__init__.py +13 -2
  17. webscout/Provider/akashgpt.py +8 -5
  18. webscout/Provider/copilot.py +416 -0
  19. webscout/Provider/flowith.py +181 -0
  20. webscout/Provider/granite.py +17 -53
  21. webscout/Provider/llamatutor.py +6 -46
  22. webscout/Provider/llmchat.py +7 -46
  23. webscout/Provider/multichat.py +29 -91
  24. webscout/exceptions.py +19 -9
  25. webscout/update_checker.py +55 -93
  26. webscout/version.py +1 -1
  27. webscout-7.5.dist-info/LICENSE.md +146 -0
  28. {webscout-7.4.dist-info → webscout-7.5.dist-info}/METADATA +5 -126
  29. {webscout-7.4.dist-info → webscout-7.5.dist-info}/RECORD +32 -33
  30. webscout/Local/__init__.py +0 -10
  31. webscout/Local/_version.py +0 -3
  32. webscout/Local/formats.py +0 -747
  33. webscout/Local/model.py +0 -1368
  34. webscout/Local/samplers.py +0 -125
  35. webscout/Local/thread.py +0 -539
  36. webscout/Local/ui.py +0 -401
  37. webscout/Local/utils.py +0 -388
  38. webscout/Provider/dgaf.py +0 -214
  39. webscout-7.4.dist-info/LICENSE.md +0 -211
  40. {webscout-7.4.dist-info → webscout-7.5.dist-info}/WHEEL +0 -0
  41. {webscout-7.4.dist-info → webscout-7.5.dist-info}/entry_points.txt +0 -0
  42. {webscout-7.4.dist-info → webscout-7.5.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,146 @@
1
+ Apache License
2
+ Version 2.0, March 2025
3
+ Webscout License
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship.
43
+
44
+ "Contribution" shall mean any work of authorship, including
45
+ the original version of the Work and any modifications or additions
46
+ to that Work or Derivative Works thereof, that is intentionally
47
+ submitted to Licensor for inclusion in the Work by the copyright owner
48
+ or by an individual or Legal Entity authorized to submit on behalf of
49
+ the copyright owner.
50
+
51
+ 2. Grant of Copyright License. Subject to the terms and conditions of
52
+ this License, each Contributor hereby grants to You a perpetual,
53
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
54
+ copyright license to reproduce, prepare Derivative Works of,
55
+ publicly display, publicly perform, sublicense, and distribute the
56
+ Work and such Derivative Works in Source or Object form.
57
+
58
+ 3. Grant of Patent License. Subject to the terms and conditions of
59
+ this License, each Contributor hereby grants to You a perpetual,
60
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
61
+ (except as stated in this section) patent license to make, have made,
62
+ use, offer to sell, sell, import, and otherwise transfer the Work,
63
+ where such license applies only to those patent claims licensable
64
+ by such Contributor that are necessarily infringed by their
65
+ Contribution(s) alone or by combination of their Contribution(s)
66
+ with the Work to which such Contribution(s) was submitted.
67
+
68
+ 4. Redistribution. You may reproduce and distribute copies of the
69
+ Work or Derivative Works thereof in any medium, with or without
70
+ modifications, and in Source or Object form, provided that You
71
+ meet the following conditions:
72
+
73
+ (a) You must give any other recipients of the Work or
74
+ Derivative Works a copy of this License; and
75
+
76
+ (b) You must cause any modified files to carry prominent notices
77
+ stating that You changed the files; and
78
+
79
+ (c) You must retain, in the Source form of any Derivative Works
80
+ that You distribute, all copyright, patent, trademark, and
81
+ attribution notices from the Source form of the Work; and
82
+
83
+ (d) If the Work includes a "NOTICE" text file as part of its
84
+ distribution, then any Derivative Works that You distribute must
85
+ include a readable copy of the attribution notices contained
86
+ within such NOTICE file; and
87
+
88
+ (e) You must include the following attribution notice prominently
89
+ displayed in any Derivative Works:
90
+ "Based on Webscout (https://github.com/webscout)"
91
+
92
+ 5. API Usage and Third-Party Services. When using the APIs and services
93
+ accessed through this Work, you must:
94
+
95
+ (a) Comply with all terms of service of the respective API providers; and
96
+
97
+ (b) Maintain appropriate attribution and licenses for third-party services; and
98
+
99
+ (c) Be responsible for obtaining any necessary permissions or licenses; and
100
+
101
+ (d) Not use the Work in any way that could damage or overload third-party services.
102
+
103
+ 6. Submission of Contributions. Unless You explicitly state otherwise,
104
+ any Contribution intentionally submitted for inclusion in the Work
105
+ by You to the Licensor shall be under the terms and conditions of
106
+ this License, without any additional terms or conditions.
107
+
108
+ 7. Trademarks. This License does not grant permission to use the trade
109
+ names, trademarks, service marks, or product names of the Licensor,
110
+ except as required for reasonable and customary use in describing the
111
+ origin of the Work and reproducing the content of the NOTICE file.
112
+
113
+ 8. Disclaimer of Warranty. Unless required by applicable law or
114
+ agreed to in writing, Licensor provides the Work (and each
115
+ Contributor provides its Contributions) on an "AS IS" BASIS,
116
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
117
+ implied, including, without limitation, any warranties or conditions
118
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
119
+ PARTICULAR PURPOSE. You are solely responsible for determining the
120
+ appropriateness of using or redistributing the Work and assume any
121
+ risks associated with Your exercise of permissions under this License.
122
+
123
+ 9. Limitation of Liability. In no event and under no legal theory,
124
+ whether in tort (including negligence), contract, or otherwise,
125
+ unless required by applicable law (such as deliberate and grossly
126
+ negligent acts) or agreed to in writing, shall any Contributor be
127
+ liable to You for damages, including any direct, indirect, special,
128
+ incidental, consequential, or exemplary damages of any character
129
+ arising as a result of this License or out of the use or inability
130
+ to use the Work.
131
+
132
+ END OF TERMS AND CONDITIONS
133
+
134
+ Copyright 2024-2025 Webscout Contributors
135
+
136
+ Licensed under the Apache License, Version 2.0 (the "License");
137
+ you may not use this file except in compliance with the License.
138
+ You may obtain a copy of the License at
139
+
140
+ http://www.apache.org/licenses/LICENSE-2.0
141
+
142
+ Unless required by applicable law or agreed to in writing, software
143
+ distributed under the License is distributed on an "AS IS" BASIS,
144
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145
+ See the License for the specific language governing permissions and
146
+ limitations under the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 7.4
3
+ Version: 7.5
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
@@ -27,6 +27,7 @@ License-File: LICENSE.md
27
27
  Requires-Dist: setuptools
28
28
  Requires-Dist: wheel
29
29
  Requires-Dist: pip
30
+ Requires-Dist: nodriver
30
31
  Requires-Dist: mistune
31
32
  Requires-Dist: tenacity
32
33
  Requires-Dist: curl-cffi
@@ -42,7 +43,7 @@ Requires-Dist: orjson
42
43
  Requires-Dist: PyYAML
43
44
  Requires-Dist: tls-client
44
45
  Requires-Dist: clipman
45
- Requires-Dist: playsound==1.2.2
46
+ Requires-Dist: playsound==1.3.0
46
47
  Requires-Dist: ollama
47
48
  Requires-Dist: pillow
48
49
  Requires-Dist: bson
@@ -56,17 +57,10 @@ 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
- Provides-Extra: local
65
- Requires-Dist: llama-cpp-python; extra == "local"
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
64
 
71
65
  [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/PyscoutAI)
72
66
  [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.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; run offline language models; and much more!
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,9 +97,6 @@ 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
101
  * **Autollama:** Download Hugging Face models and automatically convert them for Ollama compatibility.
111
102
  * **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework that makes it easy to create beautiful command-line interfaces.
@@ -1142,7 +1133,7 @@ a = AndiSearch()
1142
1133
  print(a.chat("HelpingAI-9B"))
1143
1134
  ```
1144
1135
 
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
1136
+ ### `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`, `DiscordRocks`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `Bing`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `AmigoChat`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
1146
1137
 
1147
1138
  Code is similar to other providers.
1148
1139
 
@@ -1166,118 +1157,6 @@ response = vlm.chat([{
1166
1157
  }])
1167
1158
  ```
1168
1159
 
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
1160
  ## GGUF
1282
1161
 
1283
1162
  Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
@@ -8,13 +8,13 @@ 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
11
- webscout/exceptions.py,sha256=WlkURuoPHApPpC9K_f_gXkJzFZLfiW5RYSMJPAOGG4k,11711
11
+ webscout/exceptions.py,sha256=9rSq7sUFgZYe9UJ6qOlC20xowfzHDTghwGCS6osA8hM,12007
12
12
  webscout/optimizers.py,sha256=ALT4SeO_s_JV6yWG7XJJ3aZIoEiTN1PIaCZJtnGdxXs,10749
13
13
  webscout/prompt_manager.py,sha256=Jc0demWN6M6QcwRp14aHZR05r_PVPOaG8PnQkO7pDZ4,9806
14
14
  webscout/tempid.py,sha256=hxzPVBjxAa5GLBQ9fE6ob5ixJpQeU-mgdfTzh33EHvE,4926
15
- webscout/update_checker.py,sha256=DuibA_i2if47V40luhPBY0AeVEo8RjkDFzPElRISQn4,4867
15
+ webscout/update_checker.py,sha256=ZzX18hpzsEl2J419eDfKu9FMJayioEvkT-foZ0hprAg,4189
16
16
  webscout/utils.py,sha256=LVW7U0XcGYqigqxV6D5YXeGMrc_mt7PnNG_YnKf9bBM,3059
17
- webscout/version.py,sha256=8MMpUMYCxhOeS8LAtRcGSnOca3mFGqIIRAG-mTjB9mQ,44
17
+ webscout/version.py,sha256=r55FNP-kPfRfR-h0szlTgajJKL_8sZpQuZfA0xq81uw,44
18
18
  webscout/webscout_search.py,sha256=Kl2gDj03xZeg4g-szln7R_f8oAbZ4_tjKtrXVgBfG1U,49854
19
19
  webscout/webscout_search_async.py,sha256=wlLv4vn8UP54R76vsTwvnUgpP0a6nPAPDdX2Cz8F_Dg,27310
20
20
  webscout/yep_search.py,sha256=IuuhtTN6_H__EwtMpXs_o_0SEeujV68hfAS2teAgoZc,10132
@@ -56,83 +56,79 @@ webscout/Litlogger/styles/text.py,sha256=JLz1oUve9cHCxiHA8mj1cnvFKvQkvvPZgawHBYP
56
56
  webscout/Litlogger/utils/__init__.py,sha256=G9WTxWGbDMt07Sh6OyLf4rrjjFKiaWTfZBKM8QZGtuI,206
57
57
  webscout/Litlogger/utils/detectors.py,sha256=nOogjO2eu22PpIAq20qyoBQFNXdiJc2lI7l-XqVDltY,4785
58
58
  webscout/Litlogger/utils/formatters.py,sha256=MdgaCavaF7OKIo3b3c8BCyyvvskcNKhFQygnhoEY3R4,6100
59
- webscout/Local/__init__.py,sha256=Mte7RYlelBND2yof_HJ3MMZYBVeTISNFU2-LiFKSbU4,228
60
- webscout/Local/_version.py,sha256=jk6j7Rb0VWezDG1ZFhgYJpZiyL5rCivaiA86_jJecmk,139
61
- webscout/Local/formats.py,sha256=yJJW2VoN27u6oGiPNa8PrhVuX0Aol9VExHjJ0AeTnLw,26687
62
- webscout/Local/model.py,sha256=49k61kfzGhBbA38ul2yqdrmFd6YPOipJ37vCXOWIxaM,50987
63
- webscout/Local/samplers.py,sha256=6khEmMiMqIRO-qssjv8PEVomNG2yoLhDM6Wa9YBRbuI,6769
64
- webscout/Local/thread.py,sha256=ctnoJtkOpKbpdlqCjsnyM2sI-3_AKg9PzNwS3QAIifQ,23603
65
- webscout/Local/ui.py,sha256=FhqBcC7SVHwRfvrnTduoa7gpQNWYzrSc7OGm89ErNPY,15064
66
- webscout/Local/utils.py,sha256=kYXfR9h4JFojkiKQhF1XHclqX0vB0qPKOkfYKjrgwuc,13216
67
59
  webscout/Provider/AI21.py,sha256=JBh-xnspxTZNMcl-Gd0Cgseqht9gTM64TUv9I4Imc9k,6218
68
60
  webscout/Provider/AllenAI.py,sha256=wvelD3lHyaLiOPPH-C2EGJJOQDkY4Jdfr9xQXRi2LnA,10949
69
61
  webscout/Provider/Amigo.py,sha256=LkZuvFUwkmdzgMhUEMYvXKpNpLstjznRMe-CQydYO7g,11637
70
62
  webscout/Provider/Andi.py,sha256=-vqXWlJcHzhfZ-iW4qJy9yxzctPKp2RdmdW02hf4XLs,8863
71
63
  webscout/Provider/Bing.py,sha256=zxIzq7dlqaLskx9LsYppbMJuwfGtYid3Uh0gIhZ0hps,9001
72
64
  webscout/Provider/Blackboxai.py,sha256=al72E9hK1bpIYx7zLTkLMMRBw3CeE7GPvUZ8hh9oLVk,8130
65
+ webscout/Provider/C4ai.py,sha256=_ZsoVwOsx9cUyMKzTZKOms1xp4Bv0fftOaAlLOTotT4,17343
73
66
  webscout/Provider/ChatGPTES.py,sha256=t_Qjn1ShNX0uYp5dJzv6Y7DPQM8HUTgvcBauhFz0-Io,8815
74
67
  webscout/Provider/ChatGPTGratis.py,sha256=h-Rlk1GoRzgjNiyFRzcao2-w-R1txejQslXT2rocubg,8742
75
68
  webscout/Provider/Chatify.py,sha256=QYgZAEmhLkEnR7oyr-qUs6OSHoNJm2BgMr41f84Ntbg,6370
76
- webscout/Provider/Cloudflare.py,sha256=DgIYvYMZpuolh6JTFWiJEKL-WRWF6fBdmpMg0LmkYSQ,11566
69
+ webscout/Provider/Cloudflare.py,sha256=7kVbnUIlBhto3v2T1_YnqP_Aqv_JSqLPxZPKwxdXREI,11443
77
70
  webscout/Provider/Cohere.py,sha256=oL9kAv--RSkEQxwkPTq1Wi57Wkgg0WNvL82CpTj22YY,8264
78
71
  webscout/Provider/DARKAI.py,sha256=kVElPYVh_VchfGylR4YzC3orrPJPyPoOpSolc62b5eY,8944
79
- webscout/Provider/DeepSeek.py,sha256=xa_ct5ux6K7GGoaruKWUdykNpMQQvnkMWAl5BhWvj1A,8435
80
- webscout/Provider/Deepinfra.py,sha256=ZuKmzg0j3_C8kPv9MuJucMkP3MXllQ07Jbsw2gtFzEc,8701
72
+ webscout/Provider/DeepSeek.py,sha256=dZjQ0m68jIY3iRJqt9oqPE1JCh7DotCt0ZRfkKuDglI,7102
73
+ webscout/Provider/Deepinfra.py,sha256=jmPwWuEkvu2JBt-2eFud354uPBquqJFH4uK-nZdh-Kg,9056
81
74
  webscout/Provider/DiscordRocks.py,sha256=fRkVBCyDMZf0SoaNPK7KXAsh8mQj0JWDb7ifYpL9PQQ,11372
82
75
  webscout/Provider/EDITEE.py,sha256=9rq7c84XoIoRBqd0qgW-Ebu3lyffhicSOtUvMtAjO0s,7742
83
76
  webscout/Provider/ElectronHub.py,sha256=FYSWV-ujltkRR0dn7xLmDuSgiZE8-sfn1O5NjW4a5DU,20777
84
77
  webscout/Provider/Free2GPT.py,sha256=3c1tLsYhYCBdjBStLfQvUII3Vojw9-DZpgjyK_T13a4,9197
85
78
  webscout/Provider/GPTWeb.py,sha256=xh_mnBko6RDyz2v3KhMux-yIipipkZfVVVoUJWkbzcQ,7466
86
79
  webscout/Provider/Gemini.py,sha256=0ohprs4SZsH2hRCYXWWMXiBP5qCvAmFoJAdnP6BR5yA,7295
80
+ webscout/Provider/GithubChat.py,sha256=M_8507BPgiem4xI-eSfEdcU0onDsliobv7kIpuqBxzk,13847
87
81
  webscout/Provider/Glider.py,sha256=6WjnnxwBm7uIlHidbMI-aSFJalmJAwmCRCTSO1X8UDA,7325
88
82
  webscout/Provider/Groq.py,sha256=N6iRcxBhtsKdaJNAD5oMauPZFW8Kti2Lpiss7GN5mJ4,29062
89
- webscout/Provider/HeckAI.py,sha256=mulDtFUsWniNvSh1xh1hQZhniWGpgIOhnErVKeP2cho,7505
83
+ webscout/Provider/HeckAI.py,sha256=QDKl_mubs2gqmXTRjlHSaf4qxYG6FXhkV3qxO5qGMIw,8113
84
+ webscout/Provider/HuggingFaceChat.py,sha256=DpwFl9QFVi5S5bcIgEcabaML-CyXNZn4pKQr0sXQhxI,19403
90
85
  webscout/Provider/Jadve.py,sha256=MFMsTPbZC9QJjyS23zvzU6HMq31rqKpos7vp-LEhIk8,10112
91
86
  webscout/Provider/Koboldai.py,sha256=gpRgyDe4OQWwNqT7MWnNrJx4dnFmCW23KUx0Ezjgchk,15185
92
87
  webscout/Provider/Llama.py,sha256=N01p3ZVD1HgRnNNxhjRhBVD4m_qiextdyF1KDfJlqbE,7703
93
88
  webscout/Provider/Llama3.py,sha256=O2XJKoQD2bYq9T_PyFW36mFy3yNXYMuGSBzlfFzVdo8,8106
94
- webscout/Provider/Marcus.py,sha256=UkCr3GgoF6YB6x3PdA2iZOPivfkD8lXh--yM16iPAh0,7007
95
- webscout/Provider/Netwrck.py,sha256=MgzLg-Z6QOPUlnK08oKoPw2JDvZrHClacbiU1YmC06w,9465
89
+ webscout/Provider/Marcus.py,sha256=aXXcZtxo3wtIdGT0Wbxj8zcH5dUNJJmSjXUQ-d8xGPg,5266
90
+ webscout/Provider/Netwrck.py,sha256=XHU4mMAbkiV0z96gcPQrh6JRXb3ClX7da5eYCoQopcY,7659
96
91
  webscout/Provider/OLLAMA.py,sha256=RQXJt-PJYnA15_IXhUy4mM9qwm4PcBMfINaZm2KG6zE,7018
97
92
  webscout/Provider/Openai.py,sha256=mpJ9VgIyvW6uo0-jIcx5Qcz4PIUAj3xVLOgKrB1z9pU,20074
98
93
  webscout/Provider/PI.py,sha256=A2Tr7DJXf3jkB8JVcWfQSmL4hAHwrXdUcKrfv50I2-E,11988
99
94
  webscout/Provider/Perplexitylabs.py,sha256=_g6J91ca4qlRDPBaUvAL5ZZaOJjdmUVamjomS8itZ8M,15687
100
- webscout/Provider/Phind.py,sha256=FaE10xQJ_TluRnzA_t7SxXsqgKzTfXR5lLGla2DQVBM,19467
95
+ webscout/Provider/Phind.py,sha256=BRgB3rc2EgrEDbGmL0dUESjjIKau99L3-91ndFbIwCM,20189
101
96
  webscout/Provider/PizzaGPT.py,sha256=sYijGNHFKry1Uai4CPcsaBl2UQ_rB3lksIdAvpqW6FA,9070
102
97
  webscout/Provider/QwenLM.py,sha256=PA7Sq00E-eAjmePqnDYmLgzjdHbriwH6lIiivpJWLwM,10478
103
98
  webscout/Provider/Reka.py,sha256=dWw4vX91nJhAn-X1SXK72gttRaTqWNGUBFaeRJobTJg,8519
104
99
  webscout/Provider/TeachAnything.py,sha256=6scp1tzcc5z_TKUALArQ4APCNElHJ7SzsJoiB71o0V0,7169
105
100
  webscout/Provider/TextPollinationsAI.py,sha256=2UyorUNaOxe58RyblbAdkHPrIg5zgS7WvUEMqAJ216o,9869
106
101
  webscout/Provider/TwoAI.py,sha256=QmUC5DzkaxxJQ7lkn4EN3XS6RnuEwho4C3qzaVul3Zk,7240
107
- webscout/Provider/Venice.py,sha256=Jce4282i9pkr6-nwOvNqvwGzotGjBcU7PXr9kqvr1q4,7223
102
+ webscout/Provider/Venice.py,sha256=DAMD4gGLU9t3-g-vzQQYELgVgitDFXv_oARa0IwE-Lc,7500
108
103
  webscout/Provider/WiseCat.py,sha256=OKDe-p4puC70BLslD12_cUfFZAls8K55MJ7M5pVwOEc,5988
109
- webscout/Provider/Youchat.py,sha256=LmPskUWaOJlJSYsGeHsu5riD1X6Rp6pFmdApZh_t98I,10205
110
- webscout/Provider/__init__.py,sha256=Sir3adO8HK_kEcWfsuL_xSVd4IQ4MiQTVuYXLGJ-34o,3367
104
+ webscout/Provider/Youchat.py,sha256=EpM8wIA614P-555-NmPtat4tQ1h0VBCKeRHvfOvbG6Q,10214
105
+ webscout/Provider/__init__.py,sha256=NuWOhuQzJ0uixwcrlx64qv4TTB1alKtMSb35PF_3vzs,3597
111
106
  webscout/Provider/ai4chat.py,sha256=av96iS4QPt9IzhcswowmDY2F8IUSLl1YVHZ4bAbfO-s,8140
112
107
  webscout/Provider/aimathgpt.py,sha256=BdXNxEHQP11p6m0wl2Q-uben46A6lMKOg89utV1S7aI,7320
113
- webscout/Provider/akashgpt.py,sha256=S9sZ3VoAOlBG6d-138Mrc_YfQyAhkTYA9t3eIVhopkI,11626
108
+ webscout/Provider/akashgpt.py,sha256=A4ZTvfZaPqrsz7dirZaaoLq0_lhs7jWUcMyht5rmg5k,11706
114
109
  webscout/Provider/askmyai.py,sha256=MX3883xxpMe5GUahyQOwR4ZR_Oa_zAg4N7ksZ4zhB9s,5904
115
110
  webscout/Provider/bagoodex.py,sha256=OdYIyvypX-Vkok9zAr6F5NwFQx_z0bKhiw8U4tTFw5o,5023
116
111
  webscout/Provider/cerebras.py,sha256=6lbXnzTsTgcWQFgNA5dBI1MumSEc6EljJ5GI_YQoyMQ,8586
117
112
  webscout/Provider/chatglm.py,sha256=QPqUd9Wb_waoYe6ctMvTZpRigCuWlbvFozfwHRSd6o4,8191
118
113
  webscout/Provider/cleeai.py,sha256=ZIPm2dT8H8BxGSLHsgp6aDWn3DVOxAOcFfkMNH1UK0I,7979
119
- webscout/Provider/dgaf.py,sha256=KMzeAnKR12cGWcqQGZi56VoN6JChIrryCBOYSB0aQOE,8881
114
+ webscout/Provider/copilot.py,sha256=FtMuWcXqY4-tyo_ITSLCG7f6geSAbPIUuLwm7z5_l-s,17934
120
115
  webscout/Provider/elmo.py,sha256=I7qq2YvKht28Z2KFTxj3wNyekJM6gAJCExilB-_UkzQ,9308
116
+ webscout/Provider/flowith.py,sha256=2WU7-7JqpaeH4FZxUByfR9_mmAvGKTyMN-dKtxbadc4,6445
121
117
  webscout/Provider/freeaichat.py,sha256=VIyW9Yrlu6GCx4CwnEHOeQeOGjAkOgtqR9J_vG8qwFw,9424
122
118
  webscout/Provider/gaurish.py,sha256=-eZapN28Fsp9SPwF2KpakaB8mPChQDsEWHYMKwPovEc,10079
123
119
  webscout/Provider/geminiapi.py,sha256=-_QbDBF_IiYyOJ0_uAIcE-gfzIs8H86nA5VWX52SRoY,8505
124
120
  webscout/Provider/geminiprorealtime.py,sha256=DQdChZRryg9bvXiKpos7wFlu0Q6QNq9lYkbb-FJubWk,5766
125
- webscout/Provider/granite.py,sha256=kj2KK_ak1ZaJY116Hir_F8TfZkCDyCUtWkzmaMqFVwg,9366
121
+ webscout/Provider/granite.py,sha256=jF7jXWP_B434LPsIcYmBopF6QZ86F_xbcRJBTJArmzw,7698
126
122
  webscout/Provider/hermes.py,sha256=NhVAwefvPYyIaWVctw_6iNoDLVJw5nR3Zd4mmA0Dl9M,8452
127
123
  webscout/Provider/julius.py,sha256=unD3UUnW8-Bie4o0__Vn7cXfqnaVvlE3MWI-LYGb5VE,8576
128
124
  webscout/Provider/koala.py,sha256=JQBBkC1IoT8UERpXhAWRXU-UJeuEqn5W3PADkYMnAeQ,10336
129
125
  webscout/Provider/learnfastai.py,sha256=xANWSHF3e6kTKgwbAHYdjNWIwYvr5Bin0NDENmJvruE,9763
130
126
  webscout/Provider/lepton.py,sha256=ocex934Pb0AXiDrTLh67KhouoHh4EIl5giQbW6cgeDQ,7513
131
127
  webscout/Provider/llama3mitril.py,sha256=zRd9fVplpYWxDr83peayC_KLoYdmC9FMqWp3V6RpPBs,6624
132
- webscout/Provider/llamatutor.py,sha256=xlGLiPzxh1ccznJJK32JVGh6-InobIU4LP_g8CBSE5M,8659
133
- webscout/Provider/llmchat.py,sha256=mwyDuikhL55uJ3f5tlnibLOBieuM_LFe2EfQcZnq3hY,8805
128
+ webscout/Provider/llamatutor.py,sha256=h9607pQamlC037W3lzsQQkiG6qjo58EltVZyUUF3KRc,6748
129
+ webscout/Provider/llmchat.py,sha256=kRvKcwgGhaYAECSYJQN4EwOIwyT__9Ky3L84aP_2k8o,6894
134
130
  webscout/Provider/meta.py,sha256=BY3agrLzpd9RGr7IyDko3EDfmuNOVA-ZnQXAIKJ4JQY,30708
135
- webscout/Provider/multichat.py,sha256=NdgasTpjxK9YaZ_oqt4b2MVB154lm0MjRjjPclc5hSU,12723
131
+ webscout/Provider/multichat.py,sha256=p2RfRp_P31GDxbtOW28hDcfTVcz3yUXRubaUs7iiefs,10292
136
132
  webscout/Provider/promptrefine.py,sha256=W0Ka59yRRKCOBXfF_hF-iF30F0AR45OPxgCCZ6mZzuA,7722
137
133
  webscout/Provider/talkai.py,sha256=FHBZzBdHrOVn41nkhhJmjhHuR1NKTOBE7lGgYDV-0dk,7598
138
134
  webscout/Provider/turboseek.py,sha256=uEoL5eJFvnpDCymTufrC8O9Ni3i8acb0GBy4JweFeIE,8474
@@ -160,6 +156,9 @@ webscout/Provider/TTI/Nexra/sync_nexra.py,sha256=VjzetIdyl8Tmcoyii1fvNJNvfEAQQBr
160
156
  webscout/Provider/TTI/PollinationsAI/__init__.py,sha256=1iIvw-D6HJ58N3omwbykJBtne6T4XG1jrSDcYQImfRg,824
161
157
  webscout/Provider/TTI/PollinationsAI/async_pollinations.py,sha256=fcotrkX8V6HbgO9uy4NE1Fjd8p-e410hCgJRqeXna-w,12347
162
158
  webscout/Provider/TTI/PollinationsAI/sync_pollinations.py,sha256=BqcE5LLjVT5eVIT5CjjnWSAc3J5aG-b1cpCOjQI3D6A,10293
159
+ webscout/Provider/TTI/aiarta/__init__.py,sha256=WlEb_M5rJbuxpRPOFZIiHFQo81t9GThd5QR6whV-QFE,55
160
+ webscout/Provider/TTI/aiarta/async_aiarta.py,sha256=SziDl_DlNzmc1lPLsk1MVgewX_vPuIRqs80aoRH2amg,20236
161
+ webscout/Provider/TTI/aiarta/sync_aiarta.py,sha256=soqHc9D_29ujVATDGsuW7SWGATaE8rBzQbr6lK4lSGU,15831
163
162
  webscout/Provider/TTI/artbit/__init__.py,sha256=Ubkm4MuYxc6_eSXspfsnO61KRNWby8RNFG1hsYCGQM4,708
164
163
  webscout/Provider/TTI/artbit/async_artbit.py,sha256=hTvsqlpjSMbx2wBpGDMT2q-3W2LptugXQu-dBxEFXJE,6828
165
164
  webscout/Provider/TTI/artbit/sync_artbit.py,sha256=oDTbTA-TEjvnOX2g-f0H9v3FaLOoIpq5lCZhYIDR9mA,6226
@@ -226,9 +225,9 @@ webstoken/sentiment.py,sha256=yHtaHXJNS_sH1UTHZsOIgyhdijr8oi1pMlg_QE2wtxw,8202
226
225
  webstoken/stemmer.py,sha256=VXWkBpPaH328WEQxw9e9ff-p2e27xDdbpVSy0nTnXYE,2624
227
226
  webstoken/tagger.py,sha256=p4ScFnxn5sShYDVRoHK5pn_mzaDTsEtx3EHRvuvOlfE,2306
228
227
  webstoken/tokenizer.py,sha256=XJ-d1MFRp0Trw6gtOtZ8_wAcaSQidnSCHLNpV1-OFJc,6016
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,,
228
+ webscout-7.5.dist-info/LICENSE.md,sha256=C-x3va3QLVdRtodzAKJH8O3LrVBBwYzcluErxZPowWA,7540
229
+ webscout-7.5.dist-info/METADATA,sha256=RrmEk3335njV_umhZZAjM_at5W8KFzlWW7ryTMybN0s,36258
230
+ webscout-7.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
231
+ webscout-7.5.dist-info/entry_points.txt,sha256=7thMsVUoHiXGoIH1NeoocKpxlszWflNsNyrnDqGzvO0,70
232
+ webscout-7.5.dist-info/top_level.txt,sha256=KQtbgkA3gxcsADB0hIIx-heydmEYXpAY7xn3LjwDx0E,19
233
+ webscout-7.5.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- # webscout\Local\__init__.py
2
- from ._version import __version__, __llama_cpp_version__
3
-
4
-
5
- from .utils import *
6
- from .samplers import *
7
- from .formats import *
8
- from .ui import *
9
- from .model import *
10
- from .thread import *
@@ -1,3 +0,0 @@
1
- from llama_cpp import __version__ as __llama_cpp_version__
2
- from webscout.version import __prog__, __version__
3
- __version__ = __version__