webscout 8.3.5__py3-none-any.whl → 8.3.7__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 (159) hide show
  1. webscout/AIutel.py +2 -0
  2. webscout/Bard.py +12 -6
  3. webscout/DWEBS.py +66 -57
  4. webscout/Provider/{UNFINISHED → AISEARCH}/PERPLEXED_search.py +34 -74
  5. webscout/Provider/AISEARCH/__init__.py +18 -11
  6. webscout/Provider/AISEARCH/scira_search.py +3 -1
  7. webscout/Provider/Aitopia.py +2 -3
  8. webscout/Provider/Andi.py +3 -3
  9. webscout/Provider/ChatGPTClone.py +1 -1
  10. webscout/Provider/ChatSandbox.py +1 -0
  11. webscout/Provider/Cloudflare.py +1 -1
  12. webscout/Provider/Cohere.py +1 -0
  13. webscout/Provider/Deepinfra.py +13 -10
  14. webscout/Provider/ExaAI.py +1 -1
  15. webscout/Provider/ExaChat.py +1 -80
  16. webscout/Provider/Flowith.py +6 -1
  17. webscout/Provider/Gemini.py +7 -5
  18. webscout/Provider/GeminiProxy.py +1 -0
  19. webscout/Provider/GithubChat.py +4 -1
  20. webscout/Provider/Groq.py +1 -1
  21. webscout/Provider/HeckAI.py +8 -4
  22. webscout/Provider/Jadve.py +23 -38
  23. webscout/Provider/K2Think.py +308 -0
  24. webscout/Provider/Koboldai.py +8 -186
  25. webscout/Provider/LambdaChat.py +2 -4
  26. webscout/Provider/Nemotron.py +3 -4
  27. webscout/Provider/Netwrck.py +6 -8
  28. webscout/Provider/OLLAMA.py +1 -0
  29. webscout/Provider/OPENAI/Cloudflare.py +6 -7
  30. webscout/Provider/OPENAI/FalconH1.py +2 -7
  31. webscout/Provider/OPENAI/FreeGemini.py +6 -8
  32. webscout/Provider/OPENAI/{monochat.py → K2Think.py} +180 -77
  33. webscout/Provider/OPENAI/NEMOTRON.py +3 -6
  34. webscout/Provider/OPENAI/PI.py +5 -4
  35. webscout/Provider/OPENAI/Qwen3.py +2 -3
  36. webscout/Provider/OPENAI/README.md +2 -1
  37. webscout/Provider/OPENAI/TogetherAI.py +52 -57
  38. webscout/Provider/OPENAI/TwoAI.py +3 -4
  39. webscout/Provider/OPENAI/__init__.py +17 -56
  40. webscout/Provider/OPENAI/ai4chat.py +313 -303
  41. webscout/Provider/OPENAI/base.py +9 -29
  42. webscout/Provider/OPENAI/chatgpt.py +7 -2
  43. webscout/Provider/OPENAI/chatgptclone.py +4 -7
  44. webscout/Provider/OPENAI/chatsandbox.py +84 -59
  45. webscout/Provider/OPENAI/deepinfra.py +12 -6
  46. webscout/Provider/OPENAI/e2b.py +60 -8
  47. webscout/Provider/OPENAI/flowith.py +4 -3
  48. webscout/Provider/OPENAI/generate_api_key.py +48 -0
  49. webscout/Provider/OPENAI/heckai.py +4 -1
  50. webscout/Provider/OPENAI/netwrck.py +9 -12
  51. webscout/Provider/OPENAI/refact.py +274 -0
  52. webscout/Provider/OPENAI/scirachat.py +6 -0
  53. webscout/Provider/OPENAI/textpollinations.py +3 -14
  54. webscout/Provider/OPENAI/toolbaz.py +14 -10
  55. webscout/Provider/OpenGPT.py +1 -1
  56. webscout/Provider/Openai.py +150 -402
  57. webscout/Provider/PI.py +1 -0
  58. webscout/Provider/Perplexitylabs.py +1 -2
  59. webscout/Provider/QwenLM.py +107 -89
  60. webscout/Provider/STT/__init__.py +17 -2
  61. webscout/Provider/{Llama3.py → Sambanova.py} +9 -10
  62. webscout/Provider/StandardInput.py +1 -1
  63. webscout/Provider/TTI/__init__.py +18 -12
  64. webscout/Provider/TTI/bing.py +14 -2
  65. webscout/Provider/TTI/together.py +10 -9
  66. webscout/Provider/TTS/README.md +0 -1
  67. webscout/Provider/TTS/__init__.py +18 -11
  68. webscout/Provider/TTS/base.py +479 -159
  69. webscout/Provider/TTS/deepgram.py +409 -156
  70. webscout/Provider/TTS/elevenlabs.py +425 -111
  71. webscout/Provider/TTS/freetts.py +317 -140
  72. webscout/Provider/TTS/gesserit.py +192 -128
  73. webscout/Provider/TTS/murfai.py +248 -113
  74. webscout/Provider/TTS/openai_fm.py +347 -129
  75. webscout/Provider/TTS/speechma.py +620 -586
  76. webscout/Provider/TeachAnything.py +1 -0
  77. webscout/Provider/TextPollinationsAI.py +5 -15
  78. webscout/Provider/TogetherAI.py +136 -142
  79. webscout/Provider/TwoAI.py +53 -309
  80. webscout/Provider/TypliAI.py +2 -1
  81. webscout/Provider/{GizAI.py → UNFINISHED/GizAI.py} +1 -1
  82. webscout/Provider/UNFINISHED/VercelAIGateway.py +339 -0
  83. webscout/Provider/Venice.py +2 -1
  84. webscout/Provider/VercelAI.py +1 -0
  85. webscout/Provider/WiseCat.py +2 -1
  86. webscout/Provider/WrDoChat.py +2 -1
  87. webscout/Provider/__init__.py +18 -174
  88. webscout/Provider/ai4chat.py +1 -1
  89. webscout/Provider/akashgpt.py +7 -10
  90. webscout/Provider/cerebras.py +194 -38
  91. webscout/Provider/chatglm.py +170 -83
  92. webscout/Provider/cleeai.py +1 -2
  93. webscout/Provider/deepseek_assistant.py +1 -1
  94. webscout/Provider/elmo.py +1 -1
  95. webscout/Provider/geminiapi.py +1 -1
  96. webscout/Provider/granite.py +1 -1
  97. webscout/Provider/hermes.py +1 -3
  98. webscout/Provider/julius.py +1 -0
  99. webscout/Provider/learnfastai.py +1 -1
  100. webscout/Provider/llama3mitril.py +1 -1
  101. webscout/Provider/llmchat.py +1 -1
  102. webscout/Provider/llmchatco.py +1 -1
  103. webscout/Provider/meta.py +3 -3
  104. webscout/Provider/oivscode.py +2 -2
  105. webscout/Provider/scira_chat.py +51 -124
  106. webscout/Provider/searchchat.py +1 -0
  107. webscout/Provider/sonus.py +1 -1
  108. webscout/Provider/toolbaz.py +15 -11
  109. webscout/Provider/turboseek.py +31 -22
  110. webscout/Provider/typefully.py +2 -1
  111. webscout/Provider/x0gpt.py +1 -0
  112. webscout/Provider/yep.py +2 -1
  113. webscout/conversation.py +22 -20
  114. webscout/sanitize.py +14 -10
  115. webscout/scout/README.md +20 -23
  116. webscout/scout/core/crawler.py +125 -38
  117. webscout/scout/core/scout.py +26 -5
  118. webscout/tempid.py +6 -0
  119. webscout/version.py +1 -1
  120. webscout/webscout_search.py +13 -6
  121. webscout/webscout_search_async.py +10 -8
  122. webscout/yep_search.py +13 -5
  123. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/METADATA +3 -1
  124. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/RECORD +132 -155
  125. webscout/Provider/AllenAI.py +0 -440
  126. webscout/Provider/Blackboxai.py +0 -793
  127. webscout/Provider/FreeGemini.py +0 -250
  128. webscout/Provider/Glider.py +0 -225
  129. webscout/Provider/Hunyuan.py +0 -283
  130. webscout/Provider/MCPCore.py +0 -322
  131. webscout/Provider/MiniMax.py +0 -207
  132. webscout/Provider/OPENAI/BLACKBOXAI.py +0 -1045
  133. webscout/Provider/OPENAI/MiniMax.py +0 -298
  134. webscout/Provider/OPENAI/autoproxy.py +0 -1067
  135. webscout/Provider/OPENAI/c4ai.py +0 -394
  136. webscout/Provider/OPENAI/copilot.py +0 -305
  137. webscout/Provider/OPENAI/glider.py +0 -330
  138. webscout/Provider/OPENAI/mcpcore.py +0 -431
  139. webscout/Provider/OPENAI/multichat.py +0 -378
  140. webscout/Provider/Reka.py +0 -214
  141. webscout/Provider/TTS/sthir.py +0 -94
  142. webscout/Provider/UNFINISHED/fetch_together_models.py +0 -90
  143. webscout/Provider/asksteve.py +0 -220
  144. webscout/Provider/copilot.py +0 -422
  145. webscout/Provider/freeaichat.py +0 -294
  146. webscout/Provider/koala.py +0 -182
  147. webscout/Provider/lmarena.py +0 -198
  148. webscout/Provider/monochat.py +0 -275
  149. webscout/Provider/multichat.py +0 -375
  150. webscout/Provider/scnet.py +0 -244
  151. webscout/Provider/talkai.py +0 -194
  152. /webscout/Provider/{Marcus.py → UNFINISHED/Marcus.py} +0 -0
  153. /webscout/Provider/{Qodo.py → UNFINISHED/Qodo.py} +0 -0
  154. /webscout/Provider/{XenAI.py → UNFINISHED/XenAI.py} +0 -0
  155. /webscout/Provider/{samurai.py → UNFINISHED/samurai.py} +0 -0
  156. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/WHEEL +0 -0
  157. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/entry_points.txt +0 -0
  158. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/licenses/LICENSE.md +0 -0
  159. {webscout-8.3.5.dist-info → webscout-8.3.7.dist-info}/top_level.txt +0 -0
@@ -204,79 +204,74 @@ class TogetherAI(OpenAICompatibleProvider):
204
204
  OpenAI-compatible client for TogetherAI API.
205
205
  """
206
206
  AVAILABLE_MODELS = [
207
- "mistralai/Mistral-7B-Instruct-v0.3",
208
- "togethercomputer/MoA-1",
209
- "Qwen/Qwen2.5-7B-Instruct-Turbo",
210
- "meta-llama/Llama-3-8b-chat-hf",
211
- "meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo",
212
- "togethercomputer/MoA-1-Turbo",
213
- "eddiehou/meta-llama/Llama-3.1-405B",
214
- "mistralai/Mistral-7B-Instruct-v0.2",
215
- "meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
216
- "meta-llama/Llama-3.2-11B-Vision-Instruct-Turbo",
217
- "meta-llama/Meta-Llama-3-70B-Instruct-Turbo",
218
- "meta-llama/Llama-3.3-70B-Instruct-Turbo",
219
- "Qwen/Qwen2.5-VL-72B-Instruct",
220
- "arcee-ai/AFM-4.5B-Preview",
221
- "lgai/exaone-3-5-32b-instruct",
222
- "meta-llama/Llama-3-70b-chat-hf",
223
- "mistralai/Mixtral-8x7B-Instruct-v0.1",
224
- "google/gemma-2-27b-it",
207
+ "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
208
+ "Qwen/QwQ-32B",
225
209
  "Qwen/Qwen2-72B-Instruct",
226
- "mistralai/Mistral-Small-24B-Instruct-2501",
227
210
  "Qwen/Qwen2-VL-72B-Instruct",
228
- "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
229
- "meta-llama/Llama-Vision-Free",
230
- "perplexity-ai/r1-1776",
231
- "scb10x/scb10x-llama3-1-typhoon2-70b-instruct",
232
- "arcee-ai/maestro-reasoning",
233
- "togethercomputer/Refuel-Llm-V2-Small",
211
+ "Qwen/Qwen2.5-72B-Instruct-Turbo",
212
+ "Qwen/Qwen2.5-7B-Instruct-Turbo",
234
213
  "Qwen/Qwen2.5-Coder-32B-Instruct",
214
+ "Qwen/Qwen2.5-VL-72B-Instruct",
215
+ "Qwen/Qwen3-235B-A22B-Instruct-2507-tput",
216
+ "Qwen/Qwen3-235B-A22B-Thinking-2507",
217
+ "Qwen/Qwen3-235B-A22B-fp8-tput",
218
+ "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8",
219
+ "Salesforce/Llama-Rank-V1",
220
+ "Virtue-AI/VirtueGuard-Text-Lite",
221
+ "arcee-ai/AFM-4.5B",
235
222
  "arcee-ai/coder-large",
236
- "Qwen/QwQ-32B",
223
+ "arcee-ai/maestro-reasoning",
224
+ "arcee-ai/virtuoso-large",
237
225
  "arcee_ai/arcee-spotlight",
226
+ "blackbox/meta-llama-3-1-8b",
227
+ "deepcogito/cogito-v2-preview-deepseek-671b",
228
+ "deepseek-ai/DeepSeek-R1",
238
229
  "deepseek-ai/DeepSeek-R1-0528-tput",
239
- "marin-community/marin-8b-instruct",
240
- "lgai/exaone-deep-32b",
241
- "google/gemma-3-27b-it",
242
230
  "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
243
- "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
244
- "mistralai/Mistral-7B-Instruct-v0.1",
245
- "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
246
- "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
247
231
  "deepseek-ai/DeepSeek-R1-Distill-Llama-70B-free",
248
- "scb10x/scb10x-typhoon-2-1-gemma3-12b",
249
- "togethercomputer/Refuel-Llm-V2",
250
- "Qwen/Qwen2.5-72B-Instruct-Turbo",
251
- "meta-llama/Meta-Llama-3-8B-Instruct-Lite",
252
- "meta-llama/Llama-4-Scout-17B-16E-Instruct",
253
- "meta-llama/Llama-3.2-3B-Instruct-Turbo",
254
- "nvidia/Llama-3.1-Nemotron-70B-Instruct-HF",
232
+ "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
233
+ "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B",
255
234
  "deepseek-ai/DeepSeek-V3",
256
- "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8",
257
- "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo",
258
- "Qwen/Qwen3-32B-FP8",
259
- "meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo",
260
- "arcee-ai/virtuoso-large",
235
+ "google/gemma-2-27b-it",
261
236
  "google/gemma-3n-E4B-it",
262
- "moonshotai/Kimi-K2-Instruct",
237
+ "lgai/exaone-3-5-32b-instruct",
238
+ "lgai/exaone-deep-32b",
239
+ "marin-community/marin-8b-instruct",
240
+ "meta-llama/Llama-2-70b-hf",
241
+ "meta-llama/Llama-3-70b-chat-hf",
242
+ "meta-llama/Llama-3-8b-chat-hf",
243
+ "meta-llama/Llama-3.2-11B-Vision-Instruct-Turbo",
244
+ "meta-llama/Llama-3.2-3B-Instruct-Turbo",
245
+ "meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo",
246
+ "meta-llama/Llama-3.3-70B-Instruct-Turbo",
247
+ "meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
248
+ "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
249
+ "meta-llama/Llama-4-Scout-17B-16E-Instruct",
250
+ "meta-llama/Llama-Vision-Free",
251
+ "meta-llama/Meta-Llama-3-70B-Instruct-Turbo",
252
+ "meta-llama/Meta-Llama-3-8B-Instruct-Lite",
253
+ "meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo",
254
+ "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo",
263
255
  "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo",
264
- "deepseek-ai/DeepSeek-R1",
265
- "Qwen/Qwen3-235B-A22B-fp8-tput",
266
- "Qwen/Qwen3-235B-A22B-Instruct-2507-tput",
267
- "Rrrr/nim/nvidia/llama-3.3-nemotron-super-49b-v1-de6a6453",
268
- "Rrrr/mistralai/Devstral-Small-2505-306f5881",
269
- "Qwen/Qwen3-235B-A22B-Thinking-2507",
270
- "Rrrr/ChatGPT-5",
271
- "Rrrr/MeowGPT-3.5",
272
- "blackbox/meta-llama-3-1-8b"
256
+ "mistralai/Mistral-7B-Instruct-v0.1",
257
+ "mistralai/Mistral-7B-Instruct-v0.2",
258
+ "mistralai/Mistral-7B-Instruct-v0.3",
259
+ "mistralai/Mistral-Small-24B-Instruct-2501",
260
+ "mistralai/Mixtral-8x7B-Instruct-v0.1",
261
+ "moonshotai/Kimi-K2-Instruct",
262
+ "nvidia/Llama-3.1-Nemotron-70B-Instruct-HF",
263
+ "perplexity-ai/r1-1776",
264
+ "scb10x/scb10x-llama3-1-typhoon2-70b-instruct",
265
+ "scb10x/scb10x-typhoon-2-1-gemma3-12b",
266
+ "togethercomputer/Refuel-Llm-V2-Small",
267
+ "zai-org/GLM-4.5-Air-FP8"
273
268
  ]
274
269
 
275
- def __init__(self, browser: str = "chrome"):
270
+ def __init__(self, browser: str = "chrome", proxies: Optional[Dict[str, str]] = None):
271
+ super().__init__(proxies=proxies)
276
272
  self.timeout = 60
277
273
  self.api_endpoint = "https://api.together.xyz/v1/chat/completions"
278
274
  self.activation_endpoint = "https://www.codegeneration.ai/activate-v2"
279
- self.session = requests.Session()
280
275
  self.headers = LitAgent().generate_fingerprint(browser=browser)
281
276
  self.session.headers.update(self.headers)
282
277
  self.chat = Chat(self)
@@ -394,13 +394,12 @@ class TwoAI(OpenAICompatibleProvider):
394
394
  raise RuntimeError("Failed to get API key from confirmation email")
395
395
  return api_key
396
396
 
397
- def __init__(self, browser: str = "chrome"):
397
+ def __init__(self, browser: str = "chrome", proxies: Optional[Dict[str, str]] = None):
398
+ super().__init__(proxies=proxies)
398
399
  api_key = self.get_cached_api_key()
399
400
  self.timeout = 30
400
401
  self.base_url = "https://api.two.ai/v2/chat/completions"
401
402
  self.api_key = api_key
402
- self.session = Session()
403
- self.session.proxies = {}
404
403
 
405
404
  headers: Dict[str, str] = {
406
405
  "Content-Type": "application/json",
@@ -464,4 +463,4 @@ if __name__ == "__main__":
464
463
  stream=True
465
464
  )
466
465
  for chunk in resp:
467
- print(chunk, end="")
466
+ print(chunk, end="")
@@ -1,57 +1,18 @@
1
1
  # This file marks the directory as a Python package.
2
- from .deepinfra import *
3
- from .glider import *
4
- from .chatgptclone import *
5
- from .x0gpt import *
6
- from .wisecat import *
7
- from .venice import *
8
- from .exaai import *
9
- from .scirachat import *
10
- from .llmchatco import *
11
- from .yep import * # Add YEPCHAT
12
- from .heckai import *
13
- from .sonus import *
14
- from .exachat import *
15
- from .netwrck import *
16
- from .standardinput import *
17
- from .writecream import *
18
- from .toolbaz import *
19
- from .opkfc import *
20
- from .chatgpt import *
21
- from .textpollinations import *
22
- from .typefully import * # Add TypefullyAI
23
- from .e2b import *
24
- from .multichat import * # Add MultiChatAI
25
- from .ai4chat import * # Add AI4Chat
26
- from .mcpcore import *
27
- from .flowith import *
28
- from .chatsandbox import *
29
- from .c4ai import *
30
- from .flowith import *
31
- from .Cloudflare import *
32
- from .NEMOTRON import *
33
- from .BLACKBOXAI import *
34
- from .copilot import * # Add Microsoft Copilot
35
- from .TwoAI import *
36
- from .oivscode import * # Add OnRender provider
37
- from .Qwen3 import *
38
- from .FalconH1 import *
39
- from .PI import * # Add PI.ai provider
40
- from .TogetherAI import * # Add TogetherAI provider
41
- from .xenai import * # Add XenAI provider
42
- from .GeminiProxy import * # Add GeminiProxy provider
43
- from .friendli import *
44
- from .monochat import *
45
- from .MiniMax import * # Add MiniMaxAI provider
46
- from .qodo import * # Add QodoAI provider
47
- # Export auto-proxy functionality
48
- from .autoproxy import (
49
- get_auto_proxy,
50
- get_proxy_dict,
51
- get_working_proxy,
52
- test_proxy,
53
- get_proxy_stats,
54
- refresh_proxy_cache,
55
- set_proxy_cache_duration,
56
- ProxyAutoMeta
57
- )
2
+
3
+ import os
4
+ import importlib
5
+ from pathlib import Path
6
+
7
+ # Get current directory
8
+ current_dir = Path(__file__).parent
9
+
10
+ # Auto-import all .py files (except __init__.py)
11
+ for file_path in current_dir.glob("*.py"):
12
+ if file_path.name != "__init__.py":
13
+ module_name = file_path.stem
14
+ try:
15
+ module = importlib.import_module(f".{module_name}", package=__name__)
16
+ globals().update(vars(module))
17
+ except ImportError:
18
+ pass # Skip files that can't be imported