webscout 8.2.4__tar.gz → 8.2.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.
- {webscout-8.2.4 → webscout-8.2.5}/PKG-INFO +166 -45
- {webscout-8.2.4 → webscout-8.2.5}/README.md +165 -35
- {webscout-8.2.4 → webscout-8.2.5}/setup.py +1 -13
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/gguf.py +2 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/scira_search.py +2 -5
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Aitopia.py +75 -51
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AllenAI.py +64 -67
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ChatGPTClone.py +33 -34
- webscout-8.2.5/webscout/Provider/ChatSandbox.py +342 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Cloudflare.py +79 -32
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Deepinfra.py +69 -56
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ElectronHub.py +48 -39
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ExaChat.py +36 -20
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/GPTWeb.py +24 -18
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/GithubChat.py +52 -49
- webscout-8.2.5/webscout/Provider/GizAI.py +283 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Glider.py +39 -28
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Groq.py +48 -20
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/HeckAI.py +18 -36
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Jadve.py +30 -37
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/LambdaChat.py +36 -59
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/MCPCore.py +18 -21
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Marcus.py +23 -14
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Netwrck.py +35 -26
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/__init__.py +1 -1
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/exachat.py +4 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/scirachat.py +2 -4
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/textpollinations.py +20 -22
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/toolbaz.py +1 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/PI.py +22 -13
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/StandardInput.py +42 -30
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TeachAnything.py +16 -7
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TextPollinationsAI.py +78 -76
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TwoAI.py +120 -88
- webscout-8.2.5/webscout/Provider/TypliAI.py +305 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Venice.py +24 -22
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/VercelAI.py +31 -12
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/__init__.py +7 -7
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/asksteve.py +53 -44
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/cerebras.py +77 -31
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/chatglm.py +47 -37
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/elmo.py +38 -32
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/granite.py +24 -21
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/hermes.py +27 -20
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/learnfastai.py +25 -20
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/llmchatco.py +48 -78
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/multichat.py +13 -3
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/scira_chat.py +49 -30
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/scnet.py +23 -20
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/searchchat.py +16 -24
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/sonus.py +37 -39
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/toolbaz.py +24 -46
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/turboseek.py +37 -41
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/typefully.py +30 -22
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/typegpt.py +47 -51
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/uncovr.py +46 -40
- {webscout-8.2.4 → webscout-8.2.5}/webscout/cli.py +256 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/conversation.py +0 -2
- {webscout-8.2.4 → webscout-8.2.5}/webscout/exceptions.py +3 -0
- webscout-8.2.5/webscout/version.py +2 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout.egg-info/PKG-INFO +166 -45
- {webscout-8.2.4 → webscout-8.2.5}/webscout.egg-info/SOURCES.txt +3 -16
- webscout-8.2.5/webscout.egg-info/entry_points.txt +3 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout.egg-info/requires.txt +0 -10
- {webscout-8.2.4 → webscout-8.2.5}/webscout.egg-info/top_level.txt +0 -1
- webscout-8.2.4/inferno/__init__.py +0 -6
- webscout-8.2.4/inferno/__main__.py +0 -9
- webscout-8.2.4/inferno/cli.py +0 -6
- webscout-8.2.4/inferno/lol.py +0 -589
- webscout-8.2.4/webscout/Local/__init__.py +0 -12
- webscout-8.2.4/webscout/Local/__main__.py +0 -9
- webscout-8.2.4/webscout/Local/api.py +0 -576
- webscout-8.2.4/webscout/Local/cli.py +0 -516
- webscout-8.2.4/webscout/Local/config.py +0 -75
- webscout-8.2.4/webscout/Local/llm.py +0 -287
- webscout-8.2.4/webscout/Local/model_manager.py +0 -253
- webscout-8.2.4/webscout/Local/server.py +0 -721
- webscout-8.2.4/webscout/Local/utils.py +0 -93
- webscout-8.2.4/webscout/Provider/Chatify.py +0 -175
- webscout-8.2.4/webscout/Provider/askmyai.py +0 -158
- webscout-8.2.4/webscout/Provider/gaurish.py +0 -244
- webscout-8.2.4/webscout/version.py +0 -2
- webscout-8.2.4/webscout.egg-info/entry_points.txt +0 -5
- {webscout-8.2.4 → webscout-8.2.5}/LICENSE.md +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/setup.cfg +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/AIauto.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/AIbase.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/AIutel.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Bard.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/DWEBS.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/GitToolkit/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/autocoder/autocoder.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/async_utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/base.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/cli.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/emailnator.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/mail_tm.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/weather.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/LLM.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/core/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/core/level.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/core/logger.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/handlers/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/handlers/console.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/handlers/file.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/handlers/network.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/styles/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/styles/colors.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/styles/formats.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/styles/text.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/utils/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/utils/detectors.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Litlogger/utils/formatters.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AI21.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/ISou.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/hika_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/iask_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/monica_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Andi.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ChatGPTGratis.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Cohere.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ExaAI.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Free2GPT.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Gemini.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/HuggingFaceChat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Hunyuan.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Koboldai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Llama3.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/ai4chat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/base.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/c4ai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/chatgpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/deepinfra.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/e2b.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/exaai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/freeaichat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/glider.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/groq.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/heckai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/llmchatco.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/mcpcore.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/multichat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/netwrck.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/opkfc.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/sonus.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/standardinput.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/typegpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/uncovrAI.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/venice.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/wisecat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/writecream.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/x0gpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OPENAI/yep.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/OpenGPT.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Openai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/PizzaGPT.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/QwenLM.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Reka.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/artbit/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/async_fastflux.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/talkai/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/base.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/WiseCat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Writecream.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/WritingMate.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/Youchat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/ai4chat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/aimathgpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/akashgpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/bagoodex.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/cleeai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/copilot.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/freeaichat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/geminiapi.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/geminiprorealtime.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/julius.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/koala.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/llama3mitril.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/llmchat.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/meta.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/promptrefine.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/talkai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/tutorai.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/x0gpt.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/Provider/yep.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/__main__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/litagent/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/litagent/agent.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/litagent/constants.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/litprinter/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/models.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/optimizers.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/prompt_manager.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/crawler.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/scout.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/search_result.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/text_utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/core.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/element.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/scout/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/swiftcli/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/tempid.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/update_checker.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/utils.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/webscout_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/webscout_search_async.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/yep_search.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/zeroart/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/zeroart/base.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/zeroart/effects.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout/zeroart/fonts.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/__init__.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/classifier.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/keywords.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/language.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/ner.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/normalizer.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/processor.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/sentiment.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/stemmer.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/tagger.py +0 -0
- {webscout-8.2.4 → webscout-8.2.5}/webstoken/tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 8.2.
|
|
3
|
+
Version: 8.2.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
|
|
@@ -68,15 +68,6 @@ Requires-Dist: aiohttp
|
|
|
68
68
|
Provides-Extra: dev
|
|
69
69
|
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
70
70
|
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
71
|
-
Provides-Extra: local
|
|
72
|
-
Requires-Dist: llama-cpp-python; extra == "local"
|
|
73
|
-
Requires-Dist: fastapi; extra == "local"
|
|
74
|
-
Requires-Dist: uvicorn; extra == "local"
|
|
75
|
-
Requires-Dist: rich; extra == "local"
|
|
76
|
-
Requires-Dist: typer; extra == "local"
|
|
77
|
-
Requires-Dist: huggingface_hub; extra == "local"
|
|
78
|
-
Requires-Dist: pydantic; extra == "local"
|
|
79
|
-
Requires-Dist: requests; extra == "local"
|
|
80
71
|
Dynamic: author
|
|
81
72
|
Dynamic: author-email
|
|
82
73
|
Dynamic: classifier
|
|
@@ -113,11 +104,29 @@ Dynamic: summary
|
|
|
113
104
|
</p>
|
|
114
105
|
</div>
|
|
115
106
|
|
|
107
|
+
<hr/>
|
|
108
|
+
|
|
109
|
+
## 📋 Table of Contents
|
|
110
|
+
|
|
111
|
+
- [🌟 Key Features](#-features)
|
|
112
|
+
- [⚙️ Installation](#️-installation)
|
|
113
|
+
- [🖥️ Command Line Interface](#️-command-line-interface)
|
|
114
|
+
- [🔍 Search Engines](#-search-engines)
|
|
115
|
+
- [🦆 DuckDuckGo Search](#-duckduckgo-search-with-webs-and-asyncwebs)
|
|
116
|
+
- [💻 WEBS API Reference](#-webs-api-reference)
|
|
117
|
+
- [🤖 AI Models and Voices](#-ai-models-and-voices)
|
|
118
|
+
- [💬 AI Chat Providers](#-ai-chat-providers)
|
|
119
|
+
- [👨💻 Advanced AI Interfaces](#-advanced-ai-interfaces)
|
|
120
|
+
- [🤝 Contributing](#-contributing)
|
|
121
|
+
- [🙏 Acknowledgments](#-acknowledgments)
|
|
122
|
+
|
|
123
|
+
<hr/>
|
|
124
|
+
|
|
116
125
|
> [!IMPORTANT]
|
|
117
|
-
> Webscout supports three types of compatibility
|
|
126
|
+
> **Webscout supports three types of compatibility:**
|
|
118
127
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
119
128
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
120
|
-
> - **Local LLM Compatibility:** Run local models with [Inferno](
|
|
129
|
+
> - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
|
|
121
130
|
>
|
|
122
131
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
|
|
123
132
|
|
|
@@ -136,36 +145,59 @@ Dynamic: summary
|
|
|
136
145
|
</p>
|
|
137
146
|
</div>
|
|
138
147
|
|
|
148
|
+
<hr/>
|
|
139
149
|
|
|
140
150
|
## 🚀 Features
|
|
141
151
|
|
|
142
|
-
|
|
152
|
+
<details open>
|
|
153
|
+
<summary><b>Search & AI</b></summary>
|
|
154
|
+
<p>
|
|
155
|
+
|
|
143
156
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
|
|
144
157
|
* **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
145
158
|
* **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
146
159
|
* **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
147
|
-
* **[Local LLMs with Inferno](
|
|
160
|
+
* **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
|
|
148
161
|
* **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
162
|
+
</p>
|
|
163
|
+
</details>
|
|
164
|
+
|
|
165
|
+
<details open>
|
|
166
|
+
<summary><b>Media & Content Tools</b></summary>
|
|
167
|
+
<p>
|
|
149
168
|
|
|
150
|
-
### Media & Content Tools
|
|
151
169
|
* **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
|
|
152
170
|
* **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
|
|
153
171
|
* **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
154
172
|
* **[Weather Tools](webscout/Extra/weather.md):** Retrieve detailed weather information for any location
|
|
173
|
+
</p>
|
|
174
|
+
</details>
|
|
175
|
+
|
|
176
|
+
<details open>
|
|
177
|
+
<summary><b>Developer Tools</b></summary>
|
|
178
|
+
<p>
|
|
155
179
|
|
|
156
|
-
### Developer Tools
|
|
157
180
|
* **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
|
|
158
181
|
* **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
|
|
159
182
|
* **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
|
|
160
183
|
* **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
|
|
161
184
|
* **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
162
185
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
163
|
-
* **[Inferno](
|
|
164
|
-
* **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
|
|
186
|
+
* **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
|
|
187
|
+
* **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
|
|
188
|
+
</p>
|
|
189
|
+
</details>
|
|
190
|
+
|
|
191
|
+
<details open>
|
|
192
|
+
<summary><b>Privacy & Utilities</b></summary>
|
|
193
|
+
<p>
|
|
165
194
|
|
|
166
|
-
### Privacy & Utilities
|
|
167
195
|
* **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
|
|
168
196
|
* **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
|
|
197
|
+
</p>
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<hr/>
|
|
169
201
|
|
|
170
202
|
## ⚙️ Installation
|
|
171
203
|
|
|
@@ -174,6 +206,9 @@ Install Webscout using pip:
|
|
|
174
206
|
```bash
|
|
175
207
|
pip install -U webscout
|
|
176
208
|
```
|
|
209
|
+
</div>
|
|
210
|
+
|
|
211
|
+
<hr/>
|
|
177
212
|
|
|
178
213
|
## 🖥️ Command Line Interface
|
|
179
214
|
|
|
@@ -183,7 +218,9 @@ Webscout provides a powerful command-line interface for quick access to its feat
|
|
|
183
218
|
python -m webscout --help
|
|
184
219
|
```
|
|
185
220
|
|
|
186
|
-
|
|
221
|
+
<details open>
|
|
222
|
+
<summary><b>Web Search Commands</b></summary>
|
|
223
|
+
<p>
|
|
187
224
|
|
|
188
225
|
| Command | Description |
|
|
189
226
|
|---------|-------------|
|
|
@@ -198,26 +235,46 @@ python -m webscout --help
|
|
|
198
235
|
| `python -m webscout version` | Display the current version |
|
|
199
236
|
| `python -m webscout videos -k "query"` | Search for videos |
|
|
200
237
|
| `python -m webscout weather -l "location"` | Get weather information |
|
|
238
|
+
| `python -m webscout google_text -k "query"` | Perform a text search using Google |
|
|
239
|
+
| `python -m webscout google_news -k "query"` | Search for news using Google |
|
|
240
|
+
| `python -m webscout google_suggestions -q "query"` | Get search suggestions from Google |
|
|
241
|
+
| `python -m webscout yep_text -k "query"` | Perform a text search using Yep |
|
|
242
|
+
| `python -m webscout yep_images -k "query"` | Search for images using Yep |
|
|
243
|
+
| `python -m webscout yep_suggestions -q "query"` | Get search suggestions from Yep |
|
|
244
|
+
</p>
|
|
245
|
+
</details>
|
|
201
246
|
|
|
202
|
-
|
|
247
|
+
<details open>
|
|
248
|
+
<summary><b>Inferno LLM Commands</b></summary>
|
|
249
|
+
<p>
|
|
203
250
|
|
|
204
|
-
Inferno
|
|
251
|
+
Inferno is now a standalone package. Install it separately with:
|
|
205
252
|
|
|
206
253
|
```bash
|
|
207
|
-
|
|
254
|
+
pip install inferno-llm
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
After installation, you can use its CLI for managing and using local LLMs:
|
|
258
|
+
|
|
259
|
+
```bash
|
|
260
|
+
inferno --help
|
|
208
261
|
```
|
|
209
262
|
|
|
210
263
|
| Command | Description |
|
|
211
264
|
|---------|-------------|
|
|
212
|
-
| `
|
|
213
|
-
| `
|
|
214
|
-
| `
|
|
215
|
-
| `
|
|
216
|
-
| `
|
|
217
|
-
| `
|
|
265
|
+
| `inferno pull <model>` | Download a model from Hugging Face |
|
|
266
|
+
| `inferno list` | List downloaded models |
|
|
267
|
+
| `inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
268
|
+
| `inferno run <model>` | Chat with a model interactively |
|
|
269
|
+
| `inferno remove <model>` | Remove a downloaded model |
|
|
270
|
+
| `inferno version` | Show version information |
|
|
271
|
+
|
|
272
|
+
For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
|
|
273
|
+
</p>
|
|
274
|
+
</details>
|
|
218
275
|
|
|
219
276
|
> [!NOTE]
|
|
220
|
-
> Hardware requirements for running models
|
|
277
|
+
> **Hardware requirements for running models with Inferno:**
|
|
221
278
|
> - Around 2 GB of RAM for 1B models
|
|
222
279
|
> - Around 4 GB of RAM for 3B models
|
|
223
280
|
> - At least 8 GB of RAM for 7B models
|
|
@@ -225,7 +282,7 @@ python -m inferno --help
|
|
|
225
282
|
> - 32 GB of RAM for 33B models
|
|
226
283
|
> - GPU acceleration is recommended for better performance
|
|
227
284
|
|
|
228
|
-
|
|
285
|
+
<hr/>
|
|
229
286
|
|
|
230
287
|
## 🔍 Search Engines
|
|
231
288
|
|
|
@@ -303,11 +360,15 @@ from webscout import search
|
|
|
303
360
|
results = search("Python programming", num_results=5)
|
|
304
361
|
```
|
|
305
362
|
|
|
363
|
+
<hr/>
|
|
364
|
+
|
|
306
365
|
## 🦆 DuckDuckGo Search with WEBS and AsyncWEBS
|
|
307
366
|
|
|
308
367
|
Webscout provides powerful interfaces to DuckDuckGo's search capabilities through the `WEBS` and `AsyncWEBS` classes.
|
|
309
368
|
|
|
310
|
-
|
|
369
|
+
<details open>
|
|
370
|
+
<summary><b>Synchronous Usage with WEBS</b></summary>
|
|
371
|
+
<p>
|
|
311
372
|
|
|
312
373
|
```python
|
|
313
374
|
from webscout import WEBS
|
|
@@ -319,8 +380,12 @@ with WEBS() as webs:
|
|
|
319
380
|
for result in results:
|
|
320
381
|
print(f"Title: {result['title']}\nURL: {result['url']}")
|
|
321
382
|
```
|
|
383
|
+
</p>
|
|
384
|
+
</details>
|
|
322
385
|
|
|
323
|
-
|
|
386
|
+
<details open>
|
|
387
|
+
<summary><b>Asynchronous Usage with AsyncWEBS</b></summary>
|
|
388
|
+
<p>
|
|
324
389
|
|
|
325
390
|
```python
|
|
326
391
|
import asyncio
|
|
@@ -348,10 +413,14 @@ async def main():
|
|
|
348
413
|
# Run the async function
|
|
349
414
|
asyncio.run(main())
|
|
350
415
|
```
|
|
416
|
+
</p>
|
|
417
|
+
</details>
|
|
351
418
|
|
|
352
|
-
> [!
|
|
419
|
+
> [!TIP]
|
|
353
420
|
> Always use these classes with a context manager (`with` statement) to ensure proper resource management and cleanup.
|
|
354
421
|
|
|
422
|
+
<hr/>
|
|
423
|
+
|
|
355
424
|
## 💻 WEBS API Reference
|
|
356
425
|
|
|
357
426
|
The WEBS class provides comprehensive access to DuckDuckGo's search capabilities through a clean, intuitive API.
|
|
@@ -370,7 +439,9 @@ The WEBS class provides comprehensive access to DuckDuckGo's search capabilities
|
|
|
370
439
|
| `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
|
|
371
440
|
| `weather()` | Weather information | `webs.weather('london')` |
|
|
372
441
|
|
|
373
|
-
|
|
442
|
+
<details>
|
|
443
|
+
<summary><b>Example: Text Search</b></summary>
|
|
444
|
+
<p>
|
|
374
445
|
|
|
375
446
|
```python
|
|
376
447
|
from webscout import WEBS
|
|
@@ -389,8 +460,12 @@ with WEBS() as webs:
|
|
|
389
460
|
print(f"URL: {result['url']}")
|
|
390
461
|
print(f"Description: {result['body']}\n")
|
|
391
462
|
```
|
|
463
|
+
</p>
|
|
464
|
+
</details>
|
|
392
465
|
|
|
393
|
-
|
|
466
|
+
<details>
|
|
467
|
+
<summary><b>Example: News Search with Formatting</b></summary>
|
|
468
|
+
<p>
|
|
394
469
|
|
|
395
470
|
```python
|
|
396
471
|
from webscout import WEBS
|
|
@@ -428,8 +503,12 @@ def fetch_formatted_news(keywords, timelimit='d', max_results=20):
|
|
|
428
503
|
news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
|
|
429
504
|
print('\n'.join(news))
|
|
430
505
|
```
|
|
506
|
+
</p>
|
|
507
|
+
</details>
|
|
431
508
|
|
|
432
|
-
|
|
509
|
+
<details>
|
|
510
|
+
<summary><b>Example: Weather Information</b></summary>
|
|
511
|
+
<p>
|
|
433
512
|
|
|
434
513
|
```python
|
|
435
514
|
from webscout import WEBS
|
|
@@ -444,12 +523,18 @@ with WEBS() as webs:
|
|
|
444
523
|
print(f"Temperature: {weather.get('temperature', 'N/A')}")
|
|
445
524
|
print(f"Conditions: {weather.get('condition', 'N/A')}")
|
|
446
525
|
```
|
|
526
|
+
</p>
|
|
527
|
+
</details>
|
|
528
|
+
|
|
529
|
+
<hr/>
|
|
447
530
|
|
|
448
531
|
## 🤖 AI Models and Voices
|
|
449
532
|
|
|
450
533
|
Webscout provides easy access to a wide range of AI models and voice options.
|
|
451
534
|
|
|
452
|
-
|
|
535
|
+
<details open>
|
|
536
|
+
<summary><b>LLM Models</b></summary>
|
|
537
|
+
<p>
|
|
453
538
|
|
|
454
539
|
Access and manage Large Language Models with Webscout's model utilities.
|
|
455
540
|
|
|
@@ -477,8 +562,12 @@ if isinstance(available_models, list):
|
|
|
477
562
|
else:
|
|
478
563
|
print(f" {available_models}")
|
|
479
564
|
```
|
|
565
|
+
</p>
|
|
566
|
+
</details>
|
|
480
567
|
|
|
481
|
-
|
|
568
|
+
<details open>
|
|
569
|
+
<summary><b>TTS Voices</b></summary>
|
|
570
|
+
<p>
|
|
482
571
|
|
|
483
572
|
Access and manage Text-to-Speech voices across multiple providers.
|
|
484
573
|
|
|
@@ -506,6 +595,10 @@ if isinstance(available_voices, dict):
|
|
|
506
595
|
if len(available_voices) > 5:
|
|
507
596
|
print(f" ... and {len(available_voices) - 5} more")
|
|
508
597
|
```
|
|
598
|
+
</p>
|
|
599
|
+
</details>
|
|
600
|
+
|
|
601
|
+
<hr/>
|
|
509
602
|
|
|
510
603
|
## 💬 AI Chat Providers
|
|
511
604
|
|
|
@@ -513,6 +606,8 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
|
|
|
513
606
|
|
|
514
607
|
### Popular AI Providers
|
|
515
608
|
|
|
609
|
+
<div class="provider-table">
|
|
610
|
+
|
|
516
611
|
| Provider | Description | Key Features |
|
|
517
612
|
|----------|-------------|-------------|
|
|
518
613
|
| `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
|
|
@@ -528,7 +623,11 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
|
|
|
528
623
|
| `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
|
|
529
624
|
| `TypeGPT` | TypeChat models | Code generation focus |
|
|
530
625
|
|
|
531
|
-
|
|
626
|
+
</div>
|
|
627
|
+
|
|
628
|
+
<details>
|
|
629
|
+
<summary><b>Example: Using Duckchat</b></summary>
|
|
630
|
+
<p>
|
|
532
631
|
|
|
533
632
|
```python
|
|
534
633
|
from webscout import WEBS
|
|
@@ -541,8 +640,12 @@ with WEBS() as webs:
|
|
|
541
640
|
)
|
|
542
641
|
print(response)
|
|
543
642
|
```
|
|
643
|
+
</p>
|
|
644
|
+
</details>
|
|
544
645
|
|
|
545
|
-
|
|
646
|
+
<details>
|
|
647
|
+
<summary><b>Example: Using Meta AI</b></summary>
|
|
648
|
+
<p>
|
|
546
649
|
|
|
547
650
|
```python
|
|
548
651
|
from webscout import Meta
|
|
@@ -567,8 +670,12 @@ response = meta_ai.ask("Create an image of a futuristic city")
|
|
|
567
670
|
for media in response.get("media", []):
|
|
568
671
|
print(media["url"])
|
|
569
672
|
```
|
|
673
|
+
</p>
|
|
674
|
+
</details>
|
|
570
675
|
|
|
571
|
-
|
|
676
|
+
<details>
|
|
677
|
+
<summary><b>Example: GROQ with Tool Calling</b></summary>
|
|
678
|
+
<p>
|
|
572
679
|
|
|
573
680
|
```python
|
|
574
681
|
from webscout import GROQ, WEBS
|
|
@@ -643,10 +750,16 @@ print(response)
|
|
|
643
750
|
response = client.chat("Find information about quantum computing", tools=tools)
|
|
644
751
|
print(response)
|
|
645
752
|
```
|
|
753
|
+
</p>
|
|
754
|
+
</details>
|
|
755
|
+
|
|
756
|
+
<hr/>
|
|
646
757
|
|
|
647
758
|
## 👨💻 Advanced AI Interfaces
|
|
648
759
|
|
|
649
|
-
|
|
760
|
+
<details open>
|
|
761
|
+
<summary><b>Direct Model Access with LLM and VLM</b></summary>
|
|
762
|
+
<p>
|
|
650
763
|
|
|
651
764
|
Webscout provides direct interfaces to language and vision-language models through the `LLM` and `VLM` classes.
|
|
652
765
|
|
|
@@ -673,8 +786,12 @@ response = vlm.chat([
|
|
|
673
786
|
])
|
|
674
787
|
print(response)
|
|
675
788
|
```
|
|
789
|
+
</p>
|
|
790
|
+
</details>
|
|
676
791
|
|
|
677
|
-
|
|
792
|
+
<details open>
|
|
793
|
+
<summary><b>GGUF Model Conversion</b></summary>
|
|
794
|
+
<p>
|
|
678
795
|
|
|
679
796
|
Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for offline use.
|
|
680
797
|
|
|
@@ -716,6 +833,8 @@ converter.convert()
|
|
|
716
833
|
```bash
|
|
717
834
|
python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q "q4_k_m"
|
|
718
835
|
```
|
|
836
|
+
</p>
|
|
837
|
+
</details>
|
|
719
838
|
|
|
720
839
|
<div align="center">
|
|
721
840
|
<p>
|
|
@@ -724,6 +843,8 @@ python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q
|
|
|
724
843
|
</p>
|
|
725
844
|
</div>
|
|
726
845
|
|
|
846
|
+
<hr/>
|
|
847
|
+
|
|
727
848
|
## 🤝 Contributing
|
|
728
849
|
|
|
729
850
|
Contributions are welcome! If you'd like to contribute to Webscout, please follow these steps:
|
|
@@ -739,7 +860,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
739
860
|
* All the amazing developers who have contributed to the project
|
|
740
861
|
* The open-source community for their support and inspiration
|
|
741
862
|
|
|
742
|
-
|
|
863
|
+
<hr/>
|
|
743
864
|
|
|
744
865
|
<div align="center">
|
|
745
866
|
<p>Made with ❤️ by the Webscout team</p>
|