webscout 7.3__tar.gz → 7.5__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 (250) hide show
  1. webscout-7.5/LICENSE.md +146 -0
  2. {webscout-7.3/webscout.egg-info → webscout-7.5}/PKG-INFO +43 -165
  3. {webscout-7.3 → webscout-7.5}/README.md +42 -163
  4. {webscout-7.3 → webscout-7.5}/setup.py +4 -9
  5. webscout-7.5/webscout/Provider/AISEARCH/__init__.py +4 -0
  6. webscout-7.5/webscout/Provider/AISEARCH/genspark_search.py +208 -0
  7. webscout-7.5/webscout/Provider/AllenAI.py +282 -0
  8. webscout-7.5/webscout/Provider/C4ai.py +414 -0
  9. {webscout-7.3 → webscout-7.5}/webscout/Provider/Cloudflare.py +18 -21
  10. {webscout-7.3 → webscout-7.5}/webscout/Provider/DeepSeek.py +3 -32
  11. {webscout-7.3 → webscout-7.5}/webscout/Provider/Deepinfra.py +52 -44
  12. webscout-7.5/webscout/Provider/ElectronHub.py +634 -0
  13. webscout-7.5/webscout/Provider/GithubChat.py +362 -0
  14. {webscout-7.3 → webscout-7.5}/webscout/Provider/Glider.py +7 -41
  15. webscout-7.5/webscout/Provider/HeckAI.py +217 -0
  16. webscout-7.5/webscout/Provider/HuggingFaceChat.py +462 -0
  17. {webscout-7.3 → webscout-7.5}/webscout/Provider/Jadve.py +49 -63
  18. {webscout-7.3 → webscout-7.5}/webscout/Provider/Marcus.py +7 -50
  19. {webscout-7.3 → webscout-7.5}/webscout/Provider/Netwrck.py +6 -53
  20. {webscout-7.3 → webscout-7.5}/webscout/Provider/PI.py +106 -93
  21. webscout-7.5/webscout/Provider/Perplexitylabs.py +395 -0
  22. {webscout-7.3 → webscout-7.5}/webscout/Provider/Phind.py +29 -3
  23. {webscout-7.3 → webscout-7.5}/webscout/Provider/QwenLM.py +7 -61
  24. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/__init__.py +1 -0
  25. webscout-7.5/webscout/Provider/TTI/aiarta/__init__.py +2 -0
  26. webscout-7.5/webscout/Provider/TTI/aiarta/async_aiarta.py +482 -0
  27. webscout-7.5/webscout/Provider/TTI/aiarta/sync_aiarta.py +409 -0
  28. webscout-7.5/webscout/Provider/TTI/piclumen/__init__.py +23 -0
  29. webscout-7.5/webscout/Provider/TTI/piclumen/async_piclumen.py +268 -0
  30. webscout-7.5/webscout/Provider/TTI/piclumen/sync_piclumen.py +233 -0
  31. {webscout-7.3 → webscout-7.5}/webscout/Provider/TextPollinationsAI.py +3 -2
  32. webscout-7.5/webscout/Provider/TwoAI.py +200 -0
  33. webscout-7.5/webscout/Provider/Venice.py +200 -0
  34. {webscout-7.3 → webscout-7.5}/webscout/Provider/WiseCat.py +1 -18
  35. {webscout-7.3 → webscout-7.5}/webscout/Provider/Youchat.py +1 -1
  36. {webscout-7.3 → webscout-7.5}/webscout/Provider/__init__.py +25 -2
  37. webscout-7.5/webscout/Provider/akashgpt.py +315 -0
  38. {webscout-7.3 → webscout-7.5}/webscout/Provider/chatglm.py +5 -5
  39. webscout-7.5/webscout/Provider/copilot.py +416 -0
  40. webscout-7.5/webscout/Provider/flowith.py +181 -0
  41. {webscout-7.3 → webscout-7.5}/webscout/Provider/freeaichat.py +251 -221
  42. {webscout-7.3 → webscout-7.5}/webscout/Provider/granite.py +17 -53
  43. {webscout-7.3 → webscout-7.5}/webscout/Provider/koala.py +9 -1
  44. {webscout-7.3 → webscout-7.5}/webscout/Provider/llamatutor.py +6 -46
  45. {webscout-7.3 → webscout-7.5}/webscout/Provider/llmchat.py +7 -46
  46. {webscout-7.3 → webscout-7.5}/webscout/Provider/multichat.py +29 -91
  47. {webscout-7.3 → webscout-7.5}/webscout/Provider/yep.py +4 -24
  48. {webscout-7.3 → webscout-7.5}/webscout/exceptions.py +19 -9
  49. webscout-7.5/webscout/update_checker.py +136 -0
  50. {webscout-7.3 → webscout-7.5}/webscout/version.py +1 -1
  51. {webscout-7.3 → webscout-7.5/webscout.egg-info}/PKG-INFO +43 -165
  52. {webscout-7.3 → webscout-7.5}/webscout.egg-info/SOURCES.txt +19 -9
  53. {webscout-7.3 → webscout-7.5}/webscout.egg-info/requires.txt +3 -9
  54. webscout-7.3/LICENSE.md +0 -211
  55. webscout-7.3/webscout/Local/__init__.py +0 -10
  56. webscout-7.3/webscout/Local/_version.py +0 -3
  57. webscout-7.3/webscout/Local/formats.py +0 -747
  58. webscout-7.3/webscout/Local/model.py +0 -1368
  59. webscout-7.3/webscout/Local/samplers.py +0 -125
  60. webscout-7.3/webscout/Local/thread.py +0 -539
  61. webscout-7.3/webscout/Local/ui.py +0 -401
  62. webscout-7.3/webscout/Local/utils.py +0 -388
  63. webscout-7.3/webscout/Provider/AISEARCH/__init__.py +0 -3
  64. webscout-7.3/webscout/Provider/dgaf.py +0 -214
  65. webscout-7.3/webscout/update_checker.py +0 -174
  66. {webscout-7.3 → webscout-7.5}/setup.cfg +0 -0
  67. {webscout-7.3 → webscout-7.5}/webscout/AIauto.py +0 -0
  68. {webscout-7.3 → webscout-7.5}/webscout/AIbase.py +0 -0
  69. {webscout-7.3 → webscout-7.5}/webscout/AIutel.py +0 -0
  70. {webscout-7.3 → webscout-7.5}/webscout/Bard.py +0 -0
  71. {webscout-7.3 → webscout-7.5}/webscout/DWEBS.py +0 -0
  72. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
  73. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/__init__.py +0 -0
  74. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/transcriber.py +0 -0
  75. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  76. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  77. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  78. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  79. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  80. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  81. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  82. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  83. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  84. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  85. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  86. {webscout-7.3 → webscout-7.5}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
  87. {webscout-7.3 → webscout-7.5}/webscout/Extra/__init__.py +0 -0
  88. {webscout-7.3 → webscout-7.5}/webscout/Extra/autocoder/__init__.py +0 -0
  89. {webscout-7.3 → webscout-7.5}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
  90. {webscout-7.3 → webscout-7.5}/webscout/Extra/autocoder/rawdog.py +0 -0
  91. {webscout-7.3 → webscout-7.5}/webscout/Extra/autollama.py +0 -0
  92. {webscout-7.3 → webscout-7.5}/webscout/Extra/gguf.py +0 -0
  93. {webscout-7.3 → webscout-7.5}/webscout/Extra/weather.py +0 -0
  94. {webscout-7.3 → webscout-7.5}/webscout/Extra/weather_ascii.py +0 -0
  95. {webscout-7.3 → webscout-7.5}/webscout/LLM.py +0 -0
  96. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/__init__.py +0 -0
  97. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/core/__init__.py +0 -0
  98. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/core/level.py +0 -0
  99. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/core/logger.py +0 -0
  100. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/handlers/__init__.py +0 -0
  101. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/handlers/console.py +0 -0
  102. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/handlers/file.py +0 -0
  103. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/handlers/network.py +0 -0
  104. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/styles/__init__.py +0 -0
  105. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/styles/colors.py +0 -0
  106. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/styles/formats.py +0 -0
  107. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/styles/text.py +0 -0
  108. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/utils/__init__.py +0 -0
  109. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/utils/detectors.py +0 -0
  110. {webscout-7.3 → webscout-7.5}/webscout/Litlogger/utils/formatters.py +0 -0
  111. {webscout-7.3 → webscout-7.5}/webscout/Provider/AI21.py +0 -0
  112. {webscout-7.3 → webscout-7.5}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
  113. {webscout-7.3 → webscout-7.5}/webscout/Provider/AISEARCH/ISou.py +0 -0
  114. {webscout-7.3 → webscout-7.5}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  115. {webscout-7.3 → webscout-7.5}/webscout/Provider/Amigo.py +0 -0
  116. {webscout-7.3 → webscout-7.5}/webscout/Provider/Andi.py +0 -0
  117. {webscout-7.3 → webscout-7.5}/webscout/Provider/Bing.py +0 -0
  118. {webscout-7.3 → webscout-7.5}/webscout/Provider/Blackboxai.py +0 -0
  119. {webscout-7.3 → webscout-7.5}/webscout/Provider/ChatGPTES.py +0 -0
  120. {webscout-7.3 → webscout-7.5}/webscout/Provider/ChatGPTGratis.py +0 -0
  121. {webscout-7.3 → webscout-7.5}/webscout/Provider/Chatify.py +0 -0
  122. {webscout-7.3 → webscout-7.5}/webscout/Provider/Cohere.py +0 -0
  123. {webscout-7.3 → webscout-7.5}/webscout/Provider/DARKAI.py +0 -0
  124. {webscout-7.3 → webscout-7.5}/webscout/Provider/DiscordRocks.py +0 -0
  125. {webscout-7.3 → webscout-7.5}/webscout/Provider/EDITEE.py +0 -0
  126. {webscout-7.3 → webscout-7.5}/webscout/Provider/Free2GPT.py +0 -0
  127. {webscout-7.3 → webscout-7.5}/webscout/Provider/GPTWeb.py +0 -0
  128. {webscout-7.3 → webscout-7.5}/webscout/Provider/Gemini.py +0 -0
  129. {webscout-7.3 → webscout-7.5}/webscout/Provider/Groq.py +0 -0
  130. {webscout-7.3 → webscout-7.5}/webscout/Provider/HF_space/__init__.py +0 -0
  131. {webscout-7.3 → webscout-7.5}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
  132. {webscout-7.3 → webscout-7.5}/webscout/Provider/Koboldai.py +0 -0
  133. {webscout-7.3 → webscout-7.5}/webscout/Provider/Llama.py +0 -0
  134. {webscout-7.3 → webscout-7.5}/webscout/Provider/Llama3.py +0 -0
  135. {webscout-7.3 → webscout-7.5}/webscout/Provider/OLLAMA.py +0 -0
  136. {webscout-7.3 → webscout-7.5}/webscout/Provider/Openai.py +0 -0
  137. {webscout-7.3 → webscout-7.5}/webscout/Provider/PizzaGPT.py +0 -0
  138. {webscout-7.3 → webscout-7.5}/webscout/Provider/Reka.py +0 -0
  139. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
  140. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
  141. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
  142. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
  143. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
  144. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
  145. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
  146. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
  147. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
  148. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
  149. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
  150. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
  151. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/artbit/__init__.py +0 -0
  152. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
  153. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
  154. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/blackbox/__init__.py +0 -0
  155. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/blackbox/async_blackbox.py +0 -0
  156. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/blackbox/sync_blackbox.py +0 -0
  157. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/deepinfra/__init__.py +0 -0
  158. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/deepinfra/async_deepinfra.py +0 -0
  159. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/deepinfra/sync_deepinfra.py +0 -0
  160. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
  161. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
  162. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
  163. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/imgninza/__init__.py +0 -0
  164. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/imgninza/async_ninza.py +0 -0
  165. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/imgninza/sync_ninza.py +0 -0
  166. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/talkai/__init__.py +0 -0
  167. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
  168. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
  169. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/__init__.py +0 -0
  170. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/deepgram.py +0 -0
  171. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/elevenlabs.py +0 -0
  172. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/gesserit.py +0 -0
  173. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/murfai.py +0 -0
  174. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/parler.py +0 -0
  175. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/streamElements.py +0 -0
  176. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/utils.py +0 -0
  177. {webscout-7.3 → webscout-7.5}/webscout/Provider/TTS/voicepod.py +0 -0
  178. {webscout-7.3 → webscout-7.5}/webscout/Provider/TeachAnything.py +0 -0
  179. {webscout-7.3 → webscout-7.5}/webscout/Provider/ai4chat.py +0 -0
  180. {webscout-7.3 → webscout-7.5}/webscout/Provider/aimathgpt.py +0 -0
  181. {webscout-7.3 → webscout-7.5}/webscout/Provider/askmyai.py +0 -0
  182. {webscout-7.3 → webscout-7.5}/webscout/Provider/bagoodex.py +0 -0
  183. {webscout-7.3 → webscout-7.5}/webscout/Provider/cerebras.py +0 -0
  184. {webscout-7.3 → webscout-7.5}/webscout/Provider/cleeai.py +0 -0
  185. {webscout-7.3 → webscout-7.5}/webscout/Provider/elmo.py +0 -0
  186. {webscout-7.3 → webscout-7.5}/webscout/Provider/gaurish.py +0 -0
  187. {webscout-7.3 → webscout-7.5}/webscout/Provider/geminiapi.py +0 -0
  188. {webscout-7.3 → webscout-7.5}/webscout/Provider/geminiprorealtime.py +0 -0
  189. {webscout-7.3 → webscout-7.5}/webscout/Provider/hermes.py +0 -0
  190. {webscout-7.3 → webscout-7.5}/webscout/Provider/julius.py +0 -0
  191. {webscout-7.3 → webscout-7.5}/webscout/Provider/learnfastai.py +0 -0
  192. {webscout-7.3 → webscout-7.5}/webscout/Provider/lepton.py +0 -0
  193. {webscout-7.3 → webscout-7.5}/webscout/Provider/llama3mitril.py +0 -0
  194. {webscout-7.3 → webscout-7.5}/webscout/Provider/meta.py +0 -0
  195. {webscout-7.3 → webscout-7.5}/webscout/Provider/promptrefine.py +0 -0
  196. {webscout-7.3 → webscout-7.5}/webscout/Provider/talkai.py +0 -0
  197. {webscout-7.3 → webscout-7.5}/webscout/Provider/turboseek.py +0 -0
  198. {webscout-7.3 → webscout-7.5}/webscout/Provider/tutorai.py +0 -0
  199. {webscout-7.3 → webscout-7.5}/webscout/Provider/typegpt.py +0 -0
  200. {webscout-7.3 → webscout-7.5}/webscout/Provider/x0gpt.py +0 -0
  201. {webscout-7.3 → webscout-7.5}/webscout/__init__.py +0 -0
  202. {webscout-7.3 → webscout-7.5}/webscout/__main__.py +0 -0
  203. {webscout-7.3 → webscout-7.5}/webscout/cli.py +0 -0
  204. {webscout-7.3 → webscout-7.5}/webscout/conversation.py +0 -0
  205. {webscout-7.3 → webscout-7.5}/webscout/litagent/__init__.py +0 -0
  206. {webscout-7.3 → webscout-7.5}/webscout/litagent/agent.py +0 -0
  207. {webscout-7.3 → webscout-7.5}/webscout/litagent/constants.py +0 -0
  208. {webscout-7.3 → webscout-7.5}/webscout/litprinter/__init__.py +0 -0
  209. {webscout-7.3 → webscout-7.5}/webscout/litprinter/colors.py +0 -0
  210. {webscout-7.3 → webscout-7.5}/webscout/optimizers.py +0 -0
  211. {webscout-7.3 → webscout-7.5}/webscout/prompt_manager.py +0 -0
  212. {webscout-7.3 → webscout-7.5}/webscout/scout/__init__.py +0 -0
  213. {webscout-7.3 → webscout-7.5}/webscout/scout/core/__init__.py +0 -0
  214. {webscout-7.3 → webscout-7.5}/webscout/scout/core/crawler.py +0 -0
  215. {webscout-7.3 → webscout-7.5}/webscout/scout/core/scout.py +0 -0
  216. {webscout-7.3 → webscout-7.5}/webscout/scout/core/search_result.py +0 -0
  217. {webscout-7.3 → webscout-7.5}/webscout/scout/core/text_analyzer.py +0 -0
  218. {webscout-7.3 → webscout-7.5}/webscout/scout/core/text_utils.py +0 -0
  219. {webscout-7.3 → webscout-7.5}/webscout/scout/core/web_analyzer.py +0 -0
  220. {webscout-7.3 → webscout-7.5}/webscout/scout/core.py +0 -0
  221. {webscout-7.3 → webscout-7.5}/webscout/scout/element.py +0 -0
  222. {webscout-7.3 → webscout-7.5}/webscout/scout/parsers/__init__.py +0 -0
  223. {webscout-7.3 → webscout-7.5}/webscout/scout/parsers/html5lib_parser.py +0 -0
  224. {webscout-7.3 → webscout-7.5}/webscout/scout/parsers/html_parser.py +0 -0
  225. {webscout-7.3 → webscout-7.5}/webscout/scout/parsers/lxml_parser.py +0 -0
  226. {webscout-7.3 → webscout-7.5}/webscout/scout/utils.py +0 -0
  227. {webscout-7.3 → webscout-7.5}/webscout/swiftcli/__init__.py +0 -0
  228. {webscout-7.3 → webscout-7.5}/webscout/tempid.py +0 -0
  229. {webscout-7.3 → webscout-7.5}/webscout/utils.py +0 -0
  230. {webscout-7.3 → webscout-7.5}/webscout/webscout_search.py +0 -0
  231. {webscout-7.3 → webscout-7.5}/webscout/webscout_search_async.py +0 -0
  232. {webscout-7.3 → webscout-7.5}/webscout/yep_search.py +0 -0
  233. {webscout-7.3 → webscout-7.5}/webscout/zeroart/__init__.py +0 -0
  234. {webscout-7.3 → webscout-7.5}/webscout/zeroart/base.py +0 -0
  235. {webscout-7.3 → webscout-7.5}/webscout/zeroart/effects.py +0 -0
  236. {webscout-7.3 → webscout-7.5}/webscout/zeroart/fonts.py +0 -0
  237. {webscout-7.3 → webscout-7.5}/webscout.egg-info/dependency_links.txt +0 -0
  238. {webscout-7.3 → webscout-7.5}/webscout.egg-info/entry_points.txt +0 -0
  239. {webscout-7.3 → webscout-7.5}/webscout.egg-info/top_level.txt +0 -0
  240. {webscout-7.3 → webscout-7.5}/webstoken/__init__.py +0 -0
  241. {webscout-7.3 → webscout-7.5}/webstoken/classifier.py +0 -0
  242. {webscout-7.3 → webscout-7.5}/webstoken/keywords.py +0 -0
  243. {webscout-7.3 → webscout-7.5}/webstoken/language.py +0 -0
  244. {webscout-7.3 → webscout-7.5}/webstoken/ner.py +0 -0
  245. {webscout-7.3 → webscout-7.5}/webstoken/normalizer.py +0 -0
  246. {webscout-7.3 → webscout-7.5}/webstoken/processor.py +0 -0
  247. {webscout-7.3 → webscout-7.5}/webstoken/sentiment.py +0 -0
  248. {webscout-7.3 → webscout-7.5}/webstoken/stemmer.py +0 -0
  249. {webscout-7.3 → webscout-7.5}/webstoken/tagger.py +0 -0
  250. {webscout-7.3 → webscout-7.5}/webstoken/tokenizer.py +0 -0
@@ -0,0 +1,146 @@
1
+ Apache License
2
+ Version 2.0, March 2025
3
+ Webscout License
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship.
43
+
44
+ "Contribution" shall mean any work of authorship, including
45
+ the original version of the Work and any modifications or additions
46
+ to that Work or Derivative Works thereof, that is intentionally
47
+ submitted to Licensor for inclusion in the Work by the copyright owner
48
+ or by an individual or Legal Entity authorized to submit on behalf of
49
+ the copyright owner.
50
+
51
+ 2. Grant of Copyright License. Subject to the terms and conditions of
52
+ this License, each Contributor hereby grants to You a perpetual,
53
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
54
+ copyright license to reproduce, prepare Derivative Works of,
55
+ publicly display, publicly perform, sublicense, and distribute the
56
+ Work and such Derivative Works in Source or Object form.
57
+
58
+ 3. Grant of Patent License. Subject to the terms and conditions of
59
+ this License, each Contributor hereby grants to You a perpetual,
60
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
61
+ (except as stated in this section) patent license to make, have made,
62
+ use, offer to sell, sell, import, and otherwise transfer the Work,
63
+ where such license applies only to those patent claims licensable
64
+ by such Contributor that are necessarily infringed by their
65
+ Contribution(s) alone or by combination of their Contribution(s)
66
+ with the Work to which such Contribution(s) was submitted.
67
+
68
+ 4. Redistribution. You may reproduce and distribute copies of the
69
+ Work or Derivative Works thereof in any medium, with or without
70
+ modifications, and in Source or Object form, provided that You
71
+ meet the following conditions:
72
+
73
+ (a) You must give any other recipients of the Work or
74
+ Derivative Works a copy of this License; and
75
+
76
+ (b) You must cause any modified files to carry prominent notices
77
+ stating that You changed the files; and
78
+
79
+ (c) You must retain, in the Source form of any Derivative Works
80
+ that You distribute, all copyright, patent, trademark, and
81
+ attribution notices from the Source form of the Work; and
82
+
83
+ (d) If the Work includes a "NOTICE" text file as part of its
84
+ distribution, then any Derivative Works that You distribute must
85
+ include a readable copy of the attribution notices contained
86
+ within such NOTICE file; and
87
+
88
+ (e) You must include the following attribution notice prominently
89
+ displayed in any Derivative Works:
90
+ "Based on Webscout (https://github.com/webscout)"
91
+
92
+ 5. API Usage and Third-Party Services. When using the APIs and services
93
+ accessed through this Work, you must:
94
+
95
+ (a) Comply with all terms of service of the respective API providers; and
96
+
97
+ (b) Maintain appropriate attribution and licenses for third-party services; and
98
+
99
+ (c) Be responsible for obtaining any necessary permissions or licenses; and
100
+
101
+ (d) Not use the Work in any way that could damage or overload third-party services.
102
+
103
+ 6. Submission of Contributions. Unless You explicitly state otherwise,
104
+ any Contribution intentionally submitted for inclusion in the Work
105
+ by You to the Licensor shall be under the terms and conditions of
106
+ this License, without any additional terms or conditions.
107
+
108
+ 7. Trademarks. This License does not grant permission to use the trade
109
+ names, trademarks, service marks, or product names of the Licensor,
110
+ except as required for reasonable and customary use in describing the
111
+ origin of the Work and reproducing the content of the NOTICE file.
112
+
113
+ 8. Disclaimer of Warranty. Unless required by applicable law or
114
+ agreed to in writing, Licensor provides the Work (and each
115
+ Contributor provides its Contributions) on an "AS IS" BASIS,
116
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
117
+ implied, including, without limitation, any warranties or conditions
118
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
119
+ PARTICULAR PURPOSE. You are solely responsible for determining the
120
+ appropriateness of using or redistributing the Work and assume any
121
+ risks associated with Your exercise of permissions under this License.
122
+
123
+ 9. Limitation of Liability. In no event and under no legal theory,
124
+ whether in tort (including negligence), contract, or otherwise,
125
+ unless required by applicable law (such as deliberate and grossly
126
+ negligent acts) or agreed to in writing, shall any Contributor be
127
+ liable to You for damages, including any direct, indirect, special,
128
+ incidental, consequential, or exemplary damages of any character
129
+ arising as a result of this License or out of the use or inability
130
+ to use the Work.
131
+
132
+ END OF TERMS AND CONDITIONS
133
+
134
+ Copyright 2024-2025 Webscout Contributors
135
+
136
+ Licensed under the Apache License, Version 2.0 (the "License");
137
+ you may not use this file except in compliance with the License.
138
+ You may obtain a copy of the License at
139
+
140
+ http://www.apache.org/licenses/LICENSE-2.0
141
+
142
+ Unless required by applicable law or agreed to in writing, software
143
+ distributed under the License is distributed on an "AS IS" BASIS,
144
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145
+ See the License for the specific language governing permissions and
146
+ limitations under the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 7.3
3
+ Version: 7.5
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
@@ -24,16 +24,13 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
24
  Requires-Python: >=3.7
25
25
  Description-Content-Type: text/markdown
26
26
  Provides-Extra: dev
27
- Provides-Extra: local
28
27
  License-File: LICENSE.md
29
28
 
30
-
31
- [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/official_helpingai)
29
+ [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/PyscoutAI)
32
30
  [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/oevortex/)
33
31
  [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/oe-vortex-29a407265/)
34
32
  [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black)](https://buymeacoffee.com/oevortex)
35
33
 
36
-
37
34
  <div align="center">
38
35
  <a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> &bull;
39
36
  <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> &bull;
@@ -45,7 +42,7 @@ License-File: LICENSE.md
45
42
  <p align="center">
46
43
  <strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
47
44
  <br>
48
- Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
45
+ Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; and much more!
49
46
  </p>
50
47
 
51
48
  <div align="center">
@@ -57,14 +54,13 @@ License-File: LICENSE.md
57
54
  ---
58
55
 
59
56
  ## 🚀 Features
57
+
60
58
  * **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
61
59
  * **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
62
60
  * **[YouTube Toolkit](webscout/Extra/YTToolkit):** Advanced YouTube video and transcript management with multi-language support, versatile downloading, and intelligent data extraction
61
+ * **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit for seamless repository and user information retrieval, featuring commit tracking, issue management, and comprehensive user analytics - all without authentication requirements for public data
63
62
  * **Tempmail & Temp Number:** Generate temporary email addresses and phone numbers for enhanced privacy.
64
63
  * **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers like ElevenLabs, StreamElements, and Voicepods.
65
- * **Offline LLMs:** Utilize powerful language models offline with GGUF support.
66
- * **Extensive Provider Ecosystem:** Explore a vast collection of AI providers
67
- * **Local LLM Execution:** Run GGUF models locally with minimal configuration.
68
64
  * **GGUF Conversion & Quantization:** Convert and quantize Hugging Face models to GGUF format.
69
65
  * **Autollama:** Download Hugging Face models and automatically convert them for Ollama compatibility.
70
66
  * **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework that makes it easy to create beautiful command-line interfaces.
@@ -73,8 +69,10 @@ License-File: LICENSE.md
73
69
  * **[LitAgent](webscout/litagent/Readme.md):** Powerful and modern user agent generator that keeps your requests fresh and undetectable
74
70
  * **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
75
71
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
72
+ * **[AISearch](webscout/Provider/AISEARCH/README.md):** AI Search Providers offer powerful and flexible AI-powered search Search Engine
76
73
 
77
74
  ## ⚙️ Installation
75
+
78
76
  ```python
79
77
  pip install -U webscout
80
78
  ```
@@ -94,12 +92,13 @@ python -m webscout --help
94
92
  | python -m webscout suggestions -k Text | CLI function to perform a suggestions search using Webscout. |
95
93
  | python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
96
94
  | python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
97
- | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
95
+ | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
98
96
  | python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
99
97
 
100
- [Go To TOP](#webscout-️)
98
+ [Go To TOP](#webscout-️)
101
99
 
102
100
  ## 🌍 Regions
101
+
103
102
  <details>
104
103
  <summary>Expand</summary>
105
104
 
@@ -172,17 +171,14 @@ python -m webscout --help
172
171
  vn-vi for Vietnam
173
172
  wt-wt for No region
174
173
 
175
-
176
174
  </details>
177
175
 
178
-
179
176
  [Go To TOP](#webscout-️)
180
177
 
181
-
182
-
183
178
  ## ☀️ Weather
184
179
 
185
- ### 1. Weather
180
+ ### 1. Weather
181
+
186
182
  ```python
187
183
  from webscout import weather as w
188
184
  weather = w.get("Qazigund")
@@ -190,6 +186,7 @@ print(weather)
190
186
  ```
191
187
 
192
188
  ### 2. Weather ASCII
189
+
193
190
  ```python
194
191
  from webscout import weather_ascii as w
195
192
  weather = w.get("Qazigund")
@@ -283,7 +280,6 @@ for result in results:
283
280
  print(result)
284
281
  ```
285
282
 
286
-
287
283
  ## 🦆 WEBS and AsyncWEBS
288
284
 
289
285
  The `WEBS` and `AsyncWEBS` classes are used to retrieve search results from DuckDuckGo.com.
@@ -353,7 +349,7 @@ await main()
353
349
 
354
350
  ## 💻 Usage of WEBS
355
351
 
356
- ### 1. `text()` - Text Search by DuckDuckGo.com
352
+ ### 1. `text()` - Text Search by DuckDuckGo.com
357
353
 
358
354
  ```python
359
355
  from webscout import WEBS
@@ -367,7 +363,7 @@ with WEBS() as WEBS:
367
363
  print(r)
368
364
  ```
369
365
 
370
- ### 2. `answers()` - Instant Answers by DuckDuckGo.com
366
+ ### 2. `answers()` - Instant Answers by DuckDuckGo.com
371
367
 
372
368
  ```python
373
369
  from webscout import WEBS
@@ -378,7 +374,7 @@ with WEBS() as WEBS:
378
374
  print(r)
379
375
  ```
380
376
 
381
- ### 3. `images()` - Image Search by DuckDuckGo.com
377
+ ### 3. `images()` - Image Search by DuckDuckGo.com
382
378
 
383
379
  ```python
384
380
  from webscout import WEBS
@@ -400,7 +396,7 @@ with WEBS() as WEBS:
400
396
  print(r)
401
397
  ```
402
398
 
403
- ### 4. `videos()` - Video Search by DuckDuckGo.com
399
+ ### 4. `videos()` - Video Search by DuckDuckGo.com
404
400
 
405
401
  ```python
406
402
  from webscout import WEBS
@@ -421,7 +417,7 @@ with WEBS() as WEBS:
421
417
  print(r)
422
418
  ```
423
419
 
424
- ### 5. `news()` - News Search by DuckDuckGo.com
420
+ ### 5. `news()` - News Search by DuckDuckGo.com
425
421
 
426
422
  ```python
427
423
  from webscout import WEBS
@@ -514,19 +510,17 @@ with WEBS() as webs:
514
510
 
515
511
  ```
516
512
 
517
-
518
-
519
- ## ALL Acts
513
+ ## ALL Acts
520
514
 
521
515
  <details>
522
516
  <summary>Expand</summary>
523
517
 
524
- ## Webscout Supported Acts:
518
+ ## Webscout Supported Acts
525
519
 
526
520
  1. Free-mode
527
521
  2. Linux Terminal
528
522
  3. English Translator and Improver
529
- 4. `position` Interviewer
523
+ 4. `position` Interviewer
530
524
  5. JavaScript Console
531
525
  6. Excel Sheet
532
526
  7. English Pronunciation Helper
@@ -684,7 +678,7 @@ with WEBS() as webs:
684
678
  159. Wikipedia page
685
679
  160. Japanese Kanji quiz machine
686
680
  161. note-taking assistant
687
- 162. `language` Literary Critic
681
+ 162. `language` Literary Critic
688
682
  163. Cheap Travel Ticket Advisor
689
683
  164. DALL-E
690
684
  165. MathBot
@@ -709,7 +703,7 @@ with WEBS() as webs:
709
703
  184. Hypothetical response
710
704
  185. BH
711
705
  186. Text Continuation
712
- 187. Dude v3
706
+ 187. Dude v3
713
707
  188. SDA (Superior DAN)
714
708
  189. AntiGPT
715
709
  190. BasedGPT v2
@@ -758,19 +752,19 @@ with WEBS() as webs:
758
752
  233. LiveGPT
759
753
  234. DAN Jailbreak
760
754
  235. Cooper
761
- 236. Steve
755
+ 236. Steve
762
756
  237. DAN 5.0
763
757
  238. Axies
764
758
  239. OMNI
765
759
  240. Burple
766
- 241. JOHN
760
+ 241. JOHN
767
761
  242. An Ethereum Developer
768
762
  243. SEO Prompt
769
763
  244. Prompt Enhancer
770
764
  245. Data Scientist
771
765
  246. League of Legends Player
772
766
 
773
- **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
767
+ **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
774
768
  ___
775
769
  </details>
776
770
 
@@ -864,7 +858,7 @@ for chunk in response:
864
858
 
865
859
  ```
866
860
 
867
- ### ⬛ `BlackBox` - Search/Chat with BlackBox
861
+ ### ⬛ `BlackBox` - Search/Chat with BlackBox
868
862
 
869
863
  ```python
870
864
  from webscout import BLACKBOXAI
@@ -891,8 +885,7 @@ r = ai.chat(prompt)
891
885
  print(r)
892
886
  ```
893
887
 
894
-
895
- ### 🤖 `Meta AI` - Chat with Meta AI
888
+ ### 🤖 `Meta AI` - Chat with Meta AI
896
889
 
897
890
  ```python
898
891
  from webscout import Meta
@@ -926,7 +919,7 @@ for media in response["media"]:
926
919
 
927
920
  ```
928
921
 
929
- ### `KOBOLDAI`
922
+ ### `KOBOLDAI`
930
923
 
931
924
  ```python
932
925
  from webscout import KOBOLDAI
@@ -946,7 +939,7 @@ print(message)
946
939
 
947
940
  ```
948
941
 
949
- ### `Reka` - Chat with Reka
942
+ ### `Reka` - Chat with Reka
950
943
 
951
944
  ```python
952
945
  from webscout import REKA
@@ -958,7 +951,7 @@ response_str = a.chat(prompt)
958
951
  print(response_str)
959
952
  ```
960
953
 
961
- ### `Cohere` - Chat with Cohere
954
+ ### `Cohere` - Chat with Cohere
962
955
 
963
956
  ```python
964
957
  from webscout import Cohere
@@ -970,7 +963,7 @@ response_str = a.chat(prompt)
970
963
  print(response_str)
971
964
  ```
972
965
 
973
- ### `Deepinfra`
966
+ ### `Deepinfra`
974
967
 
975
968
  ```python
976
969
  from webscout import DeepInfra
@@ -997,8 +990,7 @@ message = ai.get_message(response)
997
990
  print(message)
998
991
  ```
999
992
 
1000
-
1001
- ### `GROQ`
993
+ ### `GROQ`
1002
994
 
1003
995
  ```python
1004
996
  from webscout import GROQ
@@ -1085,7 +1077,7 @@ print(response_search)
1085
1077
 
1086
1078
  ```
1087
1079
 
1088
- ### `LLama 70b` - Chat with Meta's Llama 3 70b
1080
+ ### `LLama 70b` - Chat with Meta's Llama 3 70b
1089
1081
 
1090
1082
  ```python
1091
1083
 
@@ -1097,7 +1089,7 @@ r = llama.chat("What is the meaning of life?")
1097
1089
  print(r)
1098
1090
  ```
1099
1091
 
1100
- ### `AndiSearch`
1092
+ ### `AndiSearch`
1101
1093
 
1102
1094
  ```python
1103
1095
  from webscout import AndiSearch
@@ -1105,8 +1097,7 @@ a = AndiSearch()
1105
1097
  print(a.chat("HelpingAI-9B"))
1106
1098
  ```
1107
1099
 
1108
-
1109
- ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek
1100
+ ### `LLAMA`, `C4ai`, `Venice`, `Copilot`, `HuggingFaceChat`, `TwoAI`, `HeckAI`, `AllenAI`, `PerplexityLabs`, `AkashGPT`, `DeepSeek`, `WiseCat`, `IBMGranite`, `QwenLM`, `ChatGPTGratis`, `TextPollinationsAI`, `GliderAI`, `Cohere`, `REKA`, `GROQ`, `AsyncGROQ`, `OPENAI`, `AsyncOPENAI`, `KOBOLDAI`, `AsyncKOBOLDAI`, `BLACKBOXAI`, `PhindSearch`, `GEMINI`, `DeepInfra`, `AI4Chat`, `Phindv2`, `OLLAMA`, `AndiSearch`, `PIZZAGPT`, `Sambanova`, `DARKAI`, `KOALA`, `Meta`, `AskMyAI`, `DiscordRocks`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `Bing`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `AmigoChat`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
1110
1101
 
1111
1102
  Code is similar to other providers.
1112
1103
 
@@ -1130,119 +1121,7 @@ response = vlm.chat([{
1130
1121
  }])
1131
1122
  ```
1132
1123
 
1133
- ## 💻 Local-LLM
1134
-
1135
- Webscout can now run GGUF models locally. You can download and run your favorite models with minimal configuration.
1136
-
1137
- **Example:**
1138
-
1139
- ```python
1140
- from webscout.Local import *
1141
- model_path = download_model("Qwen/Qwen2.5-0.5B-Instruct-GGUF", "qwen2.5-0.5b-instruct-q2_k.gguf", token=None)
1142
- model = Model(model_path, n_gpu_layers=0, context_length=2048)
1143
- thread = Thread(model, format=chatml)
1144
- # print(thread.send("hi")) #send a single msg to ai
1145
-
1146
- # thread.interact() # interact with the model in terminal
1147
- # start webui
1148
- # webui = WebUI(thread)
1149
- # webui.start(host="0.0.0.0", port=8080, ssl=True) #Use ssl=True and make cert and key for https
1150
- ```
1151
-
1152
- ## 🐶 Local-rawdog
1153
-
1154
- Webscout's local raw-dog feature allows you to run Python scripts within your terminal prompt.
1155
-
1156
- **Example:**
1157
-
1158
- ```python
1159
- import webscout.Local as ws
1160
- from webscout.Local.rawdog import RawDog
1161
- from webscout.Local.samplers import DefaultSampling
1162
- from webscout.Local.formats import chatml, AdvancedFormat
1163
- from webscout.Local.utils import download_model
1164
- import datetime
1165
- import sys
1166
- import os
1167
-
1168
- repo_id = "YorkieOH10/granite-8b-code-instruct-Q8_0-GGUF"
1169
- filename = "granite-8b-code-instruct.Q8_0.gguf"
1170
- model_path = download_model(repo_id, filename, token='')
1171
-
1172
- # Load the model using the downloaded path
1173
- model = ws.Model(model_path, n_gpu_layers=10)
1174
-
1175
- rawdog = RawDog()
1176
-
1177
- # Create an AdvancedFormat and modify the system content
1178
- # Use a lambda to generate the prompt dynamically:
1179
- chat_format = AdvancedFormat(chatml)
1180
- # **Pre-format the intro_prompt string:**
1181
- system_content = f"""
1182
- You are a command-line coding assistant called Rawdog that generates and auto-executes Python scripts.
1183
-
1184
- A typical interaction goes like this:
1185
- 1. The user gives you a natural language PROMPT.
1186
- 2. You:
1187
- i. Determine what needs to be done
1188
- ii. Write a short Python SCRIPT to do it
1189
- iii. Communicate back to the user by printing to the console in that SCRIPT
1190
- 3. The compiler extracts the script and then runs it using exec(). If there will be an exception raised,
1191
- it will be send back to you starting with "PREVIOUS SCRIPT EXCEPTION:".
1192
- 4. In case of exception, regenerate error free script.
1193
-
1194
- If you need to review script outputs before completing the task, you can print the word "CONTINUE" at the end of your SCRIPT.
1195
- This can be useful for summarizing documents or technical readouts, reading instructions before
1196
- deciding what to do, or other tasks that require multi-step reasoning.
1197
- A typical 'CONTINUE' interaction looks like this:
1198
- 1. The user gives you a natural language PROMPT.
1199
- 2. You:
1200
- i. Determine what needs to be done
1201
- ii. Determine that you need to see the output of some subprocess call to complete the task
1202
- iii. Write a short Python SCRIPT to print that and then print the word "CONTINUE"
1203
- 3. The compiler
1204
- i. Checks and runs your SCRIPT
1205
- ii. Captures the output and appends it to the conversation as "LAST SCRIPT OUTPUT:"
1206
- iii. Finds the word "CONTINUE" and sends control back to you
1207
- 4. You again:
1208
- i. Look at the original PROMPT + the "LAST SCRIPT OUTPUT:" to determine what needs to be done
1209
- ii. Write a short Python SCRIPT to do it
1210
- iii. Communicate back to the user by printing to the console in that SCRIPT
1211
- 5. The compiler...
1212
-
1213
- Please follow these conventions carefully:
1214
- - Decline any tasks that seem dangerous, irreversible, or that you don't understand.
1215
- - Always review the full conversation prior to answering and maintain continuity.
1216
- - If asked for information, just print the information clearly and concisely.
1217
- - If asked to do something, print a concise summary of what you've done as confirmation.
1218
- - If asked a question, respond in a friendly, conversational way. Use programmatically-generated and natural language responses as appropriate.
1219
- - If you need clarification, return a SCRIPT that prints your question. In the next interaction, continue based on the user's response.
1220
- - Assume the user would like something concise. For example rather than printing a massive table, filter or summarize it to what's likely of interest.
1221
- - Actively clean up any temporary processes or files you use.
1222
- - When looking through files, use git as available to skip files, and skip hidden files (.env, .git, etc) by default.
1223
- - You can plot anything with matplotlib.
1224
- - ALWAYS Return your SCRIPT inside of a single pair of ``` delimiters. Only the console output of the first such SCRIPT is visible to the user, so make sure that it's complete and don't bother returning anything else.
1225
- """
1226
- chat_format.override('system_content', lambda: system_content)
1227
-
1228
- thread = ws.Thread(model, format=chat_format, sampler=DefaultSampling)
1229
-
1230
- while True:
1231
- prompt = input(">: ")
1232
- if prompt.lower() == "q":
1233
- break
1234
-
1235
- response = thread.send(prompt)
1236
-
1237
- # Process the response using RawDog
1238
- script_output = rawdog.main(response)
1239
-
1240
- if script_output:
1241
- print(script_output)
1242
-
1243
- ```
1244
-
1245
- ## GGUF
1124
+ ## GGUF
1246
1125
 
1247
1126
  Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
1248
1127
 
@@ -1281,21 +1160,22 @@ autollama.main(model_path, gguf_file)
1281
1160
  **Command Line Usage:**
1282
1161
 
1283
1162
  * **GGUF Conversion:**
1163
+
1284
1164
  ```bash
1285
1165
  python -m webscout.Extra.gguf -m "OEvortex/HelpingAI-Lite-1.5T" -u "your_username" -t "your_hf_token" -q "q4_k_m,q5_k_m"
1286
1166
  ```
1287
1167
 
1288
1168
  * **Autollama:**
1169
+
1289
1170
  ```bash
1290
1171
  python -m webscout.Extra.autollama -m "OEvortex/HelpingAI-Lite-1.5T" -g "HelpingAI-Lite-1.5T.q4_k_m.gguf"
1291
1172
  ```
1292
1173
 
1293
- **Note:**
1174
+ **Note:**
1294
1175
 
1295
1176
  * Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
1296
1177
  * The `model_path` in `autollama` is the Hugging Face model ID, and `gguf_file` is the GGUF file ID.
1297
1178
 
1298
-
1299
1179
  <div align="center">
1300
1180
  <!-- Replace `#` with your actual links -->
1301
1181
  <a href="https://t.me/official_helpingai"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
@@ -1306,13 +1186,13 @@ autollama.main(model_path, gguf_file)
1306
1186
 
1307
1187
  <div align="center">
1308
1188
  <!-- Replace `#` with your actual links -->
1309
- <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1189
+ <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1310
1190
  </div>
1311
1191
  <div align="center">
1312
- <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1192
+ <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1313
1193
  </div>
1314
1194
  <div align="center">
1315
- <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1195
+ <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1316
1196
  </div>
1317
1197
 
1318
1198
  ## 🤝 Contributing
@@ -1325,9 +1205,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1325
1205
  4. Push your branch to your forked repository.
1326
1206
  5. Submit a pull request to the main repository.
1327
1207
 
1328
-
1329
1208
  ## 🙏 Acknowledgments
1330
1209
 
1331
1210
  * All the amazing developers who have contributed to the project!
1332
1211
  * The open-source community for their support and inspiration.
1333
-