webscout 7.8__py3-none-any.whl → 7.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 (41) hide show
  1. webscout/Bard.py +5 -25
  2. webscout/DWEBS.py +476 -476
  3. webscout/Extra/__init__.py +2 -0
  4. webscout/Extra/autocoder/__init__.py +1 -1
  5. webscout/Extra/autocoder/{rawdog.py → autocoder.py} +849 -849
  6. webscout/Extra/tempmail/__init__.py +26 -0
  7. webscout/Extra/tempmail/async_utils.py +141 -0
  8. webscout/Extra/tempmail/base.py +156 -0
  9. webscout/Extra/tempmail/cli.py +187 -0
  10. webscout/Extra/tempmail/mail_tm.py +361 -0
  11. webscout/Extra/tempmail/temp_mail_io.py +292 -0
  12. webscout/Provider/Deepinfra.py +288 -286
  13. webscout/Provider/ElectronHub.py +709 -716
  14. webscout/Provider/ExaChat.py +20 -5
  15. webscout/Provider/Gemini.py +167 -165
  16. webscout/Provider/Groq.py +38 -24
  17. webscout/Provider/LambdaChat.py +2 -1
  18. webscout/Provider/TextPollinationsAI.py +232 -230
  19. webscout/Provider/__init__.py +0 -4
  20. webscout/Provider/copilot.py +427 -427
  21. webscout/Provider/freeaichat.py +8 -1
  22. webscout/Provider/uncovr.py +312 -299
  23. webscout/Provider/yep.py +64 -12
  24. webscout/__init__.py +38 -36
  25. webscout/cli.py +293 -293
  26. webscout/conversation.py +350 -17
  27. webscout/litprinter/__init__.py +59 -667
  28. webscout/optimizers.py +419 -419
  29. webscout/update_checker.py +14 -12
  30. webscout/version.py +1 -1
  31. webscout/webscout_search.py +1282 -1282
  32. webscout/webscout_search_async.py +813 -813
  33. {webscout-7.8.dist-info → webscout-7.9.dist-info}/METADATA +44 -39
  34. {webscout-7.8.dist-info → webscout-7.9.dist-info}/RECORD +38 -35
  35. webscout/Provider/DARKAI.py +0 -225
  36. webscout/Provider/EDITEE.py +0 -192
  37. webscout/litprinter/colors.py +0 -54
  38. {webscout-7.8.dist-info → webscout-7.9.dist-info}/LICENSE.md +0 -0
  39. {webscout-7.8.dist-info → webscout-7.9.dist-info}/WHEEL +0 -0
  40. {webscout-7.8.dist-info → webscout-7.9.dist-info}/entry_points.txt +0 -0
  41. {webscout-7.8.dist-info → webscout-7.9.dist-info}/top_level.txt +0 -0
webscout/Bard.py CHANGED
@@ -56,21 +56,16 @@ class Model(Enum):
56
56
  {"x-goog-ext-525001261-jspb": '[null,null,null,null,"f299729663a2343f"]'},
57
57
  False,
58
58
  )
59
- G_2_0_FLASH_EXP = (
60
- "gemini-2.0-flash-exp",
61
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"f299729663a2343f"]'},
62
- False,
63
- ) # Deprecated, should be removed in the future
64
59
  G_2_0_FLASH_THINKING = (
65
60
  "gemini-2.0-flash-thinking",
66
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"9c17b1863f581b8a"]'},
61
+ {"x-goog-ext-525001261-jspb": '[null,null,null,null,"7ca48d02d802f20a"]'},
67
62
  False,
68
63
  )
69
- G_2_0_FLASH_THINKING_WITH_APPS = (
70
- "gemini-2.0-flash-thinking-with-apps",
71
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"f8f8f5ea629f5d37"]'},
64
+ G_2_5_PRO = (
65
+ "gemini-2.5-pro",
66
+ {"x-goog-ext-525001261-jspb": '[null,null,null,null,"2525e3954d185b3c"]'},
72
67
  False,
73
- ) # Deprecated, should be removed in the future
68
+ )
74
69
  G_2_0_EXP_ADVANCED = (
75
70
  "gemini-2.0-exp-advanced",
76
71
  {"x-goog-ext-525001261-jspb": '[null,null,null,null,"b1e46a6037e6aa9f"]'},
@@ -81,21 +76,6 @@ class Model(Enum):
81
76
  {"x-goog-ext-525001261-jspb": '[null,null,null,null,"203e6bb81620bcfe"]'},
82
77
  True,
83
78
  )
84
- G_1_5_FLASH = (
85
- "gemini-1.5-flash",
86
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"418ab5ea040b5c43"]'},
87
- False,
88
- ) # Deprecated, should be removed in the future
89
- G_1_5_PRO = (
90
- "gemini-1.5-pro",
91
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"9d60dfae93c9ff1f"]'},
92
- True,
93
- ) # Deprecated, should be removed in the future
94
- G_1_5_PRO_RESEARCH = (
95
- "gemini-1.5-pro-research",
96
- {"x-goog-ext-525001261-jspb": '[null,null,null,null,"e5a44cb1dae2b489"]'},
97
- True,
98
- ) # Deprecated, should be removed in the future
99
79
 
100
80
  def __init__(self, name, header, advanced_only):
101
81
  self.model_name = name