webscout 8.1__tar.gz → 8.2__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 (313) hide show
  1. {webscout-8.1/webscout.egg-info → webscout-8.2}/PKG-INFO +46 -3
  2. {webscout-8.1 → webscout-8.2}/README.md +33 -2
  3. webscout-8.2/inferno/__init__.py +6 -0
  4. webscout-8.2/inferno/__main__.py +9 -0
  5. webscout-8.2/inferno/cli.py +6 -0
  6. {webscout-8.1 → webscout-8.2}/setup.py +57 -34
  7. webscout-8.2/webscout/Local/__init__.py +6 -0
  8. webscout-8.2/webscout/Local/__main__.py +9 -0
  9. webscout-8.2/webscout/Local/api.py +576 -0
  10. webscout-8.2/webscout/Local/cli.py +338 -0
  11. webscout-8.2/webscout/Local/config.py +75 -0
  12. webscout-8.2/webscout/Local/llm.py +188 -0
  13. webscout-8.2/webscout/Local/model_manager.py +205 -0
  14. webscout-8.2/webscout/Local/server.py +187 -0
  15. webscout-8.2/webscout/Local/utils.py +93 -0
  16. webscout-8.2/webscout/Provider/AISEARCH/Perplexity.py +359 -0
  17. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/__init__.py +2 -1
  18. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/scira_search.py +8 -4
  19. {webscout-8.1 → webscout-8.2}/webscout/Provider/ExaChat.py +18 -8
  20. {webscout-8.1 → webscout-8.2}/webscout/Provider/GithubChat.py +5 -1
  21. {webscout-8.1 → webscout-8.2}/webscout/Provider/Glider.py +4 -2
  22. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/__init__.py +8 -1
  23. webscout-8.2/webscout/Provider/OPENAI/chatgpt.py +549 -0
  24. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/exachat.py +20 -8
  25. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/glider.py +3 -1
  26. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/llmchatco.py +3 -1
  27. webscout-8.2/webscout/Provider/OPENAI/opkfc.py +488 -0
  28. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/scirachat.py +11 -7
  29. webscout-8.2/webscout/Provider/OPENAI/standardinput.py +425 -0
  30. webscout-8.2/webscout/Provider/OPENAI/textpollinations.py +285 -0
  31. webscout-8.2/webscout/Provider/OPENAI/toolbaz.py +405 -0
  32. webscout-8.2/webscout/Provider/OPENAI/uncovrAI.py +455 -0
  33. webscout-8.2/webscout/Provider/OPENAI/writecream.py +158 -0
  34. webscout-8.2/webscout/Provider/StandardInput.py +278 -0
  35. {webscout-8.1 → webscout-8.2}/webscout/Provider/TextPollinationsAI.py +27 -28
  36. webscout-8.2/webscout/Provider/Writecream.py +211 -0
  37. webscout-8.2/webscout/Provider/WritingMate.py +197 -0
  38. {webscout-8.1 → webscout-8.2}/webscout/Provider/Youchat.py +30 -26
  39. {webscout-8.1 → webscout-8.2}/webscout/Provider/__init__.py +10 -2
  40. {webscout-8.1 → webscout-8.2}/webscout/Provider/koala.py +2 -2
  41. {webscout-8.1 → webscout-8.2}/webscout/Provider/llmchatco.py +5 -0
  42. {webscout-8.1 → webscout-8.2}/webscout/Provider/scira_chat.py +5 -2
  43. webscout-8.2/webscout/Provider/scnet.py +187 -0
  44. webscout-8.2/webscout/Provider/toolbaz.py +320 -0
  45. {webscout-8.1 → webscout-8.2}/webscout/Provider/uncovr.py +3 -3
  46. {webscout-8.1 → webscout-8.2}/webscout/conversation.py +32 -32
  47. {webscout-8.1 → webscout-8.2}/webscout/version.py +1 -1
  48. {webscout-8.1 → webscout-8.2/webscout.egg-info}/PKG-INFO +46 -3
  49. {webscout-8.1 → webscout-8.2}/webscout.egg-info/SOURCES.txt +25 -0
  50. webscout-8.2/webscout.egg-info/entry_points.txt +5 -0
  51. {webscout-8.1 → webscout-8.2}/webscout.egg-info/requires.txt +10 -0
  52. {webscout-8.1 → webscout-8.2}/webscout.egg-info/top_level.txt +1 -0
  53. webscout-8.1/webscout.egg-info/entry_points.txt +0 -3
  54. {webscout-8.1 → webscout-8.2}/LICENSE.md +0 -0
  55. {webscout-8.1 → webscout-8.2}/setup.cfg +0 -0
  56. {webscout-8.1 → webscout-8.2}/webscout/AIauto.py +0 -0
  57. {webscout-8.1 → webscout-8.2}/webscout/AIbase.py +0 -0
  58. {webscout-8.1 → webscout-8.2}/webscout/AIutel.py +0 -0
  59. {webscout-8.1 → webscout-8.2}/webscout/Bard.py +0 -0
  60. {webscout-8.1 → webscout-8.2}/webscout/DWEBS.py +0 -0
  61. {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/__init__.py +0 -0
  62. {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
  63. {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
  64. {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
  65. {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
  66. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
  67. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/__init__.py +0 -0
  68. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/transcriber.py +0 -0
  69. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  70. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  71. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  72. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  73. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  74. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  75. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  76. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  77. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  78. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  79. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  80. {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
  81. {webscout-8.1 → webscout-8.2}/webscout/Extra/__init__.py +0 -0
  82. {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/__init__.py +0 -0
  83. {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/autocoder.py +0 -0
  84. {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
  85. {webscout-8.1 → webscout-8.2}/webscout/Extra/gguf.py +0 -0
  86. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/__init__.py +0 -0
  87. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/async_utils.py +0 -0
  88. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/base.py +0 -0
  89. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/cli.py +0 -0
  90. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/mail_tm.py +0 -0
  91. {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
  92. {webscout-8.1 → webscout-8.2}/webscout/Extra/weather.py +0 -0
  93. {webscout-8.1 → webscout-8.2}/webscout/Extra/weather_ascii.py +0 -0
  94. {webscout-8.1 → webscout-8.2}/webscout/LLM.py +0 -0
  95. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/__init__.py +0 -0
  96. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/__init__.py +0 -0
  97. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/level.py +0 -0
  98. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/logger.py +0 -0
  99. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/__init__.py +0 -0
  100. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/console.py +0 -0
  101. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/file.py +0 -0
  102. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/network.py +0 -0
  103. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/__init__.py +0 -0
  104. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/colors.py +0 -0
  105. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/formats.py +0 -0
  106. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/text.py +0 -0
  107. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/__init__.py +0 -0
  108. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/detectors.py +0 -0
  109. {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/formatters.py +0 -0
  110. {webscout-8.1 → webscout-8.2}/webscout/Provider/AI21.py +0 -0
  111. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
  112. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/ISou.py +0 -0
  113. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  114. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
  115. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/hika_search.py +0 -0
  116. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/iask_search.py +0 -0
  117. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/monica_search.py +0 -0
  118. {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
  119. {webscout-8.1 → webscout-8.2}/webscout/Provider/Aitopia.py +0 -0
  120. {webscout-8.1 → webscout-8.2}/webscout/Provider/AllenAI.py +0 -0
  121. {webscout-8.1 → webscout-8.2}/webscout/Provider/Andi.py +0 -0
  122. {webscout-8.1 → webscout-8.2}/webscout/Provider/Blackboxai.py +0 -0
  123. {webscout-8.1 → webscout-8.2}/webscout/Provider/C4ai.py +0 -0
  124. {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTClone.py +0 -0
  125. {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTES.py +0 -0
  126. {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTGratis.py +0 -0
  127. {webscout-8.1 → webscout-8.2}/webscout/Provider/Chatify.py +0 -0
  128. {webscout-8.1 → webscout-8.2}/webscout/Provider/Cloudflare.py +0 -0
  129. {webscout-8.1 → webscout-8.2}/webscout/Provider/Cohere.py +0 -0
  130. {webscout-8.1 → webscout-8.2}/webscout/Provider/DeepSeek.py +0 -0
  131. {webscout-8.1 → webscout-8.2}/webscout/Provider/Deepinfra.py +0 -0
  132. {webscout-8.1 → webscout-8.2}/webscout/Provider/ElectronHub.py +0 -0
  133. {webscout-8.1 → webscout-8.2}/webscout/Provider/ExaAI.py +0 -0
  134. {webscout-8.1 → webscout-8.2}/webscout/Provider/Free2GPT.py +0 -0
  135. {webscout-8.1 → webscout-8.2}/webscout/Provider/GPTWeb.py +0 -0
  136. {webscout-8.1 → webscout-8.2}/webscout/Provider/Gemini.py +0 -0
  137. {webscout-8.1 → webscout-8.2}/webscout/Provider/Groq.py +0 -0
  138. {webscout-8.1 → webscout-8.2}/webscout/Provider/HF_space/__init__.py +0 -0
  139. {webscout-8.1 → webscout-8.2}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
  140. {webscout-8.1 → webscout-8.2}/webscout/Provider/HeckAI.py +0 -0
  141. {webscout-8.1 → webscout-8.2}/webscout/Provider/HuggingFaceChat.py +0 -0
  142. {webscout-8.1 → webscout-8.2}/webscout/Provider/Hunyuan.py +0 -0
  143. {webscout-8.1 → webscout-8.2}/webscout/Provider/Jadve.py +0 -0
  144. {webscout-8.1 → webscout-8.2}/webscout/Provider/Koboldai.py +0 -0
  145. {webscout-8.1 → webscout-8.2}/webscout/Provider/LambdaChat.py +0 -0
  146. {webscout-8.1 → webscout-8.2}/webscout/Provider/Llama.py +0 -0
  147. {webscout-8.1 → webscout-8.2}/webscout/Provider/Llama3.py +0 -0
  148. {webscout-8.1 → webscout-8.2}/webscout/Provider/Marcus.py +0 -0
  149. {webscout-8.1 → webscout-8.2}/webscout/Provider/Netwrck.py +0 -0
  150. {webscout-8.1 → webscout-8.2}/webscout/Provider/OLLAMA.py +0 -0
  151. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/base.py +0 -0
  152. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/c4ai.py +0 -0
  153. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
  154. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/deepinfra.py +0 -0
  155. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/exaai.py +0 -0
  156. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/freeaichat.py +0 -0
  157. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/heckai.py +0 -0
  158. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/netwrck.py +0 -0
  159. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/sonus.py +0 -0
  160. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/typegpt.py +0 -0
  161. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/utils.py +0 -0
  162. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/venice.py +0 -0
  163. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/wisecat.py +0 -0
  164. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/x0gpt.py +0 -0
  165. {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/yep.py +0 -0
  166. {webscout-8.1 → webscout-8.2}/webscout/Provider/OpenGPT.py +0 -0
  167. {webscout-8.1 → webscout-8.2}/webscout/Provider/Openai.py +0 -0
  168. {webscout-8.1 → webscout-8.2}/webscout/Provider/PI.py +0 -0
  169. {webscout-8.1 → webscout-8.2}/webscout/Provider/Perplexitylabs.py +0 -0
  170. {webscout-8.1 → webscout-8.2}/webscout/Provider/Phind.py +0 -0
  171. {webscout-8.1 → webscout-8.2}/webscout/Provider/PizzaGPT.py +0 -0
  172. {webscout-8.1 → webscout-8.2}/webscout/Provider/QwenLM.py +0 -0
  173. {webscout-8.1 → webscout-8.2}/webscout/Provider/Reka.py +0 -0
  174. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
  175. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
  176. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
  177. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
  178. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
  179. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
  180. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/__init__.py +0 -0
  181. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -0
  182. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -0
  183. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
  184. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
  185. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
  186. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
  187. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
  188. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
  189. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
  190. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
  191. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
  192. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/__init__.py +0 -0
  193. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
  194. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
  195. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
  196. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/__init__.py +0 -0
  197. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
  198. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
  199. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
  200. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/async_fastflux.py +0 -0
  201. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -0
  202. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
  203. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
  204. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
  205. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
  206. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
  207. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
  208. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/__init__.py +0 -0
  209. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -0
  210. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -0
  211. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/__init__.py +0 -0
  212. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
  213. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
  214. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/__init__.py +0 -0
  215. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/deepgram.py +0 -0
  216. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/elevenlabs.py +0 -0
  217. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/gesserit.py +0 -0
  218. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/murfai.py +0 -0
  219. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/parler.py +0 -0
  220. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/speechma.py +0 -0
  221. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/streamElements.py +0 -0
  222. {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/utils.py +0 -0
  223. {webscout-8.1 → webscout-8.2}/webscout/Provider/TeachAnything.py +0 -0
  224. {webscout-8.1 → webscout-8.2}/webscout/Provider/TwoAI.py +0 -0
  225. {webscout-8.1 → webscout-8.2}/webscout/Provider/Venice.py +0 -0
  226. {webscout-8.1 → webscout-8.2}/webscout/Provider/VercelAI.py +0 -0
  227. {webscout-8.1 → webscout-8.2}/webscout/Provider/WebSim.py +0 -0
  228. {webscout-8.1 → webscout-8.2}/webscout/Provider/WiseCat.py +0 -0
  229. {webscout-8.1 → webscout-8.2}/webscout/Provider/ai4chat.py +0 -0
  230. {webscout-8.1 → webscout-8.2}/webscout/Provider/aimathgpt.py +0 -0
  231. {webscout-8.1 → webscout-8.2}/webscout/Provider/akashgpt.py +0 -0
  232. {webscout-8.1 → webscout-8.2}/webscout/Provider/askmyai.py +0 -0
  233. {webscout-8.1 → webscout-8.2}/webscout/Provider/asksteve.py +0 -0
  234. {webscout-8.1 → webscout-8.2}/webscout/Provider/bagoodex.py +0 -0
  235. {webscout-8.1 → webscout-8.2}/webscout/Provider/cerebras.py +0 -0
  236. {webscout-8.1 → webscout-8.2}/webscout/Provider/chatglm.py +0 -0
  237. {webscout-8.1 → webscout-8.2}/webscout/Provider/cleeai.py +0 -0
  238. {webscout-8.1 → webscout-8.2}/webscout/Provider/copilot.py +0 -0
  239. {webscout-8.1 → webscout-8.2}/webscout/Provider/elmo.py +0 -0
  240. {webscout-8.1 → webscout-8.2}/webscout/Provider/freeaichat.py +0 -0
  241. {webscout-8.1 → webscout-8.2}/webscout/Provider/gaurish.py +0 -0
  242. {webscout-8.1 → webscout-8.2}/webscout/Provider/geminiapi.py +0 -0
  243. {webscout-8.1 → webscout-8.2}/webscout/Provider/geminiprorealtime.py +0 -0
  244. {webscout-8.1 → webscout-8.2}/webscout/Provider/granite.py +0 -0
  245. {webscout-8.1 → webscout-8.2}/webscout/Provider/hermes.py +0 -0
  246. {webscout-8.1 → webscout-8.2}/webscout/Provider/julius.py +0 -0
  247. {webscout-8.1 → webscout-8.2}/webscout/Provider/labyrinth.py +0 -0
  248. {webscout-8.1 → webscout-8.2}/webscout/Provider/learnfastai.py +0 -0
  249. {webscout-8.1 → webscout-8.2}/webscout/Provider/lepton.py +0 -0
  250. {webscout-8.1 → webscout-8.2}/webscout/Provider/llama3mitril.py +0 -0
  251. {webscout-8.1 → webscout-8.2}/webscout/Provider/llamatutor.py +0 -0
  252. {webscout-8.1 → webscout-8.2}/webscout/Provider/llmchat.py +0 -0
  253. {webscout-8.1 → webscout-8.2}/webscout/Provider/meta.py +0 -0
  254. {webscout-8.1 → webscout-8.2}/webscout/Provider/multichat.py +0 -0
  255. {webscout-8.1 → webscout-8.2}/webscout/Provider/promptrefine.py +0 -0
  256. {webscout-8.1 → webscout-8.2}/webscout/Provider/searchchat.py +0 -0
  257. {webscout-8.1 → webscout-8.2}/webscout/Provider/sonus.py +0 -0
  258. {webscout-8.1 → webscout-8.2}/webscout/Provider/talkai.py +0 -0
  259. {webscout-8.1 → webscout-8.2}/webscout/Provider/turboseek.py +0 -0
  260. {webscout-8.1 → webscout-8.2}/webscout/Provider/tutorai.py +0 -0
  261. {webscout-8.1 → webscout-8.2}/webscout/Provider/typefully.py +0 -0
  262. {webscout-8.1 → webscout-8.2}/webscout/Provider/typegpt.py +0 -0
  263. {webscout-8.1 → webscout-8.2}/webscout/Provider/x0gpt.py +0 -0
  264. {webscout-8.1 → webscout-8.2}/webscout/Provider/yep.py +0 -0
  265. {webscout-8.1 → webscout-8.2}/webscout/__init__.py +0 -0
  266. {webscout-8.1 → webscout-8.2}/webscout/__main__.py +0 -0
  267. {webscout-8.1 → webscout-8.2}/webscout/cli.py +0 -0
  268. {webscout-8.1 → webscout-8.2}/webscout/exceptions.py +0 -0
  269. {webscout-8.1 → webscout-8.2}/webscout/litagent/__init__.py +0 -0
  270. {webscout-8.1 → webscout-8.2}/webscout/litagent/agent.py +0 -0
  271. {webscout-8.1 → webscout-8.2}/webscout/litagent/constants.py +0 -0
  272. {webscout-8.1 → webscout-8.2}/webscout/litprinter/__init__.py +0 -0
  273. {webscout-8.1 → webscout-8.2}/webscout/models.py +0 -0
  274. {webscout-8.1 → webscout-8.2}/webscout/optimizers.py +0 -0
  275. {webscout-8.1 → webscout-8.2}/webscout/prompt_manager.py +0 -0
  276. {webscout-8.1 → webscout-8.2}/webscout/scout/__init__.py +0 -0
  277. {webscout-8.1 → webscout-8.2}/webscout/scout/core/__init__.py +0 -0
  278. {webscout-8.1 → webscout-8.2}/webscout/scout/core/crawler.py +0 -0
  279. {webscout-8.1 → webscout-8.2}/webscout/scout/core/scout.py +0 -0
  280. {webscout-8.1 → webscout-8.2}/webscout/scout/core/search_result.py +0 -0
  281. {webscout-8.1 → webscout-8.2}/webscout/scout/core/text_analyzer.py +0 -0
  282. {webscout-8.1 → webscout-8.2}/webscout/scout/core/text_utils.py +0 -0
  283. {webscout-8.1 → webscout-8.2}/webscout/scout/core/web_analyzer.py +0 -0
  284. {webscout-8.1 → webscout-8.2}/webscout/scout/core.py +0 -0
  285. {webscout-8.1 → webscout-8.2}/webscout/scout/element.py +0 -0
  286. {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/__init__.py +0 -0
  287. {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/html5lib_parser.py +0 -0
  288. {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/html_parser.py +0 -0
  289. {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/lxml_parser.py +0 -0
  290. {webscout-8.1 → webscout-8.2}/webscout/scout/utils.py +0 -0
  291. {webscout-8.1 → webscout-8.2}/webscout/swiftcli/__init__.py +0 -0
  292. {webscout-8.1 → webscout-8.2}/webscout/tempid.py +0 -0
  293. {webscout-8.1 → webscout-8.2}/webscout/update_checker.py +0 -0
  294. {webscout-8.1 → webscout-8.2}/webscout/utils.py +0 -0
  295. {webscout-8.1 → webscout-8.2}/webscout/webscout_search.py +0 -0
  296. {webscout-8.1 → webscout-8.2}/webscout/webscout_search_async.py +0 -0
  297. {webscout-8.1 → webscout-8.2}/webscout/yep_search.py +0 -0
  298. {webscout-8.1 → webscout-8.2}/webscout/zeroart/__init__.py +0 -0
  299. {webscout-8.1 → webscout-8.2}/webscout/zeroart/base.py +0 -0
  300. {webscout-8.1 → webscout-8.2}/webscout/zeroart/effects.py +0 -0
  301. {webscout-8.1 → webscout-8.2}/webscout/zeroart/fonts.py +0 -0
  302. {webscout-8.1 → webscout-8.2}/webscout.egg-info/dependency_links.txt +0 -0
  303. {webscout-8.1 → webscout-8.2}/webstoken/__init__.py +0 -0
  304. {webscout-8.1 → webscout-8.2}/webstoken/classifier.py +0 -0
  305. {webscout-8.1 → webscout-8.2}/webstoken/keywords.py +0 -0
  306. {webscout-8.1 → webscout-8.2}/webstoken/language.py +0 -0
  307. {webscout-8.1 → webscout-8.2}/webstoken/ner.py +0 -0
  308. {webscout-8.1 → webscout-8.2}/webstoken/normalizer.py +0 -0
  309. {webscout-8.1 → webscout-8.2}/webstoken/processor.py +0 -0
  310. {webscout-8.1 → webscout-8.2}/webstoken/sentiment.py +0 -0
  311. {webscout-8.1 → webscout-8.2}/webstoken/stemmer.py +0 -0
  312. {webscout-8.1 → webscout-8.2}/webstoken/tagger.py +0 -0
  313. {webscout-8.1 → webscout-8.2}/webstoken/tokenizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 8.1
3
+ Version: 8.2
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: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -8,10 +8,17 @@ License: HelpingAI
8
8
  Project-URL: Source, https://github.com/OE-LUCIFER/Webscout
9
9
  Project-URL: Tracker, https://github.com/OE-LUCIFER/Webscout/issues
10
10
  Project-URL: YouTube, https://youtube.com/@OEvortex
11
+ Keywords: search,ai,chatbot,llm,language-model,gpt,openai,gemini,claude,llama,search-engine,text-to-speech,tts,text-to-image,tti,weather,youtube,toolkit,utilities,web-search,duckduckgo,google,yep
11
12
  Classifier: Development Status :: 5 - Production/Stable
12
13
  Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: End Users/Desktop
15
+ Classifier: Intended Audience :: Science/Research
13
16
  Classifier: License :: Other/Proprietary License
17
+ Classifier: Natural Language :: English
14
18
  Classifier: Operating System :: OS Independent
19
+ Classifier: Operating System :: Microsoft :: Windows
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
15
22
  Classifier: Programming Language :: Python :: 3
16
23
  Classifier: Programming Language :: Python :: 3.9
17
24
  Classifier: Programming Language :: Python :: 3.10
@@ -21,9 +28,14 @@ Classifier: Programming Language :: Python :: 3.13
21
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
22
29
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
23
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
+ Classifier: Topic :: Text Processing :: Linguistic
32
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
33
+ Classifier: Topic :: Communications
34
+ Classifier: Topic :: Utilities
24
35
  Requires-Python: >=3.9
25
36
  Description-Content-Type: text/markdown
26
37
  Provides-Extra: dev
38
+ Provides-Extra: Local
27
39
  License-File: LICENSE.md
28
40
 
29
41
  <div align="center">
@@ -49,9 +61,10 @@ License-File: LICENSE.md
49
61
  </div>
50
62
 
51
63
  > [!IMPORTANT]
52
- > Webscout supports two types of compatibility:
64
+ > Webscout supports three types of compatibility:
53
65
  > - **Native Compatibility:** Webscout's own native API for maximum flexibility
54
66
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
67
+ > - **Local LLM Compatibility:** Run local models with [Inferno](webscout/Local/README.md), an OpenAI-compatible server
55
68
  >
56
69
  > Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
57
70
 
@@ -75,9 +88,10 @@ License-File: LICENSE.md
75
88
 
76
89
  ### Search & AI
77
90
  * **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
78
- * **AI Powerhouse:** Access and interact with various AI models through two compatibility options:
91
+ * **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
79
92
  * **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
80
93
  * **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
94
+ * **[Local LLMs with Inferno](webscout/Local/README.md):** Run local models with an OpenAI-compatible server
81
95
  * **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
82
96
 
83
97
  ### Media & Content Tools
@@ -93,6 +107,7 @@ License-File: LICENSE.md
93
107
  * **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
94
108
  * **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
95
109
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
110
+ * **[Inferno](webscout/Local/README.md):** Run local LLMs with an OpenAI-compatible API and interactive CLI
96
111
  * **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
97
112
 
98
113
  ### Privacy & Utilities
@@ -115,6 +130,8 @@ Webscout provides a powerful command-line interface for quick access to its feat
115
130
  python -m webscout --help
116
131
  ```
117
132
 
133
+ ### Web Search Commands
134
+
118
135
  | Command | Description |
119
136
  |---------|-------------|
120
137
  | `python -m webscout answers -k "query"` | Perform an answers search |
@@ -129,6 +146,32 @@ python -m webscout --help
129
146
  | `python -m webscout videos -k "query"` | Search for videos |
130
147
  | `python -m webscout weather -l "location"` | Get weather information |
131
148
 
149
+ ### Inferno LLM Commands
150
+
151
+ Inferno provides commands for managing and using local LLMs:
152
+
153
+ ```bash
154
+ python -m inferno --help
155
+ ```
156
+
157
+ | Command | Description |
158
+ |---------|-------------|
159
+ | `python -m inferno pull <model>` | Download a model from Hugging Face |
160
+ | `python -m inferno list` | List downloaded models |
161
+ | `python -m inferno serve <model>` | Start a model server with OpenAI-compatible API |
162
+ | `python -m inferno run <model>` | Chat with a model interactively |
163
+ | `python -m inferno remove <model>` | Remove a downloaded model |
164
+ | `python -m inferno version` | Show version information |
165
+
166
+ > [!NOTE]
167
+ > Hardware requirements for running models:
168
+ > - Around 2 GB of RAM for 1B models
169
+ > - Around 4 GB of RAM for 3B models
170
+ > - At least 8 GB of RAM for 7B models
171
+ > - 16 GB of RAM for 13B models
172
+ > - 32 GB of RAM for 33B models
173
+ > - GPU acceleration is recommended for better performance
174
+
132
175
 
133
176
 
134
177
  ## 🔍 Search Engines
@@ -21,9 +21,10 @@
21
21
  </div>
22
22
 
23
23
  > [!IMPORTANT]
24
- > Webscout supports two types of compatibility:
24
+ > Webscout supports three types of compatibility:
25
25
  > - **Native Compatibility:** Webscout's own native API for maximum flexibility
26
26
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
27
+ > - **Local LLM Compatibility:** Run local models with [Inferno](webscout/Local/README.md), an OpenAI-compatible server
27
28
  >
28
29
  > Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
29
30
 
@@ -47,9 +48,10 @@
47
48
 
48
49
  ### Search & AI
49
50
  * **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
50
- * **AI Powerhouse:** Access and interact with various AI models through two compatibility options:
51
+ * **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
51
52
  * **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
52
53
  * **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
54
+ * **[Local LLMs with Inferno](webscout/Local/README.md):** Run local models with an OpenAI-compatible server
53
55
  * **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
54
56
 
55
57
  ### Media & Content Tools
@@ -65,6 +67,7 @@
65
67
  * **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
66
68
  * **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
67
69
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
70
+ * **[Inferno](webscout/Local/README.md):** Run local LLMs with an OpenAI-compatible API and interactive CLI
68
71
  * **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
69
72
 
70
73
  ### Privacy & Utilities
@@ -87,6 +90,8 @@ Webscout provides a powerful command-line interface for quick access to its feat
87
90
  python -m webscout --help
88
91
  ```
89
92
 
93
+ ### Web Search Commands
94
+
90
95
  | Command | Description |
91
96
  |---------|-------------|
92
97
  | `python -m webscout answers -k "query"` | Perform an answers search |
@@ -101,6 +106,32 @@ python -m webscout --help
101
106
  | `python -m webscout videos -k "query"` | Search for videos |
102
107
  | `python -m webscout weather -l "location"` | Get weather information |
103
108
 
109
+ ### Inferno LLM Commands
110
+
111
+ Inferno provides commands for managing and using local LLMs:
112
+
113
+ ```bash
114
+ python -m inferno --help
115
+ ```
116
+
117
+ | Command | Description |
118
+ |---------|-------------|
119
+ | `python -m inferno pull <model>` | Download a model from Hugging Face |
120
+ | `python -m inferno list` | List downloaded models |
121
+ | `python -m inferno serve <model>` | Start a model server with OpenAI-compatible API |
122
+ | `python -m inferno run <model>` | Chat with a model interactively |
123
+ | `python -m inferno remove <model>` | Remove a downloaded model |
124
+ | `python -m inferno version` | Show version information |
125
+
126
+ > [!NOTE]
127
+ > Hardware requirements for running models:
128
+ > - Around 2 GB of RAM for 1B models
129
+ > - Around 4 GB of RAM for 3B models
130
+ > - At least 8 GB of RAM for 7B models
131
+ > - 16 GB of RAM for 13B models
132
+ > - 32 GB of RAM for 33B models
133
+ > - GPU acceleration is recommended for better performance
134
+
104
135
 
105
136
 
106
137
  ## 🔍 Search Engines
@@ -0,0 +1,6 @@
1
+ """
2
+ Inferno - A llama-cpp-python based LLM serving tool.
3
+ This is an alias package that redirects to webscout.Local.
4
+ """
5
+
6
+ from webscout.Local import *
@@ -0,0 +1,9 @@
1
+ """
2
+ Entry point for running inferno as a module.
3
+ This allows running the CLI using 'python -m inferno'.
4
+ """
5
+
6
+ from webscout.Local.cli import app
7
+
8
+ if __name__ == "__main__":
9
+ app()
@@ -0,0 +1,6 @@
1
+ """
2
+ CLI module for inferno.
3
+ This is an alias that redirects to webscout.Local.cli.
4
+ """
5
+
6
+ from webscout.Local.cli import *
@@ -12,13 +12,19 @@ setup(
12
12
  long_description_content_type="text/markdown",
13
13
  author="OEvortex",
14
14
  author_email="helpingai5@gmail.com",
15
- packages=find_packages(),
15
+ packages=find_packages() + ['inferno'],
16
16
  python_requires=">=3.9",
17
17
  classifiers=[
18
18
  "Development Status :: 5 - Production/Stable",
19
19
  "Intended Audience :: Developers",
20
+ "Intended Audience :: End Users/Desktop",
21
+ "Intended Audience :: Science/Research",
20
22
  "License :: Other/Proprietary License",
23
+ "Natural Language :: English",
21
24
  "Operating System :: OS Independent",
25
+ "Operating System :: Microsoft :: Windows",
26
+ "Operating System :: POSIX :: Linux",
27
+ "Operating System :: MacOS :: MacOS X",
22
28
  "Programming Language :: Python :: 3",
23
29
  "Programming Language :: Python :: 3.9",
24
30
  "Programming Language :: Python :: 3.10",
@@ -28,45 +34,52 @@ setup(
28
34
  "Programming Language :: Python :: Implementation :: CPython",
29
35
  "Topic :: Internet :: WWW/HTTP :: Indexing/Search",
30
36
  "Topic :: Software Development :: Libraries :: Python Modules",
37
+ "Topic :: Text Processing :: Linguistic",
38
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
39
+ "Topic :: Communications",
40
+ "Topic :: Utilities",
41
+ ],
42
+ keywords="search, ai, chatbot, llm, language-model, gpt, openai, gemini, claude, llama, search-engine, text-to-speech, tts, text-to-image, tti, weather, youtube, toolkit, utilities, web-search, duckduckgo, google, yep",
43
+ install_requires=[
44
+ "setuptools",
45
+ "wheel",
46
+ "pip",
47
+ "nodriver",
48
+ "mistune",
49
+ "tenacity",
50
+ "curl_cffi",
51
+ "nest-asyncio",
52
+ 'websocket-client',
53
+ 'colorama',
54
+ "rich",
55
+ "markdownify",
56
+ "requests",
57
+ "google-generativeai",
58
+ "lxml>=5.2.2",
59
+ "termcolor",
60
+ "orjson",
61
+ "PyYAML",
62
+ "ollama",
63
+ "pillow",
64
+ "bson",
65
+ "cloudscraper",
66
+ "html5lib",
67
+ "aiofiles",
68
+ "openai",
69
+ "prompt-toolkit",
70
+ "primp",
71
+ "pyreqwest_impersonate",
72
+ "gradio_client",
73
+ "psutil",
74
+ "aiohttp",
31
75
  ],
32
- install_requires=[
33
- "setuptools",
34
- "wheel",
35
- "pip",
36
- "nodriver",
37
- "mistune",
38
- "tenacity",
39
- "curl_cffi",
40
- "nest-asyncio",
41
- 'websocket-client',
42
- 'colorama',
43
- "rich",
44
- "markdownify",
45
- "requests",
46
- "google-generativeai",
47
- "lxml>=5.2.2",
48
- "termcolor",
49
- "orjson",
50
- "PyYAML",
51
- "ollama",
52
- "pillow",
53
- "bson",
54
- "cloudscraper",
55
- "html5lib",
56
- "aiofiles",
57
- "openai",
58
- "prompt-toolkit",
59
- "primp",
60
- "pyreqwest_impersonate",
61
- "gradio_client",
62
- "psutil",
63
- "aiohttp",
64
- ],
65
76
 
66
77
  entry_points={
67
78
  "console_scripts": [
68
79
  "WEBS = webscout.cli:cli",
69
80
  "webscout = webscout.cli:cli",
81
+ "inferno = webscout.Local.cli:app",
82
+ "webscout-local = webscout.Local.cli:app",
70
83
  ],
71
84
  },
72
85
  extras_require={
@@ -74,6 +87,16 @@ setup(
74
87
  "ruff>=0.1.6",
75
88
  "pytest>=7.4.2",
76
89
  ],
90
+ "Local": [
91
+ "llama-cpp-python",
92
+ "fastapi",
93
+ "uvicorn",
94
+ "rich",
95
+ "typer",
96
+ "huggingface_hub",
97
+ "pydantic",
98
+ "requests",
99
+ ],
77
100
  },
78
101
  license="HelpingAI",
79
102
  project_urls={
@@ -0,0 +1,6 @@
1
+ """
2
+ Webscout.Local - A llama-cpp-python based LLM serving tool
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+
@@ -0,0 +1,9 @@
1
+ """
2
+ Entry point for running webscout.Local as a module.
3
+ This allows running the CLI using 'python -m webscout.Local'.
4
+ """
5
+
6
+ from webscout.Local.cli import app
7
+
8
+ if __name__ == "__main__":
9
+ app()