webscout 4.7__py3-none-any.whl → 4.9__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 (53) hide show
  1. webscout/Agents/functioncall.py +97 -37
  2. webscout/Bard.py +365 -0
  3. webscout/Bing_search.py +124 -0
  4. webscout/DWEBS.py +141 -777
  5. webscout/Local/_version.py +1 -1
  6. webscout/Provider/Andi.py +7 -1
  7. webscout/Provider/BasedGPT.py +11 -5
  8. webscout/Provider/Berlin4h.py +11 -5
  9. webscout/Provider/Blackboxai.py +10 -4
  10. webscout/Provider/Cloudflare.py +286 -0
  11. webscout/Provider/Cohere.py +11 -5
  12. webscout/Provider/DARKAI.py +25 -7
  13. webscout/Provider/Deepinfra.py +2 -1
  14. webscout/Provider/Deepseek.py +25 -9
  15. webscout/Provider/DiscordRocks.py +389 -0
  16. webscout/Provider/Farfalle.py +227 -0
  17. webscout/Provider/Gemini.py +1 -1
  18. webscout/Provider/Groq.py +244 -110
  19. webscout/Provider/Llama.py +13 -5
  20. webscout/Provider/Llama3.py +15 -2
  21. webscout/Provider/OLLAMA.py +8 -7
  22. webscout/Provider/{Geminiflash.py → PI.py} +96 -40
  23. webscout/Provider/Perplexity.py +422 -52
  24. webscout/Provider/Phind.py +6 -5
  25. webscout/Provider/PizzaGPT.py +7 -1
  26. webscout/Provider/Youchat.py +98 -76
  27. webscout/Provider/__init__.py +26 -31
  28. webscout/Provider/ai4chat.py +193 -0
  29. webscout/Provider/{VTLchat.py → felo_search.py} +62 -76
  30. webscout/Provider/julius.py +263 -0
  31. webscout/Provider/koala.py +11 -5
  32. webscout/Provider/liaobots.py +268 -0
  33. webscout/Provider/meta.py +2 -1
  34. webscout/Provider/{ChatGPTUK.py → turboseek.py} +79 -56
  35. webscout/Provider/{FreeGemini.py → xdash.py} +51 -18
  36. webscout/Provider/yep.py +258 -0
  37. webscout/__init__.py +1 -59
  38. webscout/version.py +1 -1
  39. webscout/webai.py +2 -64
  40. webscout/webscout_search.py +1 -1
  41. {webscout-4.7.dist-info → webscout-4.9.dist-info}/METADATA +249 -323
  42. webscout-4.9.dist-info/RECORD +83 -0
  43. webscout/GoogleS.py +0 -342
  44. webscout/Provider/Geminipro.py +0 -152
  45. webscout/Provider/Leo.py +0 -469
  46. webscout/Provider/OpenGPT.py +0 -867
  47. webscout/Provider/Xjai.py +0 -230
  48. webscout/Provider/Yepchat.py +0 -478
  49. webscout-4.7.dist-info/RECORD +0 -80
  50. {webscout-4.7.dist-info → webscout-4.9.dist-info}/LICENSE.md +0 -0
  51. {webscout-4.7.dist-info → webscout-4.9.dist-info}/WHEEL +0 -0
  52. {webscout-4.7.dist-info → webscout-4.9.dist-info}/entry_points.txt +0 -0
  53. {webscout-4.7.dist-info → webscout-4.9.dist-info}/top_level.txt +0 -0
@@ -1,478 +0,0 @@
1
- import time
2
- import uuid
3
- from selenium import webdriver
4
- from selenium.webdriver.chrome.options import Options
5
- from selenium.webdriver.common.by import By
6
- from selenium.webdriver.support import expected_conditions as EC
7
- from selenium.webdriver.support.ui import WebDriverWait
8
- import click
9
- import requests
10
- from requests import get
11
- from uuid import uuid4
12
- from re import findall
13
- from requests.exceptions import RequestException
14
- from curl_cffi.requests import get, RequestsError
15
- import g4f
16
- from random import randint
17
- from PIL import Image
18
- import io
19
- import re
20
- import json
21
- import yaml
22
- from ..AIutel import Optimizers
23
- from ..AIutel import Conversation
24
- from ..AIutel import AwesomePrompts, sanitize_stream
25
- from ..AIbase import Provider, AsyncProvider
26
- from Helpingai_T2 import Perplexity
27
- from webscout import exceptions
28
- from typing import Any, AsyncGenerator, Dict
29
- import logging
30
- import httpx
31
-
32
- #-------------------------------------------------------yep.com--------------------------------------------------------
33
- class YEPCHAT(Provider):
34
- def __init__(
35
- self,
36
- is_conversation: bool = True,
37
- max_tokens: int = 600,
38
- temperature: float = 0.6,
39
- presence_penalty: int = 0,
40
- frequency_penalty: int = 0,
41
- top_p: float = 0.7,
42
- model: str = "Mixtral-8x7B-Instruct-v0.1",
43
- timeout: int = 30,
44
- intro: str = None,
45
- filepath: str = None,
46
- update_file: bool = True,
47
- proxies: dict = {},
48
- history_offset: int = 10250,
49
- act: str = None,
50
- ):
51
- """Instantiates YEPCHAT
52
-
53
- Args:
54
- is_conversation (bool, optional): Flag for chatting conversationally. Defaults to True.
55
- max_tokens (int, optional): Maximum number of tokens to be generated upon completion. Defaults to 600.
56
- temperature (float, optional): Charge of the generated text's randomness. Defaults to 0.6.
57
- presence_penalty (int, optional): Chances of topic being repeated. Defaults to 0.
58
- frequency_penalty (int, optional): Chances of word being repeated. Defaults to 0.
59
- top_p (float, optional): Sampling threshold during inference time. Defaults to 0.7.
60
- model (str, optional): LLM model name. Defaults to "gpt-3.5-turbo".
61
- timeout (int, optional): Http request timeout. Defaults to 30.
62
- intro (str, optional): Conversation introductory prompt. Defaults to None.
63
- filepath (str, optional): Path to file containing conversation history. Defaults to None.
64
- update_file (bool, optional): Add new prompts and responses to the file. Defaults to True.
65
- proxies (dict, optional): Http request proxies. Defaults to {}.
66
- history_offset (int, optional): Limit conversation history to this number of last texts. Defaults to 10250.
67
- act (str|int, optional): Awesome prompt key or index. (Used as intro). Defaults to None.
68
- """
69
- self.session = requests.Session()
70
- self.is_conversation = is_conversation
71
- self.max_tokens_to_sample = max_tokens
72
- self.model = model
73
- self.temperature = temperature
74
- self.presence_penalty = presence_penalty
75
- self.frequency_penalty = frequency_penalty
76
- self.top_p = top_p
77
- self.chat_endpoint = "https://api.yep.com/v1/chat/completions"
78
- self.stream_chunk_size = 64
79
- self.timeout = timeout
80
- self.last_response = {}
81
- self.headers = {
82
- "Accept": "*/*",
83
- "Accept-Encoding": "gzip, deflate",
84
- "Accept-Language": "en-US,en;q=0.9",
85
- "Content-Type": "application/json; charset=utf-8",
86
- "Origin": "https://yep.com",
87
- "Referer": "https://yep.com/",
88
- "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
89
- }
90
-
91
- self.__available_optimizers = (
92
- method
93
- for method in dir(Optimizers)
94
- if callable(getattr(Optimizers, method)) and not method.startswith("__")
95
- )
96
- self.session.headers.update(self.headers)
97
- Conversation.intro = (
98
- AwesomePrompts().get_act(
99
- act, raise_not_found=True, default=None, case_insensitive=True
100
- )
101
- if act
102
- else intro or Conversation.intro
103
- )
104
- self.conversation = Conversation(
105
- is_conversation, self.max_tokens_to_sample, filepath, update_file
106
- )
107
- self.conversation.history_offset = history_offset
108
- self.session.proxies = proxies
109
-
110
- def ask(
111
- self,
112
- prompt: str,
113
- stream: bool = False,
114
- raw: bool = False,
115
- optimizer: str = None,
116
- conversationally: bool = False,
117
- ) -> dict:
118
- """Chat with AI
119
-
120
- Args:
121
- prompt (str): Prompt to be send.
122
- stream (bool, optional): Flag for streaming response. Defaults to False.
123
- raw (bool, optional): Stream back raw response as received. Defaults to False.
124
- optimizer (str, optional): Prompt optimizer name - `[code, shell_command]`. Defaults to None.
125
- conversationally (bool, optional): Chat conversationally when using optimizer. Defaults to False.
126
- Returns:
127
- dict : {}
128
- ```json
129
- {
130
- "id": "cmpl-c61c1c88de4e4ad3a79134775d17ea0c",
131
- "object": "chat.completion.chunk",
132
- "created": 1713876886,
133
- "model": "Mixtral-8x7B-Instruct-v0.1",
134
- "choices": [
135
- {
136
- "index": 0,
137
- "delta": {
138
- "role": null,
139
- "content": " Sure, I can help with that. Are you looking for information on how to start coding, or do you need help with a specific coding problem? We can discuss various programming languages like Python, JavaScript, Java, C++, or others. Please provide more details so I can assist you better."
140
- },
141
- "finish_reason": null
142
- }
143
- ]
144
- }
145
- ```
146
- """
147
- conversation_prompt = self.conversation.gen_complete_prompt(prompt)
148
- if optimizer:
149
- if optimizer in self.__available_optimizers:
150
- conversation_prompt = getattr(Optimizers, optimizer)(
151
- conversation_prompt if conversationally else prompt
152
- )
153
- else:
154
- raise Exception(
155
- f"Optimizer is not one of {self.__available_optimizers}"
156
- )
157
- self.session.headers.update(self.headers)
158
- payload = {
159
- "stream": True,
160
- "max_tokens": 1280,
161
- "top_p": self.top_p,
162
- "temperature": self.temperature,
163
- "messages": [{"content": conversation_prompt, "role": "user"}],
164
- "model": self.model,
165
- }
166
-
167
- def for_stream():
168
- response = self.session.post(
169
- self.chat_endpoint, json=payload, stream=True, timeout=self.timeout
170
- )
171
- if not response.ok:
172
- raise exceptions.FailedToGenerateResponseError(
173
- f"Failed to generate response - ({response.status_code}, {response.reason}) - {response.text}"
174
- )
175
-
176
- message_load = ""
177
- for value in response.iter_lines(
178
- decode_unicode=True,
179
- delimiter="" if raw else "data:",
180
- chunk_size=self.stream_chunk_size,
181
- ):
182
- try:
183
- resp = json.loads(value)
184
- incomplete_message = self.get_message(resp)
185
- if incomplete_message:
186
- message_load += incomplete_message
187
- resp["choices"][0]["delta"]["content"] = message_load
188
- self.last_response.update(resp)
189
- yield value if raw else resp
190
- elif raw:
191
- yield value
192
- except json.decoder.JSONDecodeError:
193
- pass
194
- self.conversation.update_chat_history(
195
- prompt, self.get_message(self.last_response)
196
- )
197
-
198
- def for_non_stream():
199
- for _ in for_stream():
200
- pass
201
- return self.last_response
202
-
203
- return for_stream() if stream else for_non_stream()
204
-
205
- def chat(
206
- self,
207
- prompt: str,
208
- stream: bool = False,
209
- optimizer: str = None,
210
- conversationally: bool = False,
211
- ) -> str:
212
- """Generate response `str`
213
- Args:
214
- prompt (str): Prompt to be send.
215
- stream (bool, optional): Flag for streaming response. Defaults to False.
216
- optimizer (str, optional): Prompt optimizer name - `[code, shell_command]`. Defaults to None.
217
- conversationally (bool, optional): Chat conversationally when using optimizer. Defaults to False.
218
- Returns:
219
- str: Response generated
220
- """
221
-
222
- def for_stream():
223
- for response in self.ask(
224
- prompt, True, optimizer=optimizer, conversationally=conversationally
225
- ):
226
- yield self.get_message(response)
227
-
228
- def for_non_stream():
229
- return self.get_message(
230
- self.ask(
231
- prompt,
232
- False,
233
- optimizer=optimizer,
234
- conversationally=conversationally,
235
- )
236
- )
237
-
238
- return for_stream() if stream else for_non_stream()
239
-
240
- def get_message(self, response: dict) -> str:
241
- """Retrieves message only from response
242
-
243
- Args:
244
- response (dict): Response generated by `self.ask`
245
-
246
- Returns:
247
- str: Message extracted
248
- """
249
- assert isinstance(response, dict), "Response should be of dict data-type only"
250
- try:
251
- if response["choices"][0].get("delta"):
252
- return response["choices"][0]["delta"]["content"]
253
- return response["choices"][0]["message"]["content"]
254
- except KeyError:
255
- return ""
256
- class AsyncYEPCHAT(AsyncProvider):
257
- def __init__(
258
- self,
259
- is_conversation: bool = True,
260
- max_tokens: int = 600,
261
- temperature: float = 0.6,
262
- presence_penalty: int = 0,
263
- frequency_penalty: int = 0,
264
- top_p: float = 0.7,
265
- model: str = "Mixtral-8x7B-Instruct-v0.1",
266
- timeout: int = 30,
267
- intro: str = None,
268
- filepath: str = None,
269
- update_file: bool = True,
270
- proxies: dict = {},
271
- history_offset: int = 10250,
272
- act: str = None,
273
- ):
274
- """Instantiates YEPCHAT
275
-
276
- Args:
277
- is_conversation (bool, optional): Flag for chatting conversationally. Defaults to True.
278
- max_tokens (int, optional): Maximum number of tokens to be generated upon completion. Defaults to 600.
279
- temperature (float, optional): Charge of the generated text's randomness. Defaults to 0.6.
280
- presence_penalty (int, optional): Chances of topic being repeated. Defaults to 0.
281
- frequency_penalty (int, optional): Chances of word being repeated. Defaults to 0.
282
- top_p (float, optional): Sampling threshold during inference time. Defaults to 0.7.
283
- model (str, optional): LLM model name. Defaults to "gpt-3.5-turbo".
284
- timeout (int, optional): Http request timeout. Defaults to 30.
285
- intro (str, optional): Conversation introductory prompt. Defaults to None.
286
- filepath (str, optional): Path to file containing conversation history. Defaults to None.
287
- update_file (bool, optional): Add new prompts and responses to the file. Defaults to True.
288
- proxies (dict, optional): Http request proxies. Defaults to {}.
289
- history_offset (int, optional): Limit conversation history to this number of last texts. Defaults to 10250.
290
- act (str|int, optional): Awesome prompt key or index. (Used as intro). Defaults to None.
291
- """
292
- self.session = requests.Session()
293
- self.is_conversation = is_conversation
294
- self.max_tokens_to_sample = max_tokens
295
- self.model = model
296
- self.temperature = temperature
297
- self.presence_penalty = presence_penalty
298
- self.frequency_penalty = frequency_penalty
299
- self.top_p = top_p
300
- self.chat_endpoint = "https://api.yep.com/v1/chat/completions"
301
- self.stream_chunk_size = 64
302
- self.timeout = timeout
303
- self.last_response = {}
304
- self.headers = {
305
- "Accept": "*/*",
306
- "Accept-Encoding": "gzip, deflate",
307
- "Accept-Language": "en-US,en;q=0.9",
308
- "Content-Type": "application/json; charset=utf-8",
309
- "Origin": "https://yep.com",
310
- "Referer": "https://yep.com/",
311
- "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
312
- }
313
-
314
- self.__available_optimizers = (
315
- method
316
- for method in dir(Optimizers)
317
- if callable(getattr(Optimizers, method)) and not method.startswith("__")
318
- )
319
- Conversation.intro = (
320
- AwesomePrompts().get_act(
321
- act, raise_not_found=True, default=None, case_insensitive=True
322
- )
323
- if act
324
- else intro or Conversation.intro
325
- )
326
- self.conversation = Conversation(
327
- is_conversation, self.max_tokens_to_sample, filepath, update_file
328
- )
329
- self.conversation.history_offset = history_offset
330
- self.session = httpx.AsyncClient(
331
- headers=self.headers,
332
- proxies=proxies,
333
- )
334
-
335
- async def ask(
336
- self,
337
- prompt: str,
338
- stream: bool = False,
339
- raw: bool = False,
340
- optimizer: str = None,
341
- conversationally: bool = False,
342
- ) -> dict:
343
- """Chat with AI asynchronously.
344
-
345
- Args:
346
- prompt (str): Prompt to be send.
347
- stream (bool, optional): Flag for streaming response. Defaults to False.
348
- raw (bool, optional): Stream back raw response as received. Defaults to False.
349
- optimizer (str, optional): Prompt optimizer name - `[code, shell_command]`. Defaults to None.
350
- conversationally (bool, optional): Chat conversationally when using optimizer. Defaults to False.
351
- Returns:
352
- dict : {}
353
- ```json
354
- {
355
- "id": "cmpl-c61c1c88de4e4ad3a79134775d17ea0c",
356
- "object": "chat.completion.chunk",
357
- "created": 1713876886,
358
- "model": "Mixtral-8x7B-Instruct-v0.1",
359
- "choices": [
360
- {
361
- "index": 0,
362
- "delta": {
363
- "role": null,
364
- "content": " Sure, I can help with that. Are you looking for information on how to start coding, or do you need help with a specific coding problem? We can discuss various programming languages like Python, JavaScript, Java, C++, or others. Please provide more details so I can assist you better."
365
- },
366
- "finish_reason": null
367
- }
368
- ]
369
- }
370
- ```
371
- """
372
- conversation_prompt = self.conversation.gen_complete_prompt(prompt)
373
- if optimizer:
374
- if optimizer in self.__available_optimizers:
375
- conversation_prompt = getattr(Optimizers, optimizer)(
376
- conversation_prompt if conversationally else prompt
377
- )
378
- else:
379
- raise Exception(
380
- f"Optimizer is not one of {self.__available_optimizers}"
381
- )
382
- payload = {
383
- "stream": True,
384
- "max_tokens": 1280,
385
- "top_p": self.top_p,
386
- "temperature": self.temperature,
387
- "messages": [{"content": conversation_prompt, "role": "user"}],
388
- "model": self.model,
389
- }
390
-
391
- async def for_stream():
392
- async with self.session.stream(
393
- "POST", self.chat_endpoint, json=payload, timeout=self.timeout
394
- ) as response:
395
- if not response.is_success:
396
- raise exceptions.FailedToGenerateResponseError(
397
- f"Failed to generate response - ({response.status_code}, {response.reason_phrase}) - {response.text}"
398
- )
399
-
400
- message_load = ""
401
- async for value in response.aiter_lines():
402
- try:
403
- resp = sanitize_stream(value)
404
- incomplete_message = await self.get_message(resp)
405
- if incomplete_message:
406
- message_load += incomplete_message
407
- resp["choices"][0]["delta"]["content"] = message_load
408
- self.last_response.update(resp)
409
- yield value if raw else resp
410
- elif raw:
411
- yield value
412
- except json.decoder.JSONDecodeError:
413
- pass
414
-
415
- self.conversation.update_chat_history(
416
- prompt, await self.get_message(self.last_response)
417
- )
418
-
419
- async def for_non_stream():
420
- async for _ in for_stream():
421
- pass
422
- return self.last_response
423
-
424
- return for_stream() if stream else await for_non_stream()
425
-
426
- async def chat(
427
- self,
428
- prompt: str,
429
- stream: bool = False,
430
- optimizer: str = None,
431
- conversationally: bool = False,
432
- ) -> str:
433
- """Generate response `str` asynchronously.
434
- Args:
435
- prompt (str): Prompt to be send.
436
- stream (bool, optional): Flag for streaming response. Defaults to False.
437
- optimizer (str, optional): Prompt optimizer name - `[code, shell_command]`. Defaults to None.
438
- conversationally (bool, optional): Chat conversationally when using optimizer. Defaults to False.
439
- Returns:
440
- str: Response generated
441
- """
442
-
443
- async def for_stream():
444
- async_ask = await self.ask(
445
- prompt, True, optimizer=optimizer, conversationally=conversationally
446
- )
447
-
448
- async for response in async_ask:
449
- yield await self.get_message(response)
450
-
451
- async def for_non_stream():
452
- return await self.get_message(
453
- await self.ask(
454
- prompt,
455
- False,
456
- optimizer=optimizer,
457
- conversationally=conversationally,
458
- )
459
- )
460
-
461
- return for_stream() if stream else await for_non_stream()
462
-
463
- async def get_message(self, response: dict) -> str:
464
- """Retrieves message only from response
465
-
466
- Args:
467
- response (dict): Response generated by `self.ask`
468
-
469
- Returns:
470
- str: Message extracted
471
- """
472
- assert isinstance(response, dict), "Response should be of dict data-type only"
473
- try:
474
- if response["choices"][0].get("delta"):
475
- return response["choices"][0]["delta"]["content"]
476
- return response["choices"][0]["message"]["content"]
477
- except KeyError:
478
- return ""
@@ -1,80 +0,0 @@
1
- webscout/AIauto.py,sha256=gC01wLPpnqONf9DwKqkmbC_gIWo5Lh5V8YPu4OmYnhE,19923
2
- webscout/AIbase.py,sha256=GoHbN8r0gq2saYRZv6LA-Fr9Jlcjv80STKFXUq2ZeGU,4710
3
- webscout/AIutel.py,sha256=e1RbQHMMPL_sB_P_lNk8DKWDNiTGteMiCK-_uUKagbw,34248
4
- webscout/DWEBS.py,sha256=QLuT1IKu0lnwdl7W6c-ctBAO7Jj0Zk3PYm6-13BC7rU,25740
5
- webscout/GoogleS.py,sha256=dW_iArNTyFT5MWBEI1HQvqf-Noj3uJeJA_Eods8D4ms,11587
6
- webscout/LLM.py,sha256=LbGCZdJf8A5dwfoGS4tyy39tAh5BDdhMZP0ScKaaQfU,4184
7
- webscout/YTdownloader.py,sha256=uWpUWnw9pxeEGw9KJ_3XDyQ5gd38gH1dJpr-HJo4vzU,39144
8
- webscout/__init__.py,sha256=NK2atRuAg26zcT1g5bkwOwPDZyBbTud1mjbrDexjvhI,2282
9
- webscout/__main__.py,sha256=ZtTRgsRjUi2JOvYFLF1ZCh55Sdoz94I-BS-TlJC7WDU,126
10
- webscout/async_providers.py,sha256=MRj0klEhBYVQXnzZGG_15d0e-TPA0nOc2nn735H-wR4,622
11
- webscout/cli.py,sha256=RlBKeS9CSIsiBMqlzxevWtKjbY9htkZvA7J0bM_hHE8,14999
12
- webscout/exceptions.py,sha256=GMeOdYqWKmuFU6Uq8MHKCInXQmJc7a_7AanKdyVcYTM,607
13
- webscout/g4f.py,sha256=NNcnlOtIWV9R93UsBN4jBGBEJ9sJ-Np1WbgjkGVDcYc,24487
14
- webscout/models.py,sha256=5iQIdtedT18YuTZ3npoG7kLMwcrKwhQ7928dl_7qZW0,692
15
- webscout/tempid.py,sha256=5oc3UbXhPGKxrMRTfRABT-V-dNzH_hOKWtLYM6iCWd4,5896
16
- webscout/transcriber.py,sha256=EddvTSq7dPJ42V3pQVnGuEiYQ7WjJ9uyeR9kMSxN7uY,20622
17
- webscout/utils.py,sha256=2O8_lftBKsv5OEvVaXCN-h0sipup0m3jxzhFdWQrdY8,2873
18
- webscout/version.py,sha256=KMQp1OFSXS2c5ktgRbsGATEX6rfWibjyO1pA1IvlI2g,44
19
- webscout/voice.py,sha256=AHyeb3D8rYuAa-zBJsuMDgHq_Zvi98ROMKAUnEsKldo,1169
20
- webscout/webai.py,sha256=MyKfQ7QftSQGX8iBlQrcNZcn23bf8wSdwCIZnY6LpTI,90162
21
- webscout/webscout_search.py,sha256=evbJPy8vG2YgBuUwyHaOkinIdVlgM-esvjVOvy6N8jY,43729
22
- webscout/webscout_search_async.py,sha256=dooKGwLm0cwTml55Vy6NHPPY-nymEqX2h8laX94Zg5A,14537
23
- webscout/websx_search.py,sha256=5hfkkmGFhyQzojUpvMzIOJ3DBZIBNS90UReaacsfu6s,521
24
- webscout/Agents/Onlinesearcher.py,sha256=GzF2JcMfj07d74mxQEoaxwtxahgLHl3b_ugTbXjOwq4,7113
25
- webscout/Agents/__init__.py,sha256=VbGyW5pulh3LRqbVTv54n5TwWsrTqOANRioG18xtdJ0,58
26
- webscout/Agents/functioncall.py,sha256=5Nfmh8gmFOs7ZV7jJgZElZlJhi7hHrhxbITgLT7UpeI,5242
27
- webscout/Extra/__init__.py,sha256=GG1qUwS-HspT4TeeAIT4qFpM8PaO1ZdQhpelctaM7Rs,99
28
- webscout/Extra/autollama.py,sha256=8lyodIWAgJABzlMMHytlolPCgvUKh8ynkZD6MMEltXs,5970
29
- webscout/Extra/gguf.py,sha256=RvSp7xuaD6epAA9iAzthUnAQ3HA5N-svMyKUadAVnw8,7009
30
- webscout/Extra/weather.py,sha256=wdSrQxZRpbNfyaux0BeLdaDWyde5KwxZjSUM13820X0,2460
31
- webscout/Extra/weather_ascii.py,sha256=Aed-_EUzvTEjBXbOpNRxkJBLa6fXsclknXP06HnQD18,808
32
- webscout/Local/__init__.py,sha256=RN6klpbabPGNX2YzPm_hdeUcQvieUwvJt22uAO2RKSM,238
33
- webscout/Local/_version.py,sha256=yH-h9AKl_KbJwMWeq0PDDOVI2FQ9NutjLDqcCGuAQ6I,83
34
- webscout/Local/formats.py,sha256=BiZZSoN3e8S6-S-ykBL9ogSUs0vK11GaZ3ghc9U8GRk,18994
35
- webscout/Local/model.py,sha256=T_bzNNrxEyOyLyhp6fKwiuVBBkXC2a37LzJVCxFIxOU,30710
36
- webscout/Local/rawdog.py,sha256=ojY_O8Vb1KvR34OwWdfLgllgaAK_7HMf64ElMATvCXs,36689
37
- webscout/Local/samplers.py,sha256=qXwU4eLXER-2aCYzcJcTgA6BeFmi5GMpTDUX1C9pTN4,4372
38
- webscout/Local/thread.py,sha256=Lyf_N2CaGAn2usSWSiUXLPAgpWub8vUu_tgFgtnvZVA,27408
39
- webscout/Local/utils.py,sha256=CSt9IqHhVGk_nJEnKvSFbLhC5nNf01e0MtwpgMmF9pA,6197
40
- webscout/Provider/Andi.py,sha256=y7Y9sC83NeMvK3MheROFoMttrFs9nGwjYaLNLPZMGCQ,10485
41
- webscout/Provider/BasedGPT.py,sha256=c03PWIsDbG98XD7EOKYmuxaaevOAcYmkRFSB2fYj4MU,8683
42
- webscout/Provider/Berlin4h.py,sha256=zMpmWmdFCbcE3UWB-F9xbbTWZTfx4GnjnRf6sDoaiC0,8552
43
- webscout/Provider/Blackboxai.py,sha256=ywq3PFDmogYzyNm12cdXyndaC3mL80mU-17zeB-y1vE,17154
44
- webscout/Provider/ChatGPTUK.py,sha256=qmuCb_a71GNE5LelOb5AKJUBndvj7soebiNey4VdDvE,8570
45
- webscout/Provider/Cohere.py,sha256=IXnRosYOaMAA65nvsKmN6ZkJGSdZFYQYBidzuNaCqX8,8711
46
- webscout/Provider/DARKAI.py,sha256=dbTX6dpS_13bX7AfOMUyDdhLNQJIpB7mTs_28hDuPXE,8538
47
- webscout/Provider/Deepinfra.py,sha256=kVnWARJdEtIeIsZwGw3POq8B2dO87bDcJso3uOeCeOA,18750
48
- webscout/Provider/Deepseek.py,sha256=IYJHZsM3ezhwzn4Wg1Ms-ZDyMH71Frtnfi3XZxGQpuw,8691
49
- webscout/Provider/FreeGemini.py,sha256=GbTJEG09vs5IKWKy9FqHBvDNKVq-HdMexOplctpb0RI,6426
50
- webscout/Provider/Gemini.py,sha256=_4DHWvlWuNAmVHPwHB1RjmryjTZZCthLa6lvPEHLvkQ,8451
51
- webscout/Provider/Geminiflash.py,sha256=1kMPA-ypi1gmJoms606Z7j_51znpdofM2aAyo4Hl7wU,5951
52
- webscout/Provider/Geminipro.py,sha256=nOifT5CRmnUg28iifSbOHkNLoKucLRr5zCj607mVrhw,5948
53
- webscout/Provider/Groq.py,sha256=QfgP3hKUcqq5vUA4Pzuu3HAgpJkKwLWNjjsnxtkCYd8,21094
54
- webscout/Provider/Koboldai.py,sha256=KwWx2yPlvT9BGx37iNvSbgzWkJ9I8kSOmeg7sL1hb0M,15806
55
- webscout/Provider/Leo.py,sha256=wbuDR-vFjLptfRC6yDlk74tINqNvCOzpISsK92lIgGg,19987
56
- webscout/Provider/Llama.py,sha256=F_srqtdo6ws03tnEaetZOfDolXrQEnLZaIxmQaY_tJQ,8052
57
- webscout/Provider/Llama3.py,sha256=HIDLC2uYHOF-8D0XjOJZ-VJdBPLTdpyO-hlbXCZU05o,7199
58
- webscout/Provider/OLLAMA.py,sha256=G8sz_P7OZINFI1qGnpDhNPWU789Sv2cpDnShOA5Nbmw,7075
59
- webscout/Provider/OpenGPT.py,sha256=ZymwLgNJSPlGZHW3msMlnRR7NxmALqJw9yuToqrRrhw,35515
60
- webscout/Provider/Openai.py,sha256=SjfVOwY94unVnXhvN0Fkome-q2-wi4mPJk_vCGq5Fjc,20617
61
- webscout/Provider/Perplexity.py,sha256=CPdKqkdlVejXDcf1uycNO4LPCVNUADSCetvyJEGepSw,8826
62
- webscout/Provider/Phind.py,sha256=bkgKVtggRJSbJAG1tXviW9BqDvcgqPBlSr88Q6rlFHw,39226
63
- webscout/Provider/PizzaGPT.py,sha256=bxCf91sgu9iZAaBzyfaVVHWqz-nt6FfKhQUqCZdfv1g,7065
64
- webscout/Provider/Poe.py,sha256=ObUxa-Fa2Dq7sJcV0hc65m09StS9uWsB2-bR2rSjXDY,7510
65
- webscout/Provider/RUBIKSAI.py,sha256=HPY8klGBNVVkfAXb-RziNrEtJGItjiqbSyXKXTOIHW4,7954
66
- webscout/Provider/Reka.py,sha256=F0ZXENkhARprj5biK3mRxwiuPH0BW3ga7EWsi8agbtE,8917
67
- webscout/Provider/ThinkAnyAI.py,sha256=_qFjj0djxxrranyEY33w14oizyRjzlVwMv_hzvVtwNc,11616
68
- webscout/Provider/VTLchat.py,sha256=_sErGr-wOi16ZAfiGOo0bPsAEMkjzzwreEsIqjIZMIU,10041
69
- webscout/Provider/Xjai.py,sha256=BIlk2ouz9Kh_0Gg9hPvTqhI7XtcmWdg5vHSX_4uGrIs,9039
70
- webscout/Provider/Yepchat.py,sha256=2Eit-A7w1ph1GQKNQuur_yaDzI64r0yBGxCIjDefJxQ,19875
71
- webscout/Provider/Youchat.py,sha256=fhMpt94pIPE_XDbC4z9xyfgA7NbkNE2wlRFJabsjv90,8069
72
- webscout/Provider/__init__.py,sha256=oBdZqgg3oQQztSLF0kVS-kFF-Kr7J5IpFXBTJUR0vQI,2241
73
- webscout/Provider/koala.py,sha256=uBYJU_3YmC1qyCugDOrMSLoUR8my76zt_WqIUiGgf2Q,9840
74
- webscout/Provider/meta.py,sha256=vTJQtor91R5hrogCWOwiE422syjM-rFMn-s_8kURBnc,30664
75
- webscout-4.7.dist-info/LICENSE.md,sha256=9P0imsudI7MEvZe2pOcg8rKBn6E5FGHQ-riYozZI-Bk,2942
76
- webscout-4.7.dist-info/METADATA,sha256=stcOxQWhpH2_4NZlnIyJoY35MkSgjgEJuwn6JJIVdpU,56101
77
- webscout-4.7.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
78
- webscout-4.7.dist-info/entry_points.txt,sha256=Hh4YIIjvkqB9SVxZ2ri4DZUkgEu_WF_5_r_nZDIvfG8,73
79
- webscout-4.7.dist-info/top_level.txt,sha256=nYIw7OKBQDr_Z33IzZUKidRD3zQEo8jOJYkMVMeN334,9
80
- webscout-4.7.dist-info/RECORD,,
File without changes