webscout 8.3.2__tar.gz → 8.3.4__tar.gz

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 (360) hide show
  1. {webscout-8.3.2/webscout.egg-info → webscout-8.3.4}/PKG-INFO +102 -91
  2. {webscout-8.3.2 → webscout-8.3.4}/README.md +100 -89
  3. {webscout-8.3.2 → webscout-8.3.4}/changelog.md +0 -0
  4. {webscout-8.3.2 → webscout-8.3.4}/pyproject.toml +2 -2
  5. {webscout-8.3.2 → webscout-8.3.4}/webscout/AIutel.py +367 -41
  6. {webscout-8.3.2 → webscout-8.3.4}/webscout/Bard.py +2 -22
  7. {webscout-8.3.2 → webscout-8.3.4}/webscout/Bing_search.py +1 -2
  8. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/__init__.py +1 -0
  9. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/scira_search.py +24 -11
  10. webscout-8.3.4/webscout/Provider/AISEARCH/stellar_search.py +132 -0
  11. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Deepinfra.py +75 -57
  12. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/ExaChat.py +93 -63
  13. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Flowith.py +1 -1
  14. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/FreeGemini.py +2 -2
  15. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Gemini.py +3 -10
  16. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/GeminiProxy.py +31 -5
  17. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/HeckAI.py +85 -80
  18. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Jadve.py +56 -50
  19. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/LambdaChat.py +39 -31
  20. webscout-8.3.4/webscout/Provider/MiniMax.py +207 -0
  21. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Nemotron.py +41 -13
  22. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Netwrck.py +39 -59
  23. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OLLAMA.py +8 -9
  24. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/BLACKBOXAI.py +0 -1
  25. webscout-8.3.4/webscout/Provider/OPENAI/MiniMax.py +298 -0
  26. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/README.md +31 -30
  27. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/TogetherAI.py +4 -17
  28. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/__init__.py +4 -2
  29. webscout-8.3.4/webscout/Provider/OPENAI/autoproxy.py +1067 -0
  30. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/base.py +7 -76
  31. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/copilot.py +73 -26
  32. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/deepinfra.py +96 -132
  33. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/exachat.py +9 -5
  34. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/flowith.py +179 -166
  35. webscout-8.3.4/webscout/Provider/OPENAI/friendli.py +233 -0
  36. webscout-8.3.4/webscout/Provider/OPENAI/monochat.py +329 -0
  37. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/netwrck.py +4 -7
  38. webscout-8.3.4/webscout/Provider/OPENAI/pydantic_imports.py +1 -0
  39. webscout-8.3.4/webscout/Provider/OPENAI/qodo.py +630 -0
  40. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/scirachat.py +82 -49
  41. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/textpollinations.py +13 -12
  42. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/toolbaz.py +1 -0
  43. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/typegpt.py +4 -4
  44. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/utils.py +19 -42
  45. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/x0gpt.py +14 -2
  46. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OpenGPT.py +54 -32
  47. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/PI.py +58 -84
  48. webscout-8.3.4/webscout/Provider/Qodo.py +454 -0
  49. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/StandardInput.py +32 -13
  50. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/README.md +9 -9
  51. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/__init__.py +2 -1
  52. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/aiarta.py +92 -78
  53. webscout-8.3.4/webscout/Provider/TTI/infip.py +212 -0
  54. webscout-8.3.4/webscout/Provider/TTI/monochat.py +220 -0
  55. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TeachAnything.py +11 -3
  56. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TextPollinationsAI.py +91 -82
  57. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TogetherAI.py +32 -48
  58. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Venice.py +37 -46
  59. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/VercelAI.py +27 -24
  60. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/WiseCat.py +35 -35
  61. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/WrDoChat.py +22 -26
  62. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/WritingMate.py +26 -22
  63. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/__init__.py +6 -6
  64. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/copilot.py +58 -61
  65. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/freeaichat.py +64 -55
  66. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/granite.py +48 -57
  67. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/koala.py +51 -39
  68. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/learnfastai.py +49 -64
  69. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/llmchat.py +79 -93
  70. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/llmchatco.py +63 -78
  71. webscout-8.3.4/webscout/Provider/monochat.py +275 -0
  72. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/multichat.py +51 -40
  73. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/oivscode.py +1 -1
  74. webscout-8.3.4/webscout/Provider/scira_chat.py +453 -0
  75. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/scnet.py +13 -13
  76. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/searchchat.py +13 -13
  77. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/sonus.py +12 -11
  78. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/toolbaz.py +25 -8
  79. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/turboseek.py +41 -42
  80. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/typefully.py +27 -12
  81. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/typegpt.py +43 -48
  82. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/uncovr.py +55 -90
  83. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/x0gpt.py +325 -299
  84. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/yep.py +79 -96
  85. {webscout-8.3.2 → webscout-8.3.4}/webscout/__init__.py +7 -2
  86. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/__init__.py +12 -1
  87. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/providers.py +27 -5
  88. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/routes.py +146 -105
  89. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/server.py +367 -312
  90. {webscout-8.3.2 → webscout-8.3.4}/webscout/client.py +121 -116
  91. {webscout-8.3.2 → webscout-8.3.4}/webscout/litagent/Readme.md +68 -55
  92. {webscout-8.3.2 → webscout-8.3.4}/webscout/litagent/agent.py +99 -9
  93. webscout-8.3.4/webscout/version.py +2 -0
  94. {webscout-8.3.2 → webscout-8.3.4/webscout.egg-info}/PKG-INFO +102 -91
  95. {webscout-8.3.2 → webscout-8.3.4}/webscout.egg-info/SOURCES.txt +20 -44
  96. {webscout-8.3.2 → webscout-8.3.4}/webscout.egg-info/requires.txt +1 -1
  97. webscout-8.3.2/webscout/Provider/AI21.py +0 -177
  98. webscout-8.3.2/webscout/Provider/HuggingFaceChat.py +0 -469
  99. webscout-8.3.2/webscout/Provider/OPENAI/autoproxy.py +0 -332
  100. webscout-8.3.2/webscout/Provider/OPENAI/freeaichat.py +0 -363
  101. webscout-8.3.2/webscout/Provider/OPENAI/pydantic_imports.py +0 -172
  102. webscout-8.3.2/webscout/Provider/TTI/fastflux.py +0 -233
  103. webscout-8.3.2/webscout/Provider/Writecream.py +0 -246
  104. webscout-8.3.2/webscout/Provider/scira_chat.py +0 -300
  105. webscout-8.3.2/webscout/auth/static/favicon.svg +0 -11
  106. webscout-8.3.2/webscout/auth/swagger_ui.py +0 -203
  107. webscout-8.3.2/webscout/auth/templates/components/authentication.html +0 -237
  108. webscout-8.3.2/webscout/auth/templates/components/base.html +0 -103
  109. webscout-8.3.2/webscout/auth/templates/components/endpoints.html +0 -750
  110. webscout-8.3.2/webscout/auth/templates/components/examples.html +0 -491
  111. webscout-8.3.2/webscout/auth/templates/components/footer.html +0 -75
  112. webscout-8.3.2/webscout/auth/templates/components/header.html +0 -27
  113. webscout-8.3.2/webscout/auth/templates/components/models.html +0 -286
  114. webscout-8.3.2/webscout/auth/templates/components/navigation.html +0 -70
  115. webscout-8.3.2/webscout/auth/templates/static/api.js +0 -455
  116. webscout-8.3.2/webscout/auth/templates/static/icons.js +0 -168
  117. webscout-8.3.2/webscout/auth/templates/static/main.js +0 -784
  118. webscout-8.3.2/webscout/auth/templates/static/particles.js +0 -201
  119. webscout-8.3.2/webscout/auth/templates/static/styles.css +0 -3353
  120. webscout-8.3.2/webscout/auth/templates/static/ui.js +0 -374
  121. webscout-8.3.2/webscout/auth/templates/swagger_ui.html +0 -170
  122. webscout-8.3.2/webscout/version.py +0 -2
  123. {webscout-8.3.2 → webscout-8.3.4}/LEGAL_NOTICE.md +0 -0
  124. {webscout-8.3.2 → webscout-8.3.4}/LICENSE.md +0 -0
  125. {webscout-8.3.2 → webscout-8.3.4}/MANIFEST.in +0 -0
  126. {webscout-8.3.2 → webscout-8.3.4}/setup.cfg +0 -0
  127. {webscout-8.3.2 → webscout-8.3.4}/webscout/AIauto.py +0 -0
  128. {webscout-8.3.2 → webscout-8.3.4}/webscout/AIbase.py +0 -0
  129. {webscout-8.3.2 → webscout-8.3.4}/webscout/DWEBS.py +0 -0
  130. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/Act.md +0 -0
  131. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/__init__.py +0 -0
  132. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/gitapi/README.md +0 -0
  133. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
  134. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
  135. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
  136. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
  137. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/README.md +0 -0
  138. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
  139. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/__init__.py +0 -0
  140. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/transcriber.py +0 -0
  141. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/README.md +0 -0
  142. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  143. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  144. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  145. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  146. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  147. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  148. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  149. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  150. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  151. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  152. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  153. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
  154. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/__init__.py +0 -0
  155. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/autocoder/__init__.py +0 -0
  156. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/autocoder/autocoder.py +0 -0
  157. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
  158. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/gguf.md +0 -0
  159. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/gguf.py +0 -0
  160. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/README.md +0 -0
  161. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/__init__.py +0 -0
  162. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/async_utils.py +0 -0
  163. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/base.py +0 -0
  164. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/cli.py +0 -0
  165. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/emailnator.py +0 -0
  166. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/mail_tm.py +0 -0
  167. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
  168. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/weather.md +0 -0
  169. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/weather.py +0 -0
  170. {webscout-8.3.2 → webscout-8.3.4}/webscout/Extra/weather_ascii.py +0 -0
  171. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/README.md +0 -0
  172. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/__init__.py +0 -0
  173. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/formats.py +0 -0
  174. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/handlers.py +0 -0
  175. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/levels.py +0 -0
  176. {webscout-8.3.2 → webscout-8.3.4}/webscout/Litlogger/logger.py +0 -0
  177. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
  178. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
  179. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/README.md +0 -0
  180. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  181. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
  182. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/hika_search.py +0 -0
  183. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/iask_search.py +0 -0
  184. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/monica_search.py +0 -0
  185. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
  186. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Aitopia.py +0 -0
  187. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/AllenAI.py +0 -0
  188. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Andi.py +0 -0
  189. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Blackboxai.py +0 -0
  190. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/ChatGPTClone.py +0 -0
  191. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/ChatSandbox.py +0 -0
  192. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Cloudflare.py +0 -0
  193. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Cohere.py +0 -0
  194. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/ExaAI.py +0 -0
  195. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/GithubChat.py +0 -0
  196. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/GizAI.py +0 -0
  197. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Glider.py +0 -0
  198. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Groq.py +0 -0
  199. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Hunyuan.py +0 -0
  200. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Koboldai.py +0 -0
  201. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Llama3.py +0 -0
  202. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/MCPCore.py +0 -0
  203. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Marcus.py +0 -0
  204. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/Cloudflare.py +0 -0
  205. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/FalconH1.py +0 -0
  206. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/FreeGemini.py +0 -0
  207. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/GeminiProxy.py +0 -0
  208. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/NEMOTRON.py +0 -0
  209. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/PI.py +0 -0
  210. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/Qwen3.py +0 -0
  211. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/README_AUTOPROXY.md +0 -0
  212. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/TwoAI.py +0 -0
  213. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/ai4chat.py +0 -0
  214. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/c4ai.py +0 -0
  215. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/chatgpt.py +0 -0
  216. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
  217. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/chatsandbox.py +0 -0
  218. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/e2b.py +0 -0
  219. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/exaai.py +0 -0
  220. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/glider.py +0 -0
  221. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/groq.py +0 -0
  222. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/heckai.py +0 -0
  223. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/llmchatco.py +0 -0
  224. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/mcpcore.py +0 -0
  225. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/multichat.py +0 -0
  226. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/oivscode.py +0 -0
  227. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/opkfc.py +0 -0
  228. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/sonus.py +0 -0
  229. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/standardinput.py +0 -0
  230. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/typefully.py +0 -0
  231. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/uncovrAI.py +0 -0
  232. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/venice.py +0 -0
  233. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/wisecat.py +0 -0
  234. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/writecream.py +0 -0
  235. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/xenai.py +0 -0
  236. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/OPENAI/yep.py +0 -0
  237. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Openai.py +0 -0
  238. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Perplexitylabs.py +0 -0
  239. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/QwenLM.py +0 -0
  240. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/Reka.py +0 -0
  241. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/STT/__init__.py +0 -0
  242. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/STT/base.py +0 -0
  243. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/STT/elevenlabs.py +0 -0
  244. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/base.py +0 -0
  245. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/bing.py +0 -0
  246. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/gpt1image.py +0 -0
  247. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/imagen.py +0 -0
  248. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/magicstudio.py +0 -0
  249. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/piclumen.py +0 -0
  250. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/pixelmuse.py +0 -0
  251. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/pollinations.py +0 -0
  252. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/together.py +0 -0
  253. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTI/utils.py +0 -0
  254. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/README.md +0 -0
  255. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/__init__.py +0 -0
  256. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/base.py +0 -0
  257. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/deepgram.py +0 -0
  258. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/elevenlabs.py +0 -0
  259. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/freetts.py +0 -0
  260. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/gesserit.py +0 -0
  261. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/murfai.py +0 -0
  262. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/openai_fm.py +0 -0
  263. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/parler.py +0 -0
  264. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/speechma.py +0 -0
  265. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/sthir.py +0 -0
  266. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/streamElements.py +0 -0
  267. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TTS/utils.py +0 -0
  268. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TwoAI.py +0 -0
  269. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/TypliAI.py +0 -0
  270. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/ChatHub.py +0 -0
  271. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/ChutesAI.py +0 -0
  272. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/Youchat.py +0 -0
  273. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/fetch_together_models.py +0 -0
  274. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/liner_api_request.py +0 -0
  275. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/puterjs.py +0 -0
  276. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/UNFINISHED/test_lmarena.py +0 -0
  277. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/XenAI.py +0 -0
  278. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/ai4chat.py +0 -0
  279. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/akashgpt.py +0 -0
  280. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/asksteve.py +0 -0
  281. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/cerebras.py +0 -0
  282. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/chatglm.py +0 -0
  283. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/cleeai.py +0 -0
  284. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/deepseek_assistant.py +0 -0
  285. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/elmo.py +0 -0
  286. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/geminiapi.py +0 -0
  287. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/hermes.py +0 -0
  288. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/julius.py +0 -0
  289. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/llama3mitril.py +0 -0
  290. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/lmarena.py +0 -0
  291. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/meta.py +0 -0
  292. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/samurai.py +0 -0
  293. {webscout-8.3.2 → webscout-8.3.4}/webscout/Provider/talkai.py +0 -0
  294. {webscout-8.3.2 → webscout-8.3.4}/webscout/__main__.py +0 -0
  295. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/api_key_manager.py +0 -0
  296. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/auth_system.py +0 -0
  297. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/config.py +0 -0
  298. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/database.py +0 -0
  299. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/exceptions.py +0 -0
  300. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/middleware.py +0 -0
  301. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/models.py +0 -0
  302. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/rate_limiter.py +0 -0
  303. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/request_models.py +0 -0
  304. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/request_processing.py +0 -0
  305. {webscout-8.3.2 → webscout-8.3.4}/webscout/auth/schemas.py +0 -0
  306. {webscout-8.3.2 → webscout-8.3.4}/webscout/cli.py +0 -0
  307. {webscout-8.3.2 → webscout-8.3.4}/webscout/conversation.py +0 -0
  308. {webscout-8.3.2 → webscout-8.3.4}/webscout/exceptions.py +0 -0
  309. {webscout-8.3.2 → webscout-8.3.4}/webscout/litagent/__init__.py +0 -0
  310. {webscout-8.3.2 → webscout-8.3.4}/webscout/litagent/constants.py +0 -0
  311. {webscout-8.3.2 → webscout-8.3.4}/webscout/litprinter/__init__.py +0 -0
  312. {webscout-8.3.2 → webscout-8.3.4}/webscout/models.py +0 -0
  313. {webscout-8.3.2 → webscout-8.3.4}/webscout/optimizers.py +0 -0
  314. {webscout-8.3.2 → webscout-8.3.4}/webscout/prompt_manager.py +0 -0
  315. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/README.md +0 -0
  316. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/__init__.py +0 -0
  317. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/__init__.py +0 -0
  318. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/crawler.py +0 -0
  319. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/scout.py +0 -0
  320. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/search_result.py +0 -0
  321. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/text_analyzer.py +0 -0
  322. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/text_utils.py +0 -0
  323. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/core/web_analyzer.py +0 -0
  324. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/element.py +0 -0
  325. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/parsers/__init__.py +0 -0
  326. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/parsers/html5lib_parser.py +0 -0
  327. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/parsers/html_parser.py +0 -0
  328. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/parsers/lxml_parser.py +0 -0
  329. {webscout-8.3.2 → webscout-8.3.4}/webscout/scout/utils.py +0 -0
  330. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/Readme.md +0 -0
  331. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/__init__.py +0 -0
  332. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/core/__init__.py +0 -0
  333. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/core/cli.py +0 -0
  334. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/core/context.py +0 -0
  335. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/core/group.py +0 -0
  336. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/decorators/__init__.py +0 -0
  337. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/decorators/command.py +0 -0
  338. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/decorators/options.py +0 -0
  339. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/decorators/output.py +0 -0
  340. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/exceptions.py +0 -0
  341. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/plugins/__init__.py +0 -0
  342. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/plugins/base.py +0 -0
  343. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/plugins/manager.py +0 -0
  344. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/utils/__init__.py +0 -0
  345. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/utils/formatting.py +0 -0
  346. {webscout-8.3.2 → webscout-8.3.4}/webscout/swiftcli/utils/parsing.py +0 -0
  347. {webscout-8.3.2 → webscout-8.3.4}/webscout/tempid.py +0 -0
  348. {webscout-8.3.2 → webscout-8.3.4}/webscout/update_checker.py +0 -0
  349. {webscout-8.3.2 → webscout-8.3.4}/webscout/utils.py +0 -0
  350. {webscout-8.3.2 → webscout-8.3.4}/webscout/webscout_search.py +0 -0
  351. {webscout-8.3.2 → webscout-8.3.4}/webscout/webscout_search_async.py +0 -0
  352. {webscout-8.3.2 → webscout-8.3.4}/webscout/yep_search.py +0 -0
  353. {webscout-8.3.2 → webscout-8.3.4}/webscout/zeroart/README.md +0 -0
  354. {webscout-8.3.2 → webscout-8.3.4}/webscout/zeroart/__init__.py +0 -0
  355. {webscout-8.3.2 → webscout-8.3.4}/webscout/zeroart/base.py +0 -0
  356. {webscout-8.3.2 → webscout-8.3.4}/webscout/zeroart/effects.py +0 -0
  357. {webscout-8.3.2 → webscout-8.3.4}/webscout/zeroart/fonts.py +0 -0
  358. {webscout-8.3.2 → webscout-8.3.4}/webscout.egg-info/dependency_links.txt +0 -0
  359. {webscout-8.3.2 → webscout-8.3.4}/webscout.egg-info/entry_points.txt +0 -0
  360. {webscout-8.3.2 → webscout-8.3.4}/webscout.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webscout
3
- Version: 8.3.2
3
+ Version: 8.3.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-email: OEvortex <helpingai5@gmail.com>
6
6
  License: HelpingAI
@@ -50,7 +50,6 @@ Requires-Dist: google-generativeai
50
50
  Requires-Dist: lxml>=5.2.2
51
51
  Requires-Dist: orjson
52
52
  Requires-Dist: PyYAML
53
- Requires-Dist: ollama
54
53
  Requires-Dist: pillow
55
54
  Requires-Dist: bson
56
55
  Requires-Dist: cloudscraper
@@ -62,6 +61,7 @@ Requires-Dist: psutil
62
61
  Requires-Dist: aiohttp
63
62
  Requires-Dist: zstandard
64
63
  Requires-Dist: brotli
64
+ Requires-Dist: litproxy
65
65
  Provides-Extra: dev
66
66
  Requires-Dist: ruff>=0.1.6; extra == "dev"
67
67
  Requires-Dist: pytest>=7.4.2; extra == "dev"
@@ -117,8 +117,9 @@ Dynamic: license-file
117
117
 
118
118
  <hr/>
119
119
 
120
- > [!IMPORTANT]
120
+ > [!IMPORTANT] >
121
121
  > **Webscout supports three types of compatibility:**
122
+ >
122
123
  > - **Native Compatibility:** Webscout's own native API for maximum flexibility
123
124
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
124
125
  > - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
@@ -148,12 +149,12 @@ Dynamic: license-file
148
149
  <summary><b>Search & AI</b></summary>
149
150
  <p>
150
151
 
151
- * **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
152
- * **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
153
- * **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
154
- * **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
155
- * **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
156
- * **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
152
+ - **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
153
+ - **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
154
+ - **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
155
+ - **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
156
+ - **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
157
+ - **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
157
158
  </p>
158
159
  </details>
159
160
 
@@ -161,10 +162,10 @@ Dynamic: license-file
161
162
  <summary><b>Media & Content Tools</b></summary>
162
163
  <p>
163
164
 
164
- * **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
165
- * **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
166
- * **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
167
- * **[Weather Tools](webscout/Extra/weather.md):** Retrieve detailed weather information for any location
165
+ - **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
166
+ - **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
167
+ - **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
168
+ - **[Weather Tools](webscout/Extra/weather.md):** Retrieve detailed weather information for any location
168
169
  </p>
169
170
  </details>
170
171
 
@@ -172,14 +173,14 @@ Dynamic: license-file
172
173
  <summary><b>Developer Tools</b></summary>
173
174
  <p>
174
175
 
175
- * **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
176
- * **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
177
- * **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
178
- * **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
179
- * **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
180
- * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
181
- * **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
182
- * **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
176
+ - **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
177
+ - **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
178
+ - **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
179
+ - **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
180
+ - **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
181
+ - **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
182
+ - **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
183
+ - **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
183
184
  </p>
184
185
  </details>
185
186
 
@@ -187,8 +188,8 @@ Dynamic: license-file
187
188
  <summary><b>Privacy & Utilities</b></summary>
188
189
  <p>
189
190
 
190
- * **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
191
- * **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
191
+ - **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
192
+ - **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
192
193
  </p>
193
194
  </details>
194
195
 
@@ -251,6 +252,9 @@ uv sync --extra dev --extra api
251
252
 
252
253
  # Or with pip
253
254
  pip install -e ".[dev,api]"
255
+
256
+ # Or with uv pip
257
+ uv pip install -e ".[dev,api]"
254
258
  ```
255
259
 
256
260
  ### 🐳 Docker Installation
@@ -317,18 +321,18 @@ python -m webscout-server
317
321
  <summary><b>🔍 Web Search Commands</b></summary>
318
322
  <p>
319
323
 
320
- | Command | Description | Example |
321
- |---------|-------------|---------|
322
- | `webscout text -k "query"` | Perform a text search | `webscout text -k "python programming"` |
323
- | `webscout answers -k "query"` | Get instant answers | `webscout answers -k "what is AI"` |
324
- | `webscout images -k "query"` | Search for images | `webscout images -k "nature photography"` |
325
- | `webscout videos -k "query"` | Search for videos | `webscout videos -k "python tutorials"` |
326
- | `webscout news -k "query"` | Search for news articles | `webscout news -k "technology trends"` |
327
- | `webscout maps -k "query"` | Perform a maps search | `webscout maps -k "restaurants near me"` |
328
- | `webscout translate -k "text"` | Translate text | `webscout translate -k "hello world"` |
329
- | `webscout suggestions -k "query"` | Get search suggestions | `webscout suggestions -k "how to"` |
330
- | `webscout weather -l "location"` | Get weather information | `webscout weather -l "New York"` |
331
- | `webscout version` | Display the current version | `webscout version` |
324
+ | Command | Description | Example |
325
+ | --------------------------------- | --------------------------- | ----------------------------------------- |
326
+ | `webscout text -k "query"` | Perform a text search | `webscout text -k "python programming"` |
327
+ | `webscout answers -k "query"` | Get instant answers | `webscout answers -k "what is AI"` |
328
+ | `webscout images -k "query"` | Search for images | `webscout images -k "nature photography"` |
329
+ | `webscout videos -k "query"` | Search for videos | `webscout videos -k "python tutorials"` |
330
+ | `webscout news -k "query"` | Search for news articles | `webscout news -k "technology trends"` |
331
+ | `webscout maps -k "query"` | Perform a maps search | `webscout maps -k "restaurants near me"` |
332
+ | `webscout translate -k "text"` | Translate text | `webscout translate -k "hello world"` |
333
+ | `webscout suggestions -k "query"` | Get search suggestions | `webscout suggestions -k "how to"` |
334
+ | `webscout weather -l "location"` | Get weather information | `webscout weather -l "New York"` |
335
+ | `webscout version` | Display the current version | `webscout version` |
332
336
 
333
337
  **Google Search Commands:**
334
338
  | Command | Description | Example |
@@ -363,21 +367,22 @@ After installation, you can use its CLI for managing and using local LLMs:
363
367
  inferno --help
364
368
  ```
365
369
 
366
- | Command | Description |
367
- |---------|-------------|
368
- | `inferno pull <model>` | Download a model from Hugging Face |
369
- | `inferno list` | List downloaded models |
370
- | `inferno serve <model>` | Start a model server with OpenAI-compatible API |
371
- | `inferno run <model>` | Chat with a model interactively |
372
- | `inferno remove <model>` | Remove a downloaded model |
373
- | `inferno version` | Show version information |
370
+ | Command | Description |
371
+ | ------------------------ | ----------------------------------------------- |
372
+ | `inferno pull <model>` | Download a model from Hugging Face |
373
+ | `inferno list` | List downloaded models |
374
+ | `inferno serve <model>` | Start a model server with OpenAI-compatible API |
375
+ | `inferno run <model>` | Chat with a model interactively |
376
+ | `inferno remove <model>` | Remove a downloaded model |
377
+ | `inferno version` | Show version information |
374
378
 
375
379
  For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
380
+
376
381
  </p>
377
382
  </details>
378
383
 
379
- > [!NOTE]
380
- > **Hardware requirements for running models with Inferno:**
384
+ > [!NOTE] > **Hardware requirements for running models with Inferno:**
385
+ >
381
386
  > - Around 2 GB of RAM for 1B models
382
387
  > - Around 4 GB of RAM for 3B models
383
388
  > - At least 8 GB of RAM for 7B models
@@ -448,7 +453,6 @@ $env:WEBSCOUT_PORT='7860'; webscout-server
448
453
 
449
454
  For a complete list of supported environment variables and Docker deployment options, see [DOCKER.md](DOCKER.md).
450
455
 
451
-
452
456
  #### From Python Code
453
457
 
454
458
  > **Recommended:**
@@ -629,6 +633,7 @@ with WEBS() as webs:
629
633
  for result in results:
630
634
  print(f"Title: {result['title']}\nURL: {result['url']}")
631
635
  ```
636
+
632
637
  </p>
633
638
  </details>
634
639
 
@@ -662,6 +667,7 @@ async def main():
662
667
  # Run the async function
663
668
  asyncio.run(main())
664
669
  ```
670
+
665
671
  </p>
666
672
  </details>
667
673
 
@@ -676,17 +682,17 @@ The WEBS class provides comprehensive access to DuckDuckGo's search capabilities
676
682
 
677
683
  ### Available Search Methods
678
684
 
679
- | Method | Description | Example |
680
- |--------|-------------|--------|
681
- | `text()` | General web search | `webs.text('python programming')` |
682
- | `answers()` | Instant answers | `webs.answers('population of france')` |
683
- | `images()` | Image search | `webs.images('nature photography')` |
684
- | `videos()` | Video search | `webs.videos('documentary')` |
685
- | `news()` | News articles | `webs.news('technology')` |
686
- | `maps()` | Location search | `webs.maps('restaurants', place='new york')` |
687
- | `translate()` | Text translation | `webs.translate('hello', to='es')` |
688
- | `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
689
- | `weather()` | Weather information | `webs.weather('london')` |
685
+ | Method | Description | Example |
686
+ | --------------- | ------------------- | -------------------------------------------- |
687
+ | `text()` | General web search | `webs.text('python programming')` |
688
+ | `answers()` | Instant answers | `webs.answers('population of france')` |
689
+ | `images()` | Image search | `webs.images('nature photography')` |
690
+ | `videos()` | Video search | `webs.videos('documentary')` |
691
+ | `news()` | News articles | `webs.news('technology')` |
692
+ | `maps()` | Location search | `webs.maps('restaurants', place='new york')` |
693
+ | `translate()` | Text translation | `webs.translate('hello', to='es')` |
694
+ | `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
695
+ | `weather()` | Weather information | `webs.weather('london')` |
690
696
 
691
697
  <details>
692
698
  <summary><b>Example: Text Search</b></summary>
@@ -709,6 +715,7 @@ with WEBS() as webs:
709
715
  print(f"URL: {result['url']}")
710
716
  print(f"Description: {result['body']}\n")
711
717
  ```
718
+
712
719
  </p>
713
720
  </details>
714
721
 
@@ -752,6 +759,7 @@ def fetch_formatted_news(keywords, timelimit='d', max_results=20):
752
759
  news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
753
760
  print('\n'.join(news))
754
761
  ```
762
+
755
763
  </p>
756
764
  </details>
757
765
 
@@ -772,6 +780,7 @@ with WEBS() as webs:
772
780
  print(f"Temperature: {weather.get('temperature', 'N/A')}")
773
781
  print(f"Conditions: {weather.get('condition', 'N/A')}")
774
782
  ```
783
+
775
784
  </p>
776
785
  </details>
777
786
 
@@ -811,6 +820,7 @@ if isinstance(available_models, list):
811
820
  else:
812
821
  print(f" {available_models}")
813
822
  ```
823
+
814
824
  </p>
815
825
  </details>
816
826
 
@@ -844,6 +854,7 @@ if isinstance(available_voices, dict):
844
854
  if len(available_voices) > 5:
845
855
  print(f" ... and {len(available_voices) - 5} more")
846
856
  ```
857
+
847
858
  </p>
848
859
  </details>
849
860
 
@@ -857,23 +868,22 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
857
868
 
858
869
  <div class="provider-table">
859
870
 
860
- | Provider | Description | Key Features |
861
- |----------|-------------|-------------|
862
- | `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
863
- | `GEMINI` | Google's Gemini models | Web search capabilities |
864
- | `Meta` | Meta's AI assistant | Image generation, web search |
865
- | `GROQ` | Fast inference platform | High-speed inference, tool calling |
866
- | `LLAMA` | Meta's Llama models | Open weights models |
867
- | `DeepInfra` | Various open models | Multiple model options |
868
- | `Cohere` | Cohere's language models | Command models |
869
- | `PerplexityLabs` | Perplexity AI | Web search integration |
870
- | `YEPCHAT` | Yep.com's AI | Streaming responses |
871
- | `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
872
- | `TypeGPT` | TypeChat models | Multiple model options |
871
+ | Provider | Description | Key Features |
872
+ | ---------------- | ------------------------ | ---------------------------------- |
873
+ | `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
874
+ | `GEMINI` | Google's Gemini models | Web search capabilities |
875
+ | `Meta` | Meta's AI assistant | Image generation, web search |
876
+ | `GROQ` | Fast inference platform | High-speed inference, tool calling |
877
+ | `LLAMA` | Meta's Llama models | Open weights models |
878
+ | `DeepInfra` | Various open models | Multiple model options |
879
+ | `Cohere` | Cohere's language models | Command models |
880
+ | `PerplexityLabs` | Perplexity AI | Web search integration |
881
+ | `YEPCHAT` | Yep.com's AI | Streaming responses |
882
+ | `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
883
+ | `TypeGPT` | TypeChat models | Multiple model options |
873
884
 
874
885
  </div>
875
886
 
876
-
877
887
  <details>
878
888
  <summary><b>Example: Using Meta AI</b></summary>
879
889
  <p>
@@ -901,6 +911,7 @@ response = meta_ai.ask("Create an image of a futuristic city")
901
911
  for media in response.get("media", []):
902
912
  print(media["url"])
903
913
  ```
914
+
904
915
  </p>
905
916
  </details>
906
917
 
@@ -981,11 +992,10 @@ print(response)
981
992
  response = client.chat("Find information about quantum computing", tools=tools)
982
993
  print(response)
983
994
  ```
995
+
984
996
  </p>
985
997
  </details>
986
998
 
987
-
988
-
989
999
  <details open>
990
1000
  <summary><b>GGUF Model Conversion</b></summary>
991
1001
  <p>
@@ -1007,29 +1017,30 @@ converter.convert()
1007
1017
 
1008
1018
  #### Available Quantization Methods
1009
1019
 
1010
- | Method | Description |
1011
- |--------|-------------|
1012
- | `fp16` | 16-bit floating point - maximum accuracy, largest size |
1013
- | `q2_k` | 2-bit quantization (smallest size, lowest accuracy) |
1014
- | `q3_k_l` | 3-bit quantization (large) - balanced for size/accuracy |
1020
+ | Method | Description |
1021
+ | -------- | ------------------------------------------------------------- |
1022
+ | `fp16` | 16-bit floating point - maximum accuracy, largest size |
1023
+ | `q2_k` | 2-bit quantization (smallest size, lowest accuracy) |
1024
+ | `q3_k_l` | 3-bit quantization (large) - balanced for size/accuracy |
1015
1025
  | `q3_k_m` | 3-bit quantization (medium) - good balance for most use cases |
1016
- | `q3_k_s` | 3-bit quantization (small) - optimized for speed |
1017
- | `q4_0` | 4-bit quantization (version 0) - standard 4-bit compression |
1018
- | `q4_1` | 4-bit quantization (version 1) - improved accuracy over q4_0 |
1019
- | `q4_k_m` | 4-bit quantization (medium) - balanced for most models |
1020
- | `q4_k_s` | 4-bit quantization (small) - optimized for speed |
1021
- | `q5_0` | 5-bit quantization (version 0) - high accuracy, larger size |
1022
- | `q5_1` | 5-bit quantization (version 1) - improved accuracy over q5_0 |
1023
- | `q5_k_m` | 5-bit quantization (medium) - best balance for quality/size |
1024
- | `q5_k_s` | 5-bit quantization (small) - optimized for speed |
1025
- | `q6_k` | 6-bit quantization - highest accuracy, largest size |
1026
- | `q8_0` | 8-bit quantization - maximum accuracy, largest size |
1026
+ | `q3_k_s` | 3-bit quantization (small) - optimized for speed |
1027
+ | `q4_0` | 4-bit quantization (version 0) - standard 4-bit compression |
1028
+ | `q4_1` | 4-bit quantization (version 1) - improved accuracy over q4_0 |
1029
+ | `q4_k_m` | 4-bit quantization (medium) - balanced for most models |
1030
+ | `q4_k_s` | 4-bit quantization (small) - optimized for speed |
1031
+ | `q5_0` | 5-bit quantization (version 0) - high accuracy, larger size |
1032
+ | `q5_1` | 5-bit quantization (version 1) - improved accuracy over q5_0 |
1033
+ | `q5_k_m` | 5-bit quantization (medium) - best balance for quality/size |
1034
+ | `q5_k_s` | 5-bit quantization (small) - optimized for speed |
1035
+ | `q6_k` | 6-bit quantization - highest accuracy, largest size |
1036
+ | `q8_0` | 8-bit quantization - maximum accuracy, largest size |
1027
1037
 
1028
1038
  #### Command Line Usage
1029
1039
 
1030
1040
  ```bash
1031
1041
  python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q "q4_k_m"
1032
1042
  ```
1043
+
1033
1044
  </p>
1034
1045
  </details>
1035
1046
 
@@ -1054,8 +1065,8 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1054
1065
 
1055
1066
  ## 🙏 Acknowledgments
1056
1067
 
1057
- * All the amazing developers who have contributed to the project
1058
- * The open-source community for their support and inspiration
1068
+ - All the amazing developers who have contributed to the project
1069
+ - The open-source community for their support and inspiration
1059
1070
 
1060
1071
  <hr/>
1061
1072