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