webscout 7.6__tar.gz → 7.7__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.
- {webscout-7.6/webscout.egg-info → webscout-7.7}/PKG-INFO +33 -22
- {webscout-7.6 → webscout-7.7}/README.md +32 -21
- {webscout-7.6 → webscout-7.7}/webscout/Extra/autocoder/__init__.py +9 -9
- {webscout-7.6 → webscout-7.7}/webscout/Extra/autocoder/autocoder_utiles.py +193 -195
- {webscout-7.6 → webscout-7.7}/webscout/Extra/autocoder/rawdog.py +789 -649
- {webscout-7.6 → webscout-7.7}/webscout/Extra/gguf.py +54 -24
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AISEARCH/ISou.py +0 -21
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AllenAI.py +4 -21
- webscout-7.7/webscout/Provider/ChatGPTClone.py +226 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Glider.py +8 -4
- webscout-7.7/webscout/Provider/Hunyuan.py +272 -0
- webscout-7.7/webscout/Provider/LambdaChat.py +391 -0
- webscout-7.7/webscout/Provider/OLLAMA.py +396 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +18 -45
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +34 -46
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/artbit/async_artbit.py +3 -32
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/artbit/sync_artbit.py +3 -31
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/fastflux/async_fastflux.py +6 -2
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/fastflux/sync_fastflux.py +7 -2
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/piclumen/__init__.py +22 -22
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/piclumen/sync_piclumen.py +232 -232
- webscout-7.7/webscout/Provider/WebSim.py +227 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/__init__.py +12 -1
- {webscout-7.6 → webscout-7.7}/webscout/Provider/flowith.py +13 -2
- webscout-7.7/webscout/Provider/labyrinth.py +239 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/learnfastai.py +28 -15
- webscout-7.7/webscout/Provider/sonus.py +208 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/typegpt.py +1 -1
- webscout-7.7/webscout/Provider/uncovr.py +297 -0
- {webscout-7.6 → webscout-7.7}/webscout/cli.py +49 -0
- {webscout-7.6 → webscout-7.7}/webscout/litagent/agent.py +14 -9
- {webscout-7.6 → webscout-7.7}/webscout/version.py +1 -1
- {webscout-7.6 → webscout-7.7/webscout.egg-info}/PKG-INFO +33 -22
- {webscout-7.6 → webscout-7.7}/webscout.egg-info/SOURCES.txt +7 -0
- webscout-7.6/webscout/Provider/OLLAMA.py +0 -172
- {webscout-7.6 → webscout-7.7}/LICENSE.md +0 -0
- {webscout-7.6 → webscout-7.7}/setup.cfg +0 -0
- {webscout-7.6 → webscout-7.7}/setup.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/AIauto.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/AIbase.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/AIutel.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Bard.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/DWEBS.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/weather.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/LLM.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/core/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/core/level.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/core/logger.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/handlers/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/handlers/console.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/handlers/file.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/handlers/network.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/styles/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/styles/colors.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/styles/formats.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/styles/text.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/utils/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/utils/detectors.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Litlogger/utils/formatters.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AI21.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Andi.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/C4ai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/ChatGPTES.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/ChatGPTGratis.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Chatify.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Cloudflare.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Cohere.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/DARKAI.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/DeepSeek.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Deepinfra.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/EDITEE.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/ElectronHub.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Free2GPT.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/GPTWeb.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Gemini.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/GithubChat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Groq.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/HeckAI.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/HuggingFaceChat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Jadve.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Koboldai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Llama.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Llama3.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Marcus.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Netwrck.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Openai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/PI.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Phind.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/PizzaGPT.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/QwenLM.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Reka.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/artbit/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/talkai/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TeachAnything.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TextPollinationsAI.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/TwoAI.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Venice.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/WiseCat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/Youchat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/ai4chat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/aimathgpt.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/akashgpt.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/askmyai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/bagoodex.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/cerebras.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/chatglm.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/cleeai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/copilot.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/elmo.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/freeaichat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/gaurish.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/geminiapi.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/geminiprorealtime.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/granite.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/hermes.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/julius.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/koala.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/lepton.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/llama3mitril.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/llamatutor.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/llmchat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/meta.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/multichat.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/promptrefine.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/talkai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/turboseek.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/tutorai.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/x0gpt.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/Provider/yep.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/__main__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/conversation.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/exceptions.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/litagent/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/litagent/constants.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/litprinter/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/litprinter/colors.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/models.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/optimizers.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/prompt_manager.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/crawler.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/scout.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/search_result.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/text_utils.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/core.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/element.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/scout/utils.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/swiftcli/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/tempid.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/update_checker.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/utils.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/webscout_search.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/webscout_search_async.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/yep_search.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/zeroart/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/zeroart/base.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/zeroart/effects.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout/zeroart/fonts.py +0 -0
- {webscout-7.6 → webscout-7.7}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-7.6 → webscout-7.7}/webscout.egg-info/entry_points.txt +0 -0
- {webscout-7.6 → webscout-7.7}/webscout.egg-info/requires.txt +0 -0
- {webscout-7.6 → webscout-7.7}/webscout.egg-info/top_level.txt +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/__init__.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/classifier.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/keywords.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/language.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/ner.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/normalizer.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/processor.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/sentiment.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/stemmer.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/tagger.py +0 -0
- {webscout-7.6 → webscout-7.7}/webstoken/tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.7
|
|
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
|
|
@@ -27,18 +27,24 @@ Description-Content-Type: text/markdown
|
|
|
27
27
|
Provides-Extra: dev
|
|
28
28
|
License-File: LICENSE.md
|
|
29
29
|
|
|
30
|
-
[](https://t.me/PyscoutAI)
|
|
31
|
-
[](https://www.instagram.com/oevortex/)
|
|
32
|
-
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
33
|
-
[](https://buymeacoffee.com/oevortex)
|
|
34
|
-
|
|
35
30
|
<div align="center">
|
|
36
|
-
|
|
37
|
-
<a href="https://
|
|
38
|
-
<a href="https://
|
|
31
|
+
<!-- Replace `#` with your actual links -->
|
|
32
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
33
|
+
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
34
|
+
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
35
|
+
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
39
36
|
</div>
|
|
40
37
|
|
|
41
|
-
|
|
38
|
+
<div align="center">
|
|
39
|
+
<!-- Replace `#` with your actual links -->
|
|
40
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
41
|
+
</div>
|
|
42
|
+
<div align="center">
|
|
43
|
+
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
44
|
+
</div>
|
|
45
|
+
<div align="center">
|
|
46
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
47
|
+
</div>
|
|
42
48
|
|
|
43
49
|
<p align="center">
|
|
44
50
|
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
@@ -71,8 +77,10 @@ License-File: LICENSE.md
|
|
|
71
77
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
|
|
72
78
|
* **[Awesome Prompts (Act)](webscout/Extra/Act.md):** A curated collection of system prompts designed to transform Webscout into specialized personas, enhancing its ability to assist with specific tasks. Simply prefix your request with the act name or index number to leverage these tailored capabilities.
|
|
73
79
|
* **[Weather Tool kit](webscout/Extra/weather.md)** Webscout provides tools to retrieve weather information.
|
|
74
|
-
## ⚙️ Installation
|
|
75
80
|
* **[AIsearch](webscout/Provider/AISEARCH)** AI Search Providers offer powerful and flexible AI-powered search Search Engine
|
|
81
|
+
|
|
82
|
+
## ⚙️ Installation
|
|
83
|
+
|
|
76
84
|
```python
|
|
77
85
|
pip install -U webscout
|
|
78
86
|
```
|
|
@@ -93,7 +101,8 @@ python -m webscout --help
|
|
|
93
101
|
| python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
|
|
94
102
|
| python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
|
|
95
103
|
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
96
|
-
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
104
|
+
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
105
|
+
| python -m webscout weather -k Text | CLI function to get weather information for a location using Webscout. |
|
|
97
106
|
|
|
98
107
|
|
|
99
108
|
|
|
@@ -825,7 +834,7 @@ a = AndiSearch()
|
|
|
825
834
|
print(a.chat("HelpingAI-9B"))
|
|
826
835
|
```
|
|
827
836
|
|
|
828
|
-
### `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`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
|
|
837
|
+
### `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`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`, `SonusAI`, `UncovrAI`, `LabyrinthAI`, `WebSim`, `LambdaChat`, `ChatGPTClone`
|
|
829
838
|
|
|
830
839
|
Code is similar to other providers.
|
|
831
840
|
|
|
@@ -856,7 +865,7 @@ Webscout provides tools to convert and quantize Hugging Face models into the GGU
|
|
|
856
865
|
**Example:**
|
|
857
866
|
|
|
858
867
|
```python
|
|
859
|
-
from webscout.Extra import
|
|
868
|
+
from webscout.Extra.gguf import ModelConverter
|
|
860
869
|
"""
|
|
861
870
|
Valid quantization methods:
|
|
862
871
|
"q2_k", "q3_k_l", "q3_k_m", "q3_k_s",
|
|
@@ -864,12 +873,14 @@ Valid quantization methods:
|
|
|
864
873
|
"q5_0", "q5_1", "q5_k_m", "q5_k_s",
|
|
865
874
|
"q6_k", "q8_0"
|
|
866
875
|
"""
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
quantization_methods="q4_k_m" # Optional, adjust quantization methods
|
|
876
|
+
# Create a converter instance
|
|
877
|
+
converter = ModelConverter(
|
|
878
|
+
model_id="prithivMLmods/QWQ-500M",
|
|
879
|
+
quantization_methods="q2_k"
|
|
872
880
|
)
|
|
881
|
+
|
|
882
|
+
# Run the conversion
|
|
883
|
+
converter.convert()
|
|
873
884
|
```
|
|
874
885
|
|
|
875
886
|
|
|
@@ -878,10 +889,10 @@ gguf.convert(
|
|
|
878
889
|
* **GGUF Conversion:**
|
|
879
890
|
|
|
880
891
|
```bash
|
|
881
|
-
|
|
882
|
-
```
|
|
892
|
+
python -m webscout.Extra.gguf convert -m "prithivMLmods/QWQ-500M" -q "q2_k"
|
|
883
893
|
```
|
|
884
894
|
|
|
895
|
+
|
|
885
896
|
**Note:**
|
|
886
897
|
|
|
887
898
|
* Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
|
|
@@ -889,7 +900,7 @@ gguf.convert(
|
|
|
889
900
|
|
|
890
901
|
<div align="center">
|
|
891
902
|
<!-- Replace `#` with your actual links -->
|
|
892
|
-
<a href="https://t.me/
|
|
903
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
893
904
|
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
894
905
|
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
895
906
|
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
[](https://t.me/PyscoutAI)
|
|
2
|
-
[](https://www.instagram.com/oevortex/)
|
|
3
|
-
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
4
|
-
[](https://buymeacoffee.com/oevortex)
|
|
5
|
-
|
|
6
1
|
<div align="center">
|
|
7
|
-
|
|
8
|
-
<a href="https://
|
|
9
|
-
<a href="https://
|
|
2
|
+
<!-- Replace `#` with your actual links -->
|
|
3
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
4
|
+
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
5
|
+
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
6
|
+
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
10
7
|
</div>
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
<div align="center">
|
|
10
|
+
<!-- Replace `#` with your actual links -->
|
|
11
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
12
|
+
</div>
|
|
13
|
+
<div align="center">
|
|
14
|
+
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
15
|
+
</div>
|
|
16
|
+
<div align="center">
|
|
17
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
18
|
+
</div>
|
|
13
19
|
|
|
14
20
|
<p align="center">
|
|
15
21
|
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
@@ -42,8 +48,10 @@
|
|
|
42
48
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
|
|
43
49
|
* **[Awesome Prompts (Act)](webscout/Extra/Act.md):** A curated collection of system prompts designed to transform Webscout into specialized personas, enhancing its ability to assist with specific tasks. Simply prefix your request with the act name or index number to leverage these tailored capabilities.
|
|
44
50
|
* **[Weather Tool kit](webscout/Extra/weather.md)** Webscout provides tools to retrieve weather information.
|
|
45
|
-
## ⚙️ Installation
|
|
46
51
|
* **[AIsearch](webscout/Provider/AISEARCH)** AI Search Providers offer powerful and flexible AI-powered search Search Engine
|
|
52
|
+
|
|
53
|
+
## ⚙️ Installation
|
|
54
|
+
|
|
47
55
|
```python
|
|
48
56
|
pip install -U webscout
|
|
49
57
|
```
|
|
@@ -64,7 +72,8 @@ python -m webscout --help
|
|
|
64
72
|
| python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
|
|
65
73
|
| python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
|
|
66
74
|
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
67
|
-
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
75
|
+
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
76
|
+
| python -m webscout weather -k Text | CLI function to get weather information for a location using Webscout. |
|
|
68
77
|
|
|
69
78
|
|
|
70
79
|
|
|
@@ -796,7 +805,7 @@ a = AndiSearch()
|
|
|
796
805
|
print(a.chat("HelpingAI-9B"))
|
|
797
806
|
```
|
|
798
807
|
|
|
799
|
-
### `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`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
|
|
808
|
+
### `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`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`, `SonusAI`, `UncovrAI`, `LabyrinthAI`, `WebSim`, `LambdaChat`, `ChatGPTClone`
|
|
800
809
|
|
|
801
810
|
Code is similar to other providers.
|
|
802
811
|
|
|
@@ -827,7 +836,7 @@ Webscout provides tools to convert and quantize Hugging Face models into the GGU
|
|
|
827
836
|
**Example:**
|
|
828
837
|
|
|
829
838
|
```python
|
|
830
|
-
from webscout.Extra import
|
|
839
|
+
from webscout.Extra.gguf import ModelConverter
|
|
831
840
|
"""
|
|
832
841
|
Valid quantization methods:
|
|
833
842
|
"q2_k", "q3_k_l", "q3_k_m", "q3_k_s",
|
|
@@ -835,12 +844,14 @@ Valid quantization methods:
|
|
|
835
844
|
"q5_0", "q5_1", "q5_k_m", "q5_k_s",
|
|
836
845
|
"q6_k", "q8_0"
|
|
837
846
|
"""
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
quantization_methods="q4_k_m" # Optional, adjust quantization methods
|
|
847
|
+
# Create a converter instance
|
|
848
|
+
converter = ModelConverter(
|
|
849
|
+
model_id="prithivMLmods/QWQ-500M",
|
|
850
|
+
quantization_methods="q2_k"
|
|
843
851
|
)
|
|
852
|
+
|
|
853
|
+
# Run the conversion
|
|
854
|
+
converter.convert()
|
|
844
855
|
```
|
|
845
856
|
|
|
846
857
|
|
|
@@ -849,10 +860,10 @@ gguf.convert(
|
|
|
849
860
|
* **GGUF Conversion:**
|
|
850
861
|
|
|
851
862
|
```bash
|
|
852
|
-
|
|
853
|
-
```
|
|
863
|
+
python -m webscout.Extra.gguf convert -m "prithivMLmods/QWQ-500M" -q "q2_k"
|
|
854
864
|
```
|
|
855
865
|
|
|
866
|
+
|
|
856
867
|
**Note:**
|
|
857
868
|
|
|
858
869
|
* Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
|
|
@@ -860,7 +871,7 @@ gguf.convert(
|
|
|
860
871
|
|
|
861
872
|
<div align="center">
|
|
862
873
|
<!-- Replace `#` with your actual links -->
|
|
863
|
-
<a href="https://t.me/
|
|
874
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
864
875
|
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
865
876
|
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
866
877
|
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
"""
|
|
2
|
-
AutoCoder Module - Part of Webscout
|
|
3
|
-
Provides automated code generation and manipulation capabilities.
|
|
4
|
-
"""
|
|
5
|
-
|
|
6
|
-
from .rawdog import *
|
|
7
|
-
from .autocoder_utiles import *
|
|
8
|
-
|
|
9
|
-
# __all__ = [] # Add your public module names here
|
|
1
|
+
"""
|
|
2
|
+
AutoCoder Module - Part of Webscout
|
|
3
|
+
Provides automated code generation and manipulation capabilities.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from .rawdog import *
|
|
7
|
+
from .autocoder_utiles import *
|
|
8
|
+
|
|
9
|
+
# __all__ = [] # Add your public module names here
|