webscout 8.2.3__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.3 → webscout-8.2.5}/PKG-INFO +213 -39
- webscout-8.2.3/webscout.egg-info/PKG-INFO → webscout-8.2.5/README.md +165 -75
- {webscout-8.2.3 → webscout-8.2.5}/setup.py +1 -14
- webscout-8.2.5/webscout/AIutel.py +344 -0
- webscout-8.2.5/webscout/Bard.py +908 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/DWEBS.py +78 -35
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/gguf.py +2 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/base.py +1 -1
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/hika_search.py +4 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/scira_search.py +2 -5
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Aitopia.py +75 -51
- webscout-8.2.5/webscout/Provider/AllenAI.py +447 -0
- webscout-8.2.5/webscout/Provider/ChatGPTClone.py +237 -0
- webscout-8.2.5/webscout/Provider/ChatSandbox.py +342 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Cloudflare.py +79 -32
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Deepinfra.py +135 -94
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/ElectronHub.py +103 -39
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/ExaChat.py +36 -20
- webscout-8.2.5/webscout/Provider/GPTWeb.py +249 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/GithubChat.py +52 -49
- webscout-8.2.5/webscout/Provider/GizAI.py +283 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Glider.py +39 -28
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Groq.py +222 -91
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/HeckAI.py +93 -69
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/HuggingFaceChat.py +113 -106
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Hunyuan.py +94 -83
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Jadve.py +104 -79
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/LambdaChat.py +142 -123
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Llama3.py +94 -39
- webscout-8.2.5/webscout/Provider/MCPCore.py +315 -0
- webscout-8.2.5/webscout/Provider/Marcus.py +206 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Netwrck.py +94 -52
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/__init__.py +4 -1
- webscout-8.2.5/webscout/Provider/OPENAI/ai4chat.py +286 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/chatgptclone.py +35 -14
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/deepinfra.py +37 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/exachat.py +4 -0
- webscout-8.2.5/webscout/Provider/OPENAI/groq.py +354 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/heckai.py +6 -2
- webscout-8.2.5/webscout/Provider/OPENAI/mcpcore.py +376 -0
- webscout-8.2.5/webscout/Provider/OPENAI/multichat.py +368 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/netwrck.py +3 -1
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/scirachat.py +2 -4
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/textpollinations.py +20 -22
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/toolbaz.py +1 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OpenGPT.py +48 -38
- webscout-8.2.5/webscout/Provider/PI.py +429 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/PizzaGPT.py +66 -36
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/StandardInput.py +42 -30
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TeachAnything.py +95 -52
- webscout-8.2.5/webscout/Provider/TextPollinationsAI.py +306 -0
- webscout-8.2.5/webscout/Provider/TwoAI.py +280 -0
- webscout-8.2.5/webscout/Provider/TypliAI.py +305 -0
- webscout-8.2.5/webscout/Provider/Venice.py +258 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/VercelAI.py +33 -14
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/WiseCat.py +65 -28
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Writecream.py +37 -11
- webscout-8.2.5/webscout/Provider/WritingMate.py +269 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/__init__.py +9 -27
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/ai4chat.py +6 -7
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/asksteve.py +53 -44
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/cerebras.py +77 -31
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/chatglm.py +47 -37
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/copilot.py +0 -3
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/elmo.py +109 -60
- webscout-8.2.5/webscout/Provider/granite.py +235 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/hermes.py +95 -48
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/koala.py +1 -1
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/learnfastai.py +113 -54
- webscout-8.2.5/webscout/Provider/llama3mitril.py +215 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/llmchat.py +88 -46
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/llmchatco.py +110 -115
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/meta.py +41 -37
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/multichat.py +67 -28
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/scira_chat.py +49 -30
- webscout-8.2.5/webscout/Provider/scnet.py +240 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/searchchat.py +87 -88
- webscout-8.2.5/webscout/Provider/sonus.py +258 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/toolbaz.py +115 -82
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/turboseek.py +90 -43
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/tutorai.py +82 -64
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/typefully.py +85 -35
- webscout-8.2.5/webscout/Provider/typegpt.py +289 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/uncovr.py +132 -76
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/x0gpt.py +69 -26
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/yep.py +79 -66
- {webscout-8.2.3 → webscout-8.2.5}/webscout/cli.py +256 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/conversation.py +34 -22
- {webscout-8.2.3 → webscout-8.2.5}/webscout/exceptions.py +23 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/prompt_manager.py +56 -42
- webscout-8.2.5/webscout/version.py +2 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/webscout_search.py +65 -47
- {webscout-8.2.3 → webscout-8.2.5}/webscout/webscout_search_async.py +81 -126
- {webscout-8.2.3 → webscout-8.2.5}/webscout/yep_search.py +93 -43
- webscout-8.2.3/README.md → webscout-8.2.5/webscout.egg-info/PKG-INFO +249 -35
- {webscout-8.2.3 → webscout-8.2.5}/webscout.egg-info/SOURCES.txt +8 -24
- webscout-8.2.5/webscout.egg-info/entry_points.txt +3 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout.egg-info/requires.txt +0 -11
- {webscout-8.2.3 → webscout-8.2.5}/webscout.egg-info/top_level.txt +0 -1
- webscout-8.2.3/inferno/__init__.py +0 -6
- webscout-8.2.3/inferno/__main__.py +0 -9
- webscout-8.2.3/inferno/cli.py +0 -6
- webscout-8.2.3/webscout/AIutel.py +0 -132
- webscout-8.2.3/webscout/Bard.py +0 -535
- webscout-8.2.3/webscout/Local/__init__.py +0 -12
- webscout-8.2.3/webscout/Local/__main__.py +0 -9
- webscout-8.2.3/webscout/Local/api.py +0 -576
- webscout-8.2.3/webscout/Local/cli.py +0 -516
- webscout-8.2.3/webscout/Local/config.py +0 -75
- webscout-8.2.3/webscout/Local/llm.py +0 -287
- webscout-8.2.3/webscout/Local/model_manager.py +0 -253
- webscout-8.2.3/webscout/Local/server.py +0 -721
- webscout-8.2.3/webscout/Local/utils.py +0 -93
- webscout-8.2.3/webscout/Provider/AllenAI.py +0 -413
- webscout-8.2.3/webscout/Provider/C4ai.py +0 -432
- webscout-8.2.3/webscout/Provider/ChatGPTClone.py +0 -226
- webscout-8.2.3/webscout/Provider/ChatGPTES.py +0 -237
- webscout-8.2.3/webscout/Provider/Chatify.py +0 -175
- webscout-8.2.3/webscout/Provider/DeepSeek.py +0 -196
- webscout-8.2.3/webscout/Provider/GPTWeb.py +0 -193
- webscout-8.2.3/webscout/Provider/Llama.py +0 -200
- webscout-8.2.3/webscout/Provider/Marcus.py +0 -148
- webscout-8.2.3/webscout/Provider/PI.py +0 -344
- webscout-8.2.3/webscout/Provider/Phind.py +0 -535
- webscout-8.2.3/webscout/Provider/TextPollinationsAI.py +0 -246
- webscout-8.2.3/webscout/Provider/TwoAI.py +0 -199
- webscout-8.2.3/webscout/Provider/Venice.py +0 -219
- webscout-8.2.3/webscout/Provider/WebSim.py +0 -228
- webscout-8.2.3/webscout/Provider/WritingMate.py +0 -197
- webscout-8.2.3/webscout/Provider/askmyai.py +0 -158
- webscout-8.2.3/webscout/Provider/gaurish.py +0 -244
- webscout-8.2.3/webscout/Provider/granite.py +0 -187
- webscout-8.2.3/webscout/Provider/labyrinth.py +0 -340
- webscout-8.2.3/webscout/Provider/lepton.py +0 -194
- webscout-8.2.3/webscout/Provider/llama3mitril.py +0 -180
- webscout-8.2.3/webscout/Provider/llamatutor.py +0 -192
- webscout-8.2.3/webscout/Provider/scnet.py +0 -187
- webscout-8.2.3/webscout/Provider/sonus.py +0 -208
- webscout-8.2.3/webscout/Provider/typegpt.py +0 -232
- webscout-8.2.3/webscout/version.py +0 -2
- webscout-8.2.3/webscout.egg-info/entry_points.txt +0 -5
- {webscout-8.2.3 → webscout-8.2.5}/LICENSE.md +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/setup.cfg +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/AIauto.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/AIbase.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/GitToolkit/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/autocoder/autocoder.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/async_utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/cli.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/emailnator.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/mail_tm.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/weather.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/LLM.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/core/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/core/level.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/core/logger.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/handlers/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/handlers/console.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/handlers/file.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/handlers/network.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/styles/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/styles/colors.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/styles/formats.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/styles/text.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/utils/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/utils/detectors.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Litlogger/utils/formatters.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AI21.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/ISou.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/iask_search.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/monica_search.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Andi.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/ChatGPTGratis.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Cohere.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/ExaAI.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Free2GPT.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Gemini.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Koboldai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/base.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/c4ai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/chatgpt.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/e2b.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/exaai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/freeaichat.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/glider.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/llmchatco.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/opkfc.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/sonus.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/standardinput.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/typegpt.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/uncovrAI.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/venice.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/wisecat.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/writecream.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/x0gpt.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/OPENAI/yep.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Openai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/QwenLM.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Reka.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/artbit/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/async_fastflux.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/talkai/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/base.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/Youchat.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/aimathgpt.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/akashgpt.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/bagoodex.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/cleeai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/freeaichat.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/geminiapi.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/geminiprorealtime.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/julius.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/promptrefine.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/Provider/talkai.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/__main__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/litagent/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/litagent/agent.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/litagent/constants.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/litprinter/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/models.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/optimizers.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/crawler.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/scout.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/search_result.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/text_utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/core.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/element.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/scout/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/swiftcli/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/tempid.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/update_checker.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/utils.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/zeroart/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/zeroart/base.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/zeroart/effects.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout/zeroart/fonts.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/__init__.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/classifier.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/keywords.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/language.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/ner.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/normalizer.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/processor.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/sentiment.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/stemmer.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/tagger.py +0 -0
- {webscout-8.2.3 → webscout-8.2.5}/webstoken/tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
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
|
|
@@ -34,9 +34,53 @@ Classifier: Topic :: Communications
|
|
|
34
34
|
Classifier: Topic :: Utilities
|
|
35
35
|
Requires-Python: >=3.9
|
|
36
36
|
Description-Content-Type: text/markdown
|
|
37
|
-
Provides-Extra: dev
|
|
38
|
-
Provides-Extra: Local
|
|
39
37
|
License-File: LICENSE.md
|
|
38
|
+
Requires-Dist: setuptools
|
|
39
|
+
Requires-Dist: wheel
|
|
40
|
+
Requires-Dist: pip
|
|
41
|
+
Requires-Dist: nodriver
|
|
42
|
+
Requires-Dist: mistune
|
|
43
|
+
Requires-Dist: tenacity
|
|
44
|
+
Requires-Dist: curl_cffi
|
|
45
|
+
Requires-Dist: nest-asyncio
|
|
46
|
+
Requires-Dist: websocket-client
|
|
47
|
+
Requires-Dist: colorama
|
|
48
|
+
Requires-Dist: rich
|
|
49
|
+
Requires-Dist: markdownify
|
|
50
|
+
Requires-Dist: requests
|
|
51
|
+
Requires-Dist: google-generativeai
|
|
52
|
+
Requires-Dist: lxml>=5.2.2
|
|
53
|
+
Requires-Dist: termcolor
|
|
54
|
+
Requires-Dist: orjson
|
|
55
|
+
Requires-Dist: PyYAML
|
|
56
|
+
Requires-Dist: ollama
|
|
57
|
+
Requires-Dist: pillow
|
|
58
|
+
Requires-Dist: bson
|
|
59
|
+
Requires-Dist: cloudscraper
|
|
60
|
+
Requires-Dist: html5lib
|
|
61
|
+
Requires-Dist: aiofiles
|
|
62
|
+
Requires-Dist: openai
|
|
63
|
+
Requires-Dist: prompt-toolkit
|
|
64
|
+
Requires-Dist: pyreqwest_impersonate
|
|
65
|
+
Requires-Dist: gradio_client
|
|
66
|
+
Requires-Dist: psutil
|
|
67
|
+
Requires-Dist: aiohttp
|
|
68
|
+
Provides-Extra: dev
|
|
69
|
+
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
70
|
+
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
71
|
+
Dynamic: author
|
|
72
|
+
Dynamic: author-email
|
|
73
|
+
Dynamic: classifier
|
|
74
|
+
Dynamic: description
|
|
75
|
+
Dynamic: description-content-type
|
|
76
|
+
Dynamic: keywords
|
|
77
|
+
Dynamic: license
|
|
78
|
+
Dynamic: license-file
|
|
79
|
+
Dynamic: project-url
|
|
80
|
+
Dynamic: provides-extra
|
|
81
|
+
Dynamic: requires-dist
|
|
82
|
+
Dynamic: requires-python
|
|
83
|
+
Dynamic: summary
|
|
40
84
|
|
|
41
85
|
<div align="center">
|
|
42
86
|
<a href="https://github.com/OEvortex/Webscout">
|
|
@@ -60,11 +104,29 @@ License-File: LICENSE.md
|
|
|
60
104
|
</p>
|
|
61
105
|
</div>
|
|
62
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
|
+
|
|
63
125
|
> [!IMPORTANT]
|
|
64
|
-
> Webscout supports three types of compatibility
|
|
126
|
+
> **Webscout supports three types of compatibility:**
|
|
65
127
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
66
128
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
67
|
-
> - **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)
|
|
68
130
|
>
|
|
69
131
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
|
|
70
132
|
|
|
@@ -83,36 +145,59 @@ License-File: LICENSE.md
|
|
|
83
145
|
</p>
|
|
84
146
|
</div>
|
|
85
147
|
|
|
148
|
+
<hr/>
|
|
86
149
|
|
|
87
150
|
## 🚀 Features
|
|
88
151
|
|
|
89
|
-
|
|
152
|
+
<details open>
|
|
153
|
+
<summary><b>Search & AI</b></summary>
|
|
154
|
+
<p>
|
|
155
|
+
|
|
90
156
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
|
|
91
157
|
* **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
92
158
|
* **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
93
159
|
* **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
94
|
-
* **[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)
|
|
95
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>
|
|
96
168
|
|
|
97
|
-
### Media & Content Tools
|
|
98
169
|
* **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
|
|
99
170
|
* **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
|
|
100
171
|
* **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
101
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>
|
|
102
179
|
|
|
103
|
-
### Developer Tools
|
|
104
180
|
* **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
|
|
105
181
|
* **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
|
|
106
182
|
* **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
|
|
107
183
|
* **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
|
|
108
184
|
* **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
109
185
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
110
|
-
* **[Inferno](
|
|
111
|
-
* **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>
|
|
112
194
|
|
|
113
|
-
### Privacy & Utilities
|
|
114
195
|
* **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
|
|
115
196
|
* **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
|
|
197
|
+
</p>
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<hr/>
|
|
116
201
|
|
|
117
202
|
## ⚙️ Installation
|
|
118
203
|
|
|
@@ -121,6 +206,9 @@ Install Webscout using pip:
|
|
|
121
206
|
```bash
|
|
122
207
|
pip install -U webscout
|
|
123
208
|
```
|
|
209
|
+
</div>
|
|
210
|
+
|
|
211
|
+
<hr/>
|
|
124
212
|
|
|
125
213
|
## 🖥️ Command Line Interface
|
|
126
214
|
|
|
@@ -130,7 +218,9 @@ Webscout provides a powerful command-line interface for quick access to its feat
|
|
|
130
218
|
python -m webscout --help
|
|
131
219
|
```
|
|
132
220
|
|
|
133
|
-
|
|
221
|
+
<details open>
|
|
222
|
+
<summary><b>Web Search Commands</b></summary>
|
|
223
|
+
<p>
|
|
134
224
|
|
|
135
225
|
| Command | Description |
|
|
136
226
|
|---------|-------------|
|
|
@@ -145,26 +235,46 @@ python -m webscout --help
|
|
|
145
235
|
| `python -m webscout version` | Display the current version |
|
|
146
236
|
| `python -m webscout videos -k "query"` | Search for videos |
|
|
147
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>
|
|
148
246
|
|
|
149
|
-
|
|
247
|
+
<details open>
|
|
248
|
+
<summary><b>Inferno LLM Commands</b></summary>
|
|
249
|
+
<p>
|
|
150
250
|
|
|
151
|
-
Inferno
|
|
251
|
+
Inferno is now a standalone package. Install it separately with:
|
|
152
252
|
|
|
153
253
|
```bash
|
|
154
|
-
|
|
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
|
|
155
261
|
```
|
|
156
262
|
|
|
157
263
|
| Command | Description |
|
|
158
264
|
|---------|-------------|
|
|
159
|
-
| `
|
|
160
|
-
| `
|
|
161
|
-
| `
|
|
162
|
-
| `
|
|
163
|
-
| `
|
|
164
|
-
| `
|
|
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>
|
|
165
275
|
|
|
166
276
|
> [!NOTE]
|
|
167
|
-
> Hardware requirements for running models
|
|
277
|
+
> **Hardware requirements for running models with Inferno:**
|
|
168
278
|
> - Around 2 GB of RAM for 1B models
|
|
169
279
|
> - Around 4 GB of RAM for 3B models
|
|
170
280
|
> - At least 8 GB of RAM for 7B models
|
|
@@ -172,7 +282,7 @@ python -m inferno --help
|
|
|
172
282
|
> - 32 GB of RAM for 33B models
|
|
173
283
|
> - GPU acceleration is recommended for better performance
|
|
174
284
|
|
|
175
|
-
|
|
285
|
+
<hr/>
|
|
176
286
|
|
|
177
287
|
## 🔍 Search Engines
|
|
178
288
|
|
|
@@ -250,11 +360,15 @@ from webscout import search
|
|
|
250
360
|
results = search("Python programming", num_results=5)
|
|
251
361
|
```
|
|
252
362
|
|
|
363
|
+
<hr/>
|
|
364
|
+
|
|
253
365
|
## 🦆 DuckDuckGo Search with WEBS and AsyncWEBS
|
|
254
366
|
|
|
255
367
|
Webscout provides powerful interfaces to DuckDuckGo's search capabilities through the `WEBS` and `AsyncWEBS` classes.
|
|
256
368
|
|
|
257
|
-
|
|
369
|
+
<details open>
|
|
370
|
+
<summary><b>Synchronous Usage with WEBS</b></summary>
|
|
371
|
+
<p>
|
|
258
372
|
|
|
259
373
|
```python
|
|
260
374
|
from webscout import WEBS
|
|
@@ -266,8 +380,12 @@ with WEBS() as webs:
|
|
|
266
380
|
for result in results:
|
|
267
381
|
print(f"Title: {result['title']}\nURL: {result['url']}")
|
|
268
382
|
```
|
|
383
|
+
</p>
|
|
384
|
+
</details>
|
|
269
385
|
|
|
270
|
-
|
|
386
|
+
<details open>
|
|
387
|
+
<summary><b>Asynchronous Usage with AsyncWEBS</b></summary>
|
|
388
|
+
<p>
|
|
271
389
|
|
|
272
390
|
```python
|
|
273
391
|
import asyncio
|
|
@@ -295,10 +413,14 @@ async def main():
|
|
|
295
413
|
# Run the async function
|
|
296
414
|
asyncio.run(main())
|
|
297
415
|
```
|
|
416
|
+
</p>
|
|
417
|
+
</details>
|
|
298
418
|
|
|
299
|
-
> [!
|
|
419
|
+
> [!TIP]
|
|
300
420
|
> Always use these classes with a context manager (`with` statement) to ensure proper resource management and cleanup.
|
|
301
421
|
|
|
422
|
+
<hr/>
|
|
423
|
+
|
|
302
424
|
## 💻 WEBS API Reference
|
|
303
425
|
|
|
304
426
|
The WEBS class provides comprehensive access to DuckDuckGo's search capabilities through a clean, intuitive API.
|
|
@@ -317,7 +439,9 @@ The WEBS class provides comprehensive access to DuckDuckGo's search capabilities
|
|
|
317
439
|
| `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
|
|
318
440
|
| `weather()` | Weather information | `webs.weather('london')` |
|
|
319
441
|
|
|
320
|
-
|
|
442
|
+
<details>
|
|
443
|
+
<summary><b>Example: Text Search</b></summary>
|
|
444
|
+
<p>
|
|
321
445
|
|
|
322
446
|
```python
|
|
323
447
|
from webscout import WEBS
|
|
@@ -336,8 +460,12 @@ with WEBS() as webs:
|
|
|
336
460
|
print(f"URL: {result['url']}")
|
|
337
461
|
print(f"Description: {result['body']}\n")
|
|
338
462
|
```
|
|
463
|
+
</p>
|
|
464
|
+
</details>
|
|
339
465
|
|
|
340
|
-
|
|
466
|
+
<details>
|
|
467
|
+
<summary><b>Example: News Search with Formatting</b></summary>
|
|
468
|
+
<p>
|
|
341
469
|
|
|
342
470
|
```python
|
|
343
471
|
from webscout import WEBS
|
|
@@ -375,8 +503,12 @@ def fetch_formatted_news(keywords, timelimit='d', max_results=20):
|
|
|
375
503
|
news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
|
|
376
504
|
print('\n'.join(news))
|
|
377
505
|
```
|
|
506
|
+
</p>
|
|
507
|
+
</details>
|
|
378
508
|
|
|
379
|
-
|
|
509
|
+
<details>
|
|
510
|
+
<summary><b>Example: Weather Information</b></summary>
|
|
511
|
+
<p>
|
|
380
512
|
|
|
381
513
|
```python
|
|
382
514
|
from webscout import WEBS
|
|
@@ -391,12 +523,18 @@ with WEBS() as webs:
|
|
|
391
523
|
print(f"Temperature: {weather.get('temperature', 'N/A')}")
|
|
392
524
|
print(f"Conditions: {weather.get('condition', 'N/A')}")
|
|
393
525
|
```
|
|
526
|
+
</p>
|
|
527
|
+
</details>
|
|
528
|
+
|
|
529
|
+
<hr/>
|
|
394
530
|
|
|
395
531
|
## 🤖 AI Models and Voices
|
|
396
532
|
|
|
397
533
|
Webscout provides easy access to a wide range of AI models and voice options.
|
|
398
534
|
|
|
399
|
-
|
|
535
|
+
<details open>
|
|
536
|
+
<summary><b>LLM Models</b></summary>
|
|
537
|
+
<p>
|
|
400
538
|
|
|
401
539
|
Access and manage Large Language Models with Webscout's model utilities.
|
|
402
540
|
|
|
@@ -424,8 +562,12 @@ if isinstance(available_models, list):
|
|
|
424
562
|
else:
|
|
425
563
|
print(f" {available_models}")
|
|
426
564
|
```
|
|
565
|
+
</p>
|
|
566
|
+
</details>
|
|
427
567
|
|
|
428
|
-
|
|
568
|
+
<details open>
|
|
569
|
+
<summary><b>TTS Voices</b></summary>
|
|
570
|
+
<p>
|
|
429
571
|
|
|
430
572
|
Access and manage Text-to-Speech voices across multiple providers.
|
|
431
573
|
|
|
@@ -453,6 +595,10 @@ if isinstance(available_voices, dict):
|
|
|
453
595
|
if len(available_voices) > 5:
|
|
454
596
|
print(f" ... and {len(available_voices) - 5} more")
|
|
455
597
|
```
|
|
598
|
+
</p>
|
|
599
|
+
</details>
|
|
600
|
+
|
|
601
|
+
<hr/>
|
|
456
602
|
|
|
457
603
|
## 💬 AI Chat Providers
|
|
458
604
|
|
|
@@ -460,6 +606,8 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
|
|
|
460
606
|
|
|
461
607
|
### Popular AI Providers
|
|
462
608
|
|
|
609
|
+
<div class="provider-table">
|
|
610
|
+
|
|
463
611
|
| Provider | Description | Key Features |
|
|
464
612
|
|----------|-------------|-------------|
|
|
465
613
|
| `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
|
|
@@ -475,7 +623,11 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
|
|
|
475
623
|
| `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
|
|
476
624
|
| `TypeGPT` | TypeChat models | Code generation focus |
|
|
477
625
|
|
|
478
|
-
|
|
626
|
+
</div>
|
|
627
|
+
|
|
628
|
+
<details>
|
|
629
|
+
<summary><b>Example: Using Duckchat</b></summary>
|
|
630
|
+
<p>
|
|
479
631
|
|
|
480
632
|
```python
|
|
481
633
|
from webscout import WEBS
|
|
@@ -488,8 +640,12 @@ with WEBS() as webs:
|
|
|
488
640
|
)
|
|
489
641
|
print(response)
|
|
490
642
|
```
|
|
643
|
+
</p>
|
|
644
|
+
</details>
|
|
491
645
|
|
|
492
|
-
|
|
646
|
+
<details>
|
|
647
|
+
<summary><b>Example: Using Meta AI</b></summary>
|
|
648
|
+
<p>
|
|
493
649
|
|
|
494
650
|
```python
|
|
495
651
|
from webscout import Meta
|
|
@@ -514,8 +670,12 @@ response = meta_ai.ask("Create an image of a futuristic city")
|
|
|
514
670
|
for media in response.get("media", []):
|
|
515
671
|
print(media["url"])
|
|
516
672
|
```
|
|
673
|
+
</p>
|
|
674
|
+
</details>
|
|
517
675
|
|
|
518
|
-
|
|
676
|
+
<details>
|
|
677
|
+
<summary><b>Example: GROQ with Tool Calling</b></summary>
|
|
678
|
+
<p>
|
|
519
679
|
|
|
520
680
|
```python
|
|
521
681
|
from webscout import GROQ, WEBS
|
|
@@ -590,10 +750,16 @@ print(response)
|
|
|
590
750
|
response = client.chat("Find information about quantum computing", tools=tools)
|
|
591
751
|
print(response)
|
|
592
752
|
```
|
|
753
|
+
</p>
|
|
754
|
+
</details>
|
|
755
|
+
|
|
756
|
+
<hr/>
|
|
593
757
|
|
|
594
758
|
## 👨💻 Advanced AI Interfaces
|
|
595
759
|
|
|
596
|
-
|
|
760
|
+
<details open>
|
|
761
|
+
<summary><b>Direct Model Access with LLM and VLM</b></summary>
|
|
762
|
+
<p>
|
|
597
763
|
|
|
598
764
|
Webscout provides direct interfaces to language and vision-language models through the `LLM` and `VLM` classes.
|
|
599
765
|
|
|
@@ -620,8 +786,12 @@ response = vlm.chat([
|
|
|
620
786
|
])
|
|
621
787
|
print(response)
|
|
622
788
|
```
|
|
789
|
+
</p>
|
|
790
|
+
</details>
|
|
623
791
|
|
|
624
|
-
|
|
792
|
+
<details open>
|
|
793
|
+
<summary><b>GGUF Model Conversion</b></summary>
|
|
794
|
+
<p>
|
|
625
795
|
|
|
626
796
|
Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for offline use.
|
|
627
797
|
|
|
@@ -663,6 +833,8 @@ converter.convert()
|
|
|
663
833
|
```bash
|
|
664
834
|
python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q "q4_k_m"
|
|
665
835
|
```
|
|
836
|
+
</p>
|
|
837
|
+
</details>
|
|
666
838
|
|
|
667
839
|
<div align="center">
|
|
668
840
|
<p>
|
|
@@ -671,6 +843,8 @@ python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q
|
|
|
671
843
|
</p>
|
|
672
844
|
</div>
|
|
673
845
|
|
|
846
|
+
<hr/>
|
|
847
|
+
|
|
674
848
|
## 🤝 Contributing
|
|
675
849
|
|
|
676
850
|
Contributions are welcome! If you'd like to contribute to Webscout, please follow these steps:
|
|
@@ -686,7 +860,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
686
860
|
* All the amazing developers who have contributed to the project
|
|
687
861
|
* The open-source community for their support and inspiration
|
|
688
862
|
|
|
689
|
-
|
|
863
|
+
<hr/>
|
|
690
864
|
|
|
691
865
|
<div align="center">
|
|
692
866
|
<p>Made with ❤️ by the Webscout team</p>
|