webscout 8.3.2__tar.gz → 8.3.3__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.3.2/webscout.egg-info → webscout-8.3.3}/PKG-INFO +102 -90
- {webscout-8.3.2 → webscout-8.3.3}/README.md +100 -89
- {webscout-8.3.2 → webscout-8.3.3}/changelog.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/pyproject.toml +2 -1
- {webscout-8.3.2 → webscout-8.3.3}/webscout/AIutel.py +146 -37
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Bing_search.py +1 -2
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/__init__.py +1 -0
- webscout-8.3.3/webscout/Provider/AISEARCH/stellar_search.py +132 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/ExaChat.py +84 -58
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/HeckAI.py +85 -80
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Jadve.py +56 -50
- webscout-8.3.3/webscout/Provider/MiniMax.py +207 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Nemotron.py +41 -13
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Netwrck.py +34 -51
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/BLACKBOXAI.py +0 -1
- webscout-8.3.3/webscout/Provider/OPENAI/MiniMax.py +298 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/README.md +30 -29
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/TogetherAI.py +4 -17
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/__init__.py +3 -1
- webscout-8.3.3/webscout/Provider/OPENAI/autoproxy.py +1067 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/base.py +7 -76
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/deepinfra.py +42 -108
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/flowith.py +179 -166
- webscout-8.3.3/webscout/Provider/OPENAI/friendli.py +233 -0
- webscout-8.3.3/webscout/Provider/OPENAI/monochat.py +329 -0
- webscout-8.3.3/webscout/Provider/OPENAI/pydantic_imports.py +1 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/toolbaz.py +1 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/typegpt.py +1 -1
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/utils.py +19 -42
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/x0gpt.py +14 -2
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OpenGPT.py +54 -32
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/PI.py +58 -84
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/StandardInput.py +32 -13
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/README.md +9 -9
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/__init__.py +2 -1
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/aiarta.py +92 -78
- webscout-8.3.3/webscout/Provider/TTI/infip.py +212 -0
- webscout-8.3.3/webscout/Provider/TTI/monochat.py +220 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TeachAnything.py +11 -3
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TextPollinationsAI.py +78 -70
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TogetherAI.py +32 -48
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Venice.py +37 -46
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/VercelAI.py +27 -24
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/WiseCat.py +35 -35
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/WrDoChat.py +22 -26
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/WritingMate.py +26 -22
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/__init__.py +2 -2
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/granite.py +48 -57
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/koala.py +51 -39
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/learnfastai.py +49 -64
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/llmchat.py +79 -93
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/llmchatco.py +63 -78
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/multichat.py +51 -40
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/oivscode.py +1 -1
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/scira_chat.py +159 -96
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/scnet.py +13 -13
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/searchchat.py +13 -13
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/sonus.py +12 -11
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/toolbaz.py +25 -8
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/turboseek.py +41 -42
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/typefully.py +27 -12
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/typegpt.py +41 -46
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/uncovr.py +55 -90
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/x0gpt.py +33 -17
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/yep.py +79 -96
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/__init__.py +12 -1
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/providers.py +27 -5
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/routes.py +128 -104
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/server.py +367 -312
- {webscout-8.3.2 → webscout-8.3.3}/webscout/client.py +121 -116
- {webscout-8.3.2 → webscout-8.3.3}/webscout/litagent/Readme.md +68 -55
- {webscout-8.3.2 → webscout-8.3.3}/webscout/litagent/agent.py +99 -9
- webscout-8.3.3/webscout/version.py +2 -0
- {webscout-8.3.2 → webscout-8.3.3/webscout.egg-info}/PKG-INFO +102 -90
- {webscout-8.3.2 → webscout-8.3.3}/webscout.egg-info/SOURCES.txt +14 -38
- {webscout-8.3.2 → webscout-8.3.3}/webscout.egg-info/requires.txt +1 -0
- webscout-8.3.2/webscout/Provider/OPENAI/autoproxy.py +0 -332
- webscout-8.3.2/webscout/Provider/OPENAI/pydantic_imports.py +0 -172
- webscout-8.3.2/webscout/Provider/TTI/fastflux.py +0 -233
- webscout-8.3.2/webscout/Provider/Writecream.py +0 -246
- webscout-8.3.2/webscout/auth/static/favicon.svg +0 -11
- webscout-8.3.2/webscout/auth/swagger_ui.py +0 -203
- webscout-8.3.2/webscout/auth/templates/components/authentication.html +0 -237
- webscout-8.3.2/webscout/auth/templates/components/base.html +0 -103
- webscout-8.3.2/webscout/auth/templates/components/endpoints.html +0 -750
- webscout-8.3.2/webscout/auth/templates/components/examples.html +0 -491
- webscout-8.3.2/webscout/auth/templates/components/footer.html +0 -75
- webscout-8.3.2/webscout/auth/templates/components/header.html +0 -27
- webscout-8.3.2/webscout/auth/templates/components/models.html +0 -286
- webscout-8.3.2/webscout/auth/templates/components/navigation.html +0 -70
- webscout-8.3.2/webscout/auth/templates/static/api.js +0 -455
- webscout-8.3.2/webscout/auth/templates/static/icons.js +0 -168
- webscout-8.3.2/webscout/auth/templates/static/main.js +0 -784
- webscout-8.3.2/webscout/auth/templates/static/particles.js +0 -201
- webscout-8.3.2/webscout/auth/templates/static/styles.css +0 -3353
- webscout-8.3.2/webscout/auth/templates/static/ui.js +0 -374
- webscout-8.3.2/webscout/auth/templates/swagger_ui.html +0 -170
- webscout-8.3.2/webscout/version.py +0 -2
- {webscout-8.3.2 → webscout-8.3.3}/LEGAL_NOTICE.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/LICENSE.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/MANIFEST.in +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/setup.cfg +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/AIauto.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/AIbase.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Bard.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/DWEBS.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/Act.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/gitapi/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/autocoder/autocoder.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/gguf.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/gguf.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/async_utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/cli.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/emailnator.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/mail_tm.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/weather.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/weather.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/formats.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/handlers.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/levels.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Litlogger/logger.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AI21.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/hika_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/iask_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/monica_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/scira_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Aitopia.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/AllenAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Andi.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/ChatGPTClone.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/ChatSandbox.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Cloudflare.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Cohere.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Deepinfra.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/ExaAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Flowith.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/FreeGemini.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Gemini.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/GeminiProxy.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/GithubChat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/GizAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Glider.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Groq.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/HuggingFaceChat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Hunyuan.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Koboldai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/LambdaChat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Llama3.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/MCPCore.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Marcus.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/Cloudflare.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/FalconH1.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/FreeGemini.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/GeminiProxy.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/NEMOTRON.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/PI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/Qwen3.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/README_AUTOPROXY.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/TwoAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/ai4chat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/c4ai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/chatgpt.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/chatsandbox.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/copilot.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/e2b.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/exaai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/exachat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/freeaichat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/glider.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/groq.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/heckai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/llmchatco.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/mcpcore.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/multichat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/netwrck.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/oivscode.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/opkfc.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/scirachat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/sonus.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/standardinput.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/textpollinations.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/typefully.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/uncovrAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/venice.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/wisecat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/writecream.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/xenai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/OPENAI/yep.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Openai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/QwenLM.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/Reka.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/STT/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/STT/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/STT/elevenlabs.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/bing.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/gpt1image.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/imagen.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/magicstudio.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/piclumen.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/pixelmuse.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/pollinations.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/together.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTI/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/freetts.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/openai_fm.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/sthir.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TwoAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/TypliAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/ChatHub.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/ChutesAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/Youchat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/fetch_together_models.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/liner_api_request.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/puterjs.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/UNFINISHED/test_lmarena.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/XenAI.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/ai4chat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/akashgpt.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/asksteve.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/cerebras.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/chatglm.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/cleeai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/copilot.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/deepseek_assistant.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/elmo.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/freeaichat.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/geminiapi.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/hermes.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/julius.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/llama3mitril.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/lmarena.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/meta.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/samurai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/Provider/talkai.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/__main__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/api_key_manager.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/auth_system.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/config.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/database.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/exceptions.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/middleware.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/models.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/rate_limiter.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/request_models.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/request_processing.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/auth/schemas.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/cli.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/conversation.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/exceptions.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/litagent/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/litagent/constants.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/litprinter/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/models.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/optimizers.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/prompt_manager.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/crawler.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/scout.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/search_result.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/text_utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/element.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/scout/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/Readme.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/core/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/core/cli.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/core/context.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/core/group.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/decorators/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/decorators/command.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/decorators/options.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/decorators/output.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/exceptions.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/plugins/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/plugins/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/plugins/manager.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/utils/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/utils/formatting.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/swiftcli/utils/parsing.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/tempid.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/update_checker.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/utils.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/webscout_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/webscout_search_async.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/yep_search.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/zeroart/README.md +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/zeroart/__init__.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/zeroart/base.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/zeroart/effects.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout/zeroart/fonts.py +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout.egg-info/entry_points.txt +0 -0
- {webscout-8.3.2 → webscout-8.3.3}/webscout.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 8.3.
|
|
3
|
+
Version: 8.3.3
|
|
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-email: OEvortex <helpingai5@gmail.com>
|
|
6
6
|
License: HelpingAI
|
|
@@ -62,6 +62,7 @@ Requires-Dist: psutil
|
|
|
62
62
|
Requires-Dist: aiohttp
|
|
63
63
|
Requires-Dist: zstandard
|
|
64
64
|
Requires-Dist: brotli
|
|
65
|
+
Requires-Dist: litproxy
|
|
65
66
|
Provides-Extra: dev
|
|
66
67
|
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
67
68
|
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
@@ -117,8 +118,9 @@ Dynamic: license-file
|
|
|
117
118
|
|
|
118
119
|
<hr/>
|
|
119
120
|
|
|
120
|
-
> [!IMPORTANT]
|
|
121
|
+
> [!IMPORTANT] >
|
|
121
122
|
> **Webscout supports three types of compatibility:**
|
|
123
|
+
>
|
|
122
124
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
123
125
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
124
126
|
> - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
|
|
@@ -148,12 +150,12 @@ Dynamic: license-file
|
|
|
148
150
|
<summary><b>Search & AI</b></summary>
|
|
149
151
|
<p>
|
|
150
152
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
153
|
+
- **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
|
|
154
|
+
- **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
155
|
+
- **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
156
|
+
- **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
157
|
+
- **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
|
|
158
|
+
- **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
157
159
|
</p>
|
|
158
160
|
</details>
|
|
159
161
|
|
|
@@ -161,10 +163,10 @@ Dynamic: license-file
|
|
|
161
163
|
<summary><b>Media & Content Tools</b></summary>
|
|
162
164
|
<p>
|
|
163
165
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
- **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
|
|
167
|
+
- **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
|
|
168
|
+
- **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
169
|
+
- **[Weather Tools](webscout/Extra/weather.md):** Retrieve detailed weather information for any location
|
|
168
170
|
</p>
|
|
169
171
|
</details>
|
|
170
172
|
|
|
@@ -172,14 +174,14 @@ Dynamic: license-file
|
|
|
172
174
|
<summary><b>Developer Tools</b></summary>
|
|
173
175
|
<p>
|
|
174
176
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
177
|
+
- **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit without authentication requirements for public data
|
|
178
|
+
- **[SwiftCLI](webscout/swiftcli/Readme.md):** A powerful and elegant CLI framework for beautiful command-line interfaces
|
|
179
|
+
- **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
|
|
180
|
+
- **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
|
|
181
|
+
- **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
182
|
+
- **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
183
|
+
- **[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`)
|
|
184
|
+
- **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
|
|
183
185
|
</p>
|
|
184
186
|
</details>
|
|
185
187
|
|
|
@@ -187,8 +189,8 @@ Dynamic: license-file
|
|
|
187
189
|
<summary><b>Privacy & Utilities</b></summary>
|
|
188
190
|
<p>
|
|
189
191
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
+
- **[Tempmail](webscout/Extra/tempmail/README.md) & Temp Number:** Generate temporary email addresses and phone numbers
|
|
193
|
+
- **[Awesome Prompts](webscout/Extra/Act.md):** Curated collection of system prompts for specialized AI personas
|
|
192
194
|
</p>
|
|
193
195
|
</details>
|
|
194
196
|
|
|
@@ -251,6 +253,9 @@ uv sync --extra dev --extra api
|
|
|
251
253
|
|
|
252
254
|
# Or with pip
|
|
253
255
|
pip install -e ".[dev,api]"
|
|
256
|
+
|
|
257
|
+
# Or with uv pip
|
|
258
|
+
uv pip install -e ".[dev,api]"
|
|
254
259
|
```
|
|
255
260
|
|
|
256
261
|
### 🐳 Docker Installation
|
|
@@ -317,18 +322,18 @@ python -m webscout-server
|
|
|
317
322
|
<summary><b>🔍 Web Search Commands</b></summary>
|
|
318
323
|
<p>
|
|
319
324
|
|
|
320
|
-
| Command
|
|
321
|
-
|
|
322
|
-
| `webscout text -k "query"`
|
|
323
|
-
| `webscout answers -k "query"`
|
|
324
|
-
| `webscout images -k "query"`
|
|
325
|
-
| `webscout videos -k "query"`
|
|
326
|
-
| `webscout news -k "query"`
|
|
327
|
-
| `webscout maps -k "query"`
|
|
328
|
-
| `webscout translate -k "text"`
|
|
329
|
-
| `webscout suggestions -k "query"` | Get search suggestions
|
|
330
|
-
| `webscout weather -l "location"`
|
|
331
|
-
| `webscout version`
|
|
325
|
+
| Command | Description | Example |
|
|
326
|
+
| --------------------------------- | --------------------------- | ----------------------------------------- |
|
|
327
|
+
| `webscout text -k "query"` | Perform a text search | `webscout text -k "python programming"` |
|
|
328
|
+
| `webscout answers -k "query"` | Get instant answers | `webscout answers -k "what is AI"` |
|
|
329
|
+
| `webscout images -k "query"` | Search for images | `webscout images -k "nature photography"` |
|
|
330
|
+
| `webscout videos -k "query"` | Search for videos | `webscout videos -k "python tutorials"` |
|
|
331
|
+
| `webscout news -k "query"` | Search for news articles | `webscout news -k "technology trends"` |
|
|
332
|
+
| `webscout maps -k "query"` | Perform a maps search | `webscout maps -k "restaurants near me"` |
|
|
333
|
+
| `webscout translate -k "text"` | Translate text | `webscout translate -k "hello world"` |
|
|
334
|
+
| `webscout suggestions -k "query"` | Get search suggestions | `webscout suggestions -k "how to"` |
|
|
335
|
+
| `webscout weather -l "location"` | Get weather information | `webscout weather -l "New York"` |
|
|
336
|
+
| `webscout version` | Display the current version | `webscout version` |
|
|
332
337
|
|
|
333
338
|
**Google Search Commands:**
|
|
334
339
|
| Command | Description | Example |
|
|
@@ -363,21 +368,22 @@ After installation, you can use its CLI for managing and using local LLMs:
|
|
|
363
368
|
inferno --help
|
|
364
369
|
```
|
|
365
370
|
|
|
366
|
-
| Command
|
|
367
|
-
|
|
368
|
-
| `inferno pull <model>`
|
|
369
|
-
| `inferno list`
|
|
370
|
-
| `inferno serve <model>`
|
|
371
|
-
| `inferno run <model>`
|
|
372
|
-
| `inferno remove <model>` | Remove a downloaded model
|
|
373
|
-
| `inferno version`
|
|
371
|
+
| Command | Description |
|
|
372
|
+
| ------------------------ | ----------------------------------------------- |
|
|
373
|
+
| `inferno pull <model>` | Download a model from Hugging Face |
|
|
374
|
+
| `inferno list` | List downloaded models |
|
|
375
|
+
| `inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
376
|
+
| `inferno run <model>` | Chat with a model interactively |
|
|
377
|
+
| `inferno remove <model>` | Remove a downloaded model |
|
|
378
|
+
| `inferno version` | Show version information |
|
|
374
379
|
|
|
375
380
|
For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
|
|
381
|
+
|
|
376
382
|
</p>
|
|
377
383
|
</details>
|
|
378
384
|
|
|
379
|
-
> [!NOTE]
|
|
380
|
-
>
|
|
385
|
+
> [!NOTE] > **Hardware requirements for running models with Inferno:**
|
|
386
|
+
>
|
|
381
387
|
> - Around 2 GB of RAM for 1B models
|
|
382
388
|
> - Around 4 GB of RAM for 3B models
|
|
383
389
|
> - At least 8 GB of RAM for 7B models
|
|
@@ -448,7 +454,6 @@ $env:WEBSCOUT_PORT='7860'; webscout-server
|
|
|
448
454
|
|
|
449
455
|
For a complete list of supported environment variables and Docker deployment options, see [DOCKER.md](DOCKER.md).
|
|
450
456
|
|
|
451
|
-
|
|
452
457
|
#### From Python Code
|
|
453
458
|
|
|
454
459
|
> **Recommended:**
|
|
@@ -629,6 +634,7 @@ with WEBS() as webs:
|
|
|
629
634
|
for result in results:
|
|
630
635
|
print(f"Title: {result['title']}\nURL: {result['url']}")
|
|
631
636
|
```
|
|
637
|
+
|
|
632
638
|
</p>
|
|
633
639
|
</details>
|
|
634
640
|
|
|
@@ -662,6 +668,7 @@ async def main():
|
|
|
662
668
|
# Run the async function
|
|
663
669
|
asyncio.run(main())
|
|
664
670
|
```
|
|
671
|
+
|
|
665
672
|
</p>
|
|
666
673
|
</details>
|
|
667
674
|
|
|
@@ -676,17 +683,17 @@ The WEBS class provides comprehensive access to DuckDuckGo's search capabilities
|
|
|
676
683
|
|
|
677
684
|
### Available Search Methods
|
|
678
685
|
|
|
679
|
-
| Method
|
|
680
|
-
|
|
681
|
-
| `text()`
|
|
682
|
-
| `answers()`
|
|
683
|
-
| `images()`
|
|
684
|
-
| `videos()`
|
|
685
|
-
| `news()`
|
|
686
|
-
| `maps()`
|
|
687
|
-
| `translate()`
|
|
688
|
-
| `suggestions()` | Search suggestions
|
|
689
|
-
| `weather()`
|
|
686
|
+
| Method | Description | Example |
|
|
687
|
+
| --------------- | ------------------- | -------------------------------------------- |
|
|
688
|
+
| `text()` | General web search | `webs.text('python programming')` |
|
|
689
|
+
| `answers()` | Instant answers | `webs.answers('population of france')` |
|
|
690
|
+
| `images()` | Image search | `webs.images('nature photography')` |
|
|
691
|
+
| `videos()` | Video search | `webs.videos('documentary')` |
|
|
692
|
+
| `news()` | News articles | `webs.news('technology')` |
|
|
693
|
+
| `maps()` | Location search | `webs.maps('restaurants', place='new york')` |
|
|
694
|
+
| `translate()` | Text translation | `webs.translate('hello', to='es')` |
|
|
695
|
+
| `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
|
|
696
|
+
| `weather()` | Weather information | `webs.weather('london')` |
|
|
690
697
|
|
|
691
698
|
<details>
|
|
692
699
|
<summary><b>Example: Text Search</b></summary>
|
|
@@ -709,6 +716,7 @@ with WEBS() as webs:
|
|
|
709
716
|
print(f"URL: {result['url']}")
|
|
710
717
|
print(f"Description: {result['body']}\n")
|
|
711
718
|
```
|
|
719
|
+
|
|
712
720
|
</p>
|
|
713
721
|
</details>
|
|
714
722
|
|
|
@@ -752,6 +760,7 @@ def fetch_formatted_news(keywords, timelimit='d', max_results=20):
|
|
|
752
760
|
news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
|
|
753
761
|
print('\n'.join(news))
|
|
754
762
|
```
|
|
763
|
+
|
|
755
764
|
</p>
|
|
756
765
|
</details>
|
|
757
766
|
|
|
@@ -772,6 +781,7 @@ with WEBS() as webs:
|
|
|
772
781
|
print(f"Temperature: {weather.get('temperature', 'N/A')}")
|
|
773
782
|
print(f"Conditions: {weather.get('condition', 'N/A')}")
|
|
774
783
|
```
|
|
784
|
+
|
|
775
785
|
</p>
|
|
776
786
|
</details>
|
|
777
787
|
|
|
@@ -811,6 +821,7 @@ if isinstance(available_models, list):
|
|
|
811
821
|
else:
|
|
812
822
|
print(f" {available_models}")
|
|
813
823
|
```
|
|
824
|
+
|
|
814
825
|
</p>
|
|
815
826
|
</details>
|
|
816
827
|
|
|
@@ -844,6 +855,7 @@ if isinstance(available_voices, dict):
|
|
|
844
855
|
if len(available_voices) > 5:
|
|
845
856
|
print(f" ... and {len(available_voices) - 5} more")
|
|
846
857
|
```
|
|
858
|
+
|
|
847
859
|
</p>
|
|
848
860
|
</details>
|
|
849
861
|
|
|
@@ -857,23 +869,22 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
|
|
|
857
869
|
|
|
858
870
|
<div class="provider-table">
|
|
859
871
|
|
|
860
|
-
| Provider
|
|
861
|
-
|
|
862
|
-
| `OPENAI`
|
|
863
|
-
| `GEMINI`
|
|
864
|
-
| `Meta`
|
|
865
|
-
| `GROQ`
|
|
866
|
-
| `LLAMA`
|
|
867
|
-
| `DeepInfra`
|
|
868
|
-
| `Cohere`
|
|
869
|
-
| `PerplexityLabs` | Perplexity AI
|
|
870
|
-
| `YEPCHAT`
|
|
871
|
-
| `ChatGPTClone`
|
|
872
|
-
| `TypeGPT`
|
|
872
|
+
| Provider | Description | Key Features |
|
|
873
|
+
| ---------------- | ------------------------ | ---------------------------------- |
|
|
874
|
+
| `OPENAI` | OpenAI's models | GPT-3.5, GPT-4, tool calling |
|
|
875
|
+
| `GEMINI` | Google's Gemini models | Web search capabilities |
|
|
876
|
+
| `Meta` | Meta's AI assistant | Image generation, web search |
|
|
877
|
+
| `GROQ` | Fast inference platform | High-speed inference, tool calling |
|
|
878
|
+
| `LLAMA` | Meta's Llama models | Open weights models |
|
|
879
|
+
| `DeepInfra` | Various open models | Multiple model options |
|
|
880
|
+
| `Cohere` | Cohere's language models | Command models |
|
|
881
|
+
| `PerplexityLabs` | Perplexity AI | Web search integration |
|
|
882
|
+
| `YEPCHAT` | Yep.com's AI | Streaming responses |
|
|
883
|
+
| `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
|
|
884
|
+
| `TypeGPT` | TypeChat models | Multiple model options |
|
|
873
885
|
|
|
874
886
|
</div>
|
|
875
887
|
|
|
876
|
-
|
|
877
888
|
<details>
|
|
878
889
|
<summary><b>Example: Using Meta AI</b></summary>
|
|
879
890
|
<p>
|
|
@@ -901,6 +912,7 @@ response = meta_ai.ask("Create an image of a futuristic city")
|
|
|
901
912
|
for media in response.get("media", []):
|
|
902
913
|
print(media["url"])
|
|
903
914
|
```
|
|
915
|
+
|
|
904
916
|
</p>
|
|
905
917
|
</details>
|
|
906
918
|
|
|
@@ -981,11 +993,10 @@ print(response)
|
|
|
981
993
|
response = client.chat("Find information about quantum computing", tools=tools)
|
|
982
994
|
print(response)
|
|
983
995
|
```
|
|
996
|
+
|
|
984
997
|
</p>
|
|
985
998
|
</details>
|
|
986
999
|
|
|
987
|
-
|
|
988
|
-
|
|
989
1000
|
<details open>
|
|
990
1001
|
<summary><b>GGUF Model Conversion</b></summary>
|
|
991
1002
|
<p>
|
|
@@ -1007,29 +1018,30 @@ converter.convert()
|
|
|
1007
1018
|
|
|
1008
1019
|
#### Available Quantization Methods
|
|
1009
1020
|
|
|
1010
|
-
| Method
|
|
1011
|
-
|
|
1012
|
-
| `fp16`
|
|
1013
|
-
| `q2_k`
|
|
1014
|
-
| `q3_k_l` | 3-bit quantization (large) - balanced for size/accuracy
|
|
1021
|
+
| Method | Description |
|
|
1022
|
+
| -------- | ------------------------------------------------------------- |
|
|
1023
|
+
| `fp16` | 16-bit floating point - maximum accuracy, largest size |
|
|
1024
|
+
| `q2_k` | 2-bit quantization (smallest size, lowest accuracy) |
|
|
1025
|
+
| `q3_k_l` | 3-bit quantization (large) - balanced for size/accuracy |
|
|
1015
1026
|
| `q3_k_m` | 3-bit quantization (medium) - good balance for most use cases |
|
|
1016
|
-
| `q3_k_s` | 3-bit quantization (small) - optimized for speed
|
|
1017
|
-
| `q4_0`
|
|
1018
|
-
| `q4_1`
|
|
1019
|
-
| `q4_k_m` | 4-bit quantization (medium) - balanced for most models
|
|
1020
|
-
| `q4_k_s` | 4-bit quantization (small) - optimized for speed
|
|
1021
|
-
| `q5_0`
|
|
1022
|
-
| `q5_1`
|
|
1023
|
-
| `q5_k_m` | 5-bit quantization (medium) - best balance for quality/size
|
|
1024
|
-
| `q5_k_s` | 5-bit quantization (small) - optimized for speed
|
|
1025
|
-
| `q6_k`
|
|
1026
|
-
| `q8_0`
|
|
1027
|
+
| `q3_k_s` | 3-bit quantization (small) - optimized for speed |
|
|
1028
|
+
| `q4_0` | 4-bit quantization (version 0) - standard 4-bit compression |
|
|
1029
|
+
| `q4_1` | 4-bit quantization (version 1) - improved accuracy over q4_0 |
|
|
1030
|
+
| `q4_k_m` | 4-bit quantization (medium) - balanced for most models |
|
|
1031
|
+
| `q4_k_s` | 4-bit quantization (small) - optimized for speed |
|
|
1032
|
+
| `q5_0` | 5-bit quantization (version 0) - high accuracy, larger size |
|
|
1033
|
+
| `q5_1` | 5-bit quantization (version 1) - improved accuracy over q5_0 |
|
|
1034
|
+
| `q5_k_m` | 5-bit quantization (medium) - best balance for quality/size |
|
|
1035
|
+
| `q5_k_s` | 5-bit quantization (small) - optimized for speed |
|
|
1036
|
+
| `q6_k` | 6-bit quantization - highest accuracy, largest size |
|
|
1037
|
+
| `q8_0` | 8-bit quantization - maximum accuracy, largest size |
|
|
1027
1038
|
|
|
1028
1039
|
#### Command Line Usage
|
|
1029
1040
|
|
|
1030
1041
|
```bash
|
|
1031
1042
|
python -m webscout.Extra.gguf convert -m "mistralai/Mistral-7B-Instruct-v0.2" -q "q4_k_m"
|
|
1032
1043
|
```
|
|
1044
|
+
|
|
1033
1045
|
</p>
|
|
1034
1046
|
</details>
|
|
1035
1047
|
|
|
@@ -1054,8 +1066,8 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
1054
1066
|
|
|
1055
1067
|
## 🙏 Acknowledgments
|
|
1056
1068
|
|
|
1057
|
-
|
|
1058
|
-
|
|
1069
|
+
- All the amazing developers who have contributed to the project
|
|
1070
|
+
- The open-source community for their support and inspiration
|
|
1059
1071
|
|
|
1060
1072
|
<hr/>
|
|
1061
1073
|
|