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