webscout 8.1__tar.gz → 8.2__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.1/webscout.egg-info → webscout-8.2}/PKG-INFO +46 -3
- {webscout-8.1 → webscout-8.2}/README.md +33 -2
- webscout-8.2/inferno/__init__.py +6 -0
- webscout-8.2/inferno/__main__.py +9 -0
- webscout-8.2/inferno/cli.py +6 -0
- {webscout-8.1 → webscout-8.2}/setup.py +57 -34
- webscout-8.2/webscout/Local/__init__.py +6 -0
- webscout-8.2/webscout/Local/__main__.py +9 -0
- webscout-8.2/webscout/Local/api.py +576 -0
- webscout-8.2/webscout/Local/cli.py +338 -0
- webscout-8.2/webscout/Local/config.py +75 -0
- webscout-8.2/webscout/Local/llm.py +188 -0
- webscout-8.2/webscout/Local/model_manager.py +205 -0
- webscout-8.2/webscout/Local/server.py +187 -0
- webscout-8.2/webscout/Local/utils.py +93 -0
- webscout-8.2/webscout/Provider/AISEARCH/Perplexity.py +359 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/__init__.py +2 -1
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/scira_search.py +8 -4
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ExaChat.py +18 -8
- {webscout-8.1 → webscout-8.2}/webscout/Provider/GithubChat.py +5 -1
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Glider.py +4 -2
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/__init__.py +8 -1
- webscout-8.2/webscout/Provider/OPENAI/chatgpt.py +549 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/exachat.py +20 -8
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/glider.py +3 -1
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/llmchatco.py +3 -1
- webscout-8.2/webscout/Provider/OPENAI/opkfc.py +488 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/scirachat.py +11 -7
- webscout-8.2/webscout/Provider/OPENAI/standardinput.py +425 -0
- webscout-8.2/webscout/Provider/OPENAI/textpollinations.py +285 -0
- webscout-8.2/webscout/Provider/OPENAI/toolbaz.py +405 -0
- webscout-8.2/webscout/Provider/OPENAI/uncovrAI.py +455 -0
- webscout-8.2/webscout/Provider/OPENAI/writecream.py +158 -0
- webscout-8.2/webscout/Provider/StandardInput.py +278 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TextPollinationsAI.py +27 -28
- webscout-8.2/webscout/Provider/Writecream.py +211 -0
- webscout-8.2/webscout/Provider/WritingMate.py +197 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Youchat.py +30 -26
- {webscout-8.1 → webscout-8.2}/webscout/Provider/__init__.py +10 -2
- {webscout-8.1 → webscout-8.2}/webscout/Provider/koala.py +2 -2
- {webscout-8.1 → webscout-8.2}/webscout/Provider/llmchatco.py +5 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/scira_chat.py +5 -2
- webscout-8.2/webscout/Provider/scnet.py +187 -0
- webscout-8.2/webscout/Provider/toolbaz.py +320 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/uncovr.py +3 -3
- {webscout-8.1 → webscout-8.2}/webscout/conversation.py +32 -32
- {webscout-8.1 → webscout-8.2}/webscout/version.py +1 -1
- {webscout-8.1 → webscout-8.2/webscout.egg-info}/PKG-INFO +46 -3
- {webscout-8.1 → webscout-8.2}/webscout.egg-info/SOURCES.txt +25 -0
- webscout-8.2/webscout.egg-info/entry_points.txt +5 -0
- {webscout-8.1 → webscout-8.2}/webscout.egg-info/requires.txt +10 -0
- {webscout-8.1 → webscout-8.2}/webscout.egg-info/top_level.txt +1 -0
- webscout-8.1/webscout.egg-info/entry_points.txt +0 -3
- {webscout-8.1 → webscout-8.2}/LICENSE.md +0 -0
- {webscout-8.1 → webscout-8.2}/setup.cfg +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/AIauto.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/AIbase.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/AIutel.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Bard.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/DWEBS.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/autocoder.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/gguf.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/async_utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/base.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/cli.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/mail_tm.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/weather.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/LLM.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/level.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/core/logger.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/console.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/file.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/handlers/network.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/colors.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/formats.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/styles/text.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/detectors.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Litlogger/utils/formatters.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AI21.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/ISou.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/hika_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/iask_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/monica_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Aitopia.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/AllenAI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Andi.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/C4ai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTClone.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTES.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ChatGPTGratis.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Chatify.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Cloudflare.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Cohere.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/DeepSeek.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Deepinfra.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ElectronHub.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ExaAI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Free2GPT.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/GPTWeb.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Gemini.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Groq.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/HeckAI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/HuggingFaceChat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Hunyuan.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Jadve.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Koboldai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/LambdaChat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Llama.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Llama3.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Marcus.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Netwrck.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/base.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/c4ai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/deepinfra.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/exaai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/freeaichat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/heckai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/netwrck.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/sonus.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/typegpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/venice.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/wisecat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/x0gpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OPENAI/yep.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/OpenGPT.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Openai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/PI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Phind.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/PizzaGPT.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/QwenLM.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Reka.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/async_fastflux.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TeachAnything.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/TwoAI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/Venice.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/VercelAI.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/WebSim.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/WiseCat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/ai4chat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/aimathgpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/akashgpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/askmyai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/asksteve.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/bagoodex.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/cerebras.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/chatglm.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/cleeai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/copilot.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/elmo.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/freeaichat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/gaurish.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/geminiapi.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/geminiprorealtime.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/granite.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/hermes.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/julius.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/labyrinth.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/learnfastai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/lepton.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/llama3mitril.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/llamatutor.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/llmchat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/meta.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/multichat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/promptrefine.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/searchchat.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/sonus.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/talkai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/turboseek.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/tutorai.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/typefully.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/typegpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/x0gpt.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/Provider/yep.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/__main__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/cli.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/exceptions.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/litagent/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/litagent/agent.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/litagent/constants.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/litprinter/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/models.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/optimizers.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/prompt_manager.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/crawler.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/scout.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/search_result.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/text_utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/core.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/element.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/scout/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/swiftcli/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/tempid.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/update_checker.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/utils.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/webscout_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/webscout_search_async.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/yep_search.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/zeroart/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/zeroart/base.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/zeroart/effects.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout/zeroart/fonts.py +0 -0
- {webscout-8.1 → webscout-8.2}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/__init__.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/classifier.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/keywords.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/language.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/ner.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/normalizer.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/processor.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/sentiment.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/stemmer.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/tagger.py +0 -0
- {webscout-8.1 → webscout-8.2}/webstoken/tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.2
|
|
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
|
|
@@ -8,10 +8,17 @@ License: HelpingAI
|
|
|
8
8
|
Project-URL: Source, https://github.com/OE-LUCIFER/Webscout
|
|
9
9
|
Project-URL: Tracker, https://github.com/OE-LUCIFER/Webscout/issues
|
|
10
10
|
Project-URL: YouTube, https://youtube.com/@OEvortex
|
|
11
|
+
Keywords: search,ai,chatbot,llm,language-model,gpt,openai,gemini,claude,llama,search-engine,text-to-speech,tts,text-to-image,tti,weather,youtube,toolkit,utilities,web-search,duckduckgo,google,yep
|
|
11
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
16
|
Classifier: License :: Other/Proprietary License
|
|
17
|
+
Classifier: Natural Language :: English
|
|
14
18
|
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
20
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
15
22
|
Classifier: Programming Language :: Python :: 3
|
|
16
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -21,9 +28,14 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
21
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
22
29
|
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
23
30
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
31
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
32
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
33
|
+
Classifier: Topic :: Communications
|
|
34
|
+
Classifier: Topic :: Utilities
|
|
24
35
|
Requires-Python: >=3.9
|
|
25
36
|
Description-Content-Type: text/markdown
|
|
26
37
|
Provides-Extra: dev
|
|
38
|
+
Provides-Extra: Local
|
|
27
39
|
License-File: LICENSE.md
|
|
28
40
|
|
|
29
41
|
<div align="center">
|
|
@@ -49,9 +61,10 @@ License-File: LICENSE.md
|
|
|
49
61
|
</div>
|
|
50
62
|
|
|
51
63
|
> [!IMPORTANT]
|
|
52
|
-
> Webscout supports
|
|
64
|
+
> Webscout supports three types of compatibility:
|
|
53
65
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
54
66
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
67
|
+
> - **Local LLM Compatibility:** Run local models with [Inferno](webscout/Local/README.md), an OpenAI-compatible server
|
|
55
68
|
>
|
|
56
69
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
|
|
57
70
|
|
|
@@ -75,9 +88,10 @@ License-File: LICENSE.md
|
|
|
75
88
|
|
|
76
89
|
### Search & AI
|
|
77
90
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
|
|
78
|
-
* **AI Powerhouse:** Access and interact with various AI models through
|
|
91
|
+
* **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
79
92
|
* **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
80
93
|
* **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
94
|
+
* **[Local LLMs with Inferno](webscout/Local/README.md):** Run local models with an OpenAI-compatible server
|
|
81
95
|
* **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
82
96
|
|
|
83
97
|
### Media & Content Tools
|
|
@@ -93,6 +107,7 @@ License-File: LICENSE.md
|
|
|
93
107
|
* **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
|
|
94
108
|
* **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
95
109
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
110
|
+
* **[Inferno](webscout/Local/README.md):** Run local LLMs with an OpenAI-compatible API and interactive CLI
|
|
96
111
|
* **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
|
|
97
112
|
|
|
98
113
|
### Privacy & Utilities
|
|
@@ -115,6 +130,8 @@ Webscout provides a powerful command-line interface for quick access to its feat
|
|
|
115
130
|
python -m webscout --help
|
|
116
131
|
```
|
|
117
132
|
|
|
133
|
+
### Web Search Commands
|
|
134
|
+
|
|
118
135
|
| Command | Description |
|
|
119
136
|
|---------|-------------|
|
|
120
137
|
| `python -m webscout answers -k "query"` | Perform an answers search |
|
|
@@ -129,6 +146,32 @@ python -m webscout --help
|
|
|
129
146
|
| `python -m webscout videos -k "query"` | Search for videos |
|
|
130
147
|
| `python -m webscout weather -l "location"` | Get weather information |
|
|
131
148
|
|
|
149
|
+
### Inferno LLM Commands
|
|
150
|
+
|
|
151
|
+
Inferno provides commands for managing and using local LLMs:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
python -m inferno --help
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
| Command | Description |
|
|
158
|
+
|---------|-------------|
|
|
159
|
+
| `python -m inferno pull <model>` | Download a model from Hugging Face |
|
|
160
|
+
| `python -m inferno list` | List downloaded models |
|
|
161
|
+
| `python -m inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
162
|
+
| `python -m inferno run <model>` | Chat with a model interactively |
|
|
163
|
+
| `python -m inferno remove <model>` | Remove a downloaded model |
|
|
164
|
+
| `python -m inferno version` | Show version information |
|
|
165
|
+
|
|
166
|
+
> [!NOTE]
|
|
167
|
+
> Hardware requirements for running models:
|
|
168
|
+
> - Around 2 GB of RAM for 1B models
|
|
169
|
+
> - Around 4 GB of RAM for 3B models
|
|
170
|
+
> - At least 8 GB of RAM for 7B models
|
|
171
|
+
> - 16 GB of RAM for 13B models
|
|
172
|
+
> - 32 GB of RAM for 33B models
|
|
173
|
+
> - GPU acceleration is recommended for better performance
|
|
174
|
+
|
|
132
175
|
|
|
133
176
|
|
|
134
177
|
## 🔍 Search Engines
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
|
|
23
23
|
> [!IMPORTANT]
|
|
24
|
-
> Webscout supports
|
|
24
|
+
> Webscout supports three types of compatibility:
|
|
25
25
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
26
26
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
27
|
+
> - **Local LLM Compatibility:** Run local models with [Inferno](webscout/Local/README.md), an OpenAI-compatible server
|
|
27
28
|
>
|
|
28
29
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
|
|
29
30
|
|
|
@@ -47,9 +48,10 @@
|
|
|
47
48
|
|
|
48
49
|
### Search & AI
|
|
49
50
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
|
|
50
|
-
* **AI Powerhouse:** Access and interact with various AI models through
|
|
51
|
+
* **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
51
52
|
* **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
52
53
|
* **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
54
|
+
* **[Local LLMs with Inferno](webscout/Local/README.md):** Run local models with an OpenAI-compatible server
|
|
53
55
|
* **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
54
56
|
|
|
55
57
|
### Media & Content Tools
|
|
@@ -65,6 +67,7 @@
|
|
|
65
67
|
* **[LitLogger](webscout/litlogger/Readme.md):** Simplified logging with customizable formats and color schemes
|
|
66
68
|
* **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
67
69
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
70
|
+
* **[Inferno](webscout/Local/README.md):** Run local LLMs with an OpenAI-compatible API and interactive CLI
|
|
68
71
|
* **GGUF Conversion:** Convert and quantize Hugging Face models to GGUF format
|
|
69
72
|
|
|
70
73
|
### Privacy & Utilities
|
|
@@ -87,6 +90,8 @@ Webscout provides a powerful command-line interface for quick access to its feat
|
|
|
87
90
|
python -m webscout --help
|
|
88
91
|
```
|
|
89
92
|
|
|
93
|
+
### Web Search Commands
|
|
94
|
+
|
|
90
95
|
| Command | Description |
|
|
91
96
|
|---------|-------------|
|
|
92
97
|
| `python -m webscout answers -k "query"` | Perform an answers search |
|
|
@@ -101,6 +106,32 @@ python -m webscout --help
|
|
|
101
106
|
| `python -m webscout videos -k "query"` | Search for videos |
|
|
102
107
|
| `python -m webscout weather -l "location"` | Get weather information |
|
|
103
108
|
|
|
109
|
+
### Inferno LLM Commands
|
|
110
|
+
|
|
111
|
+
Inferno provides commands for managing and using local LLMs:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
python -m inferno --help
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
| Command | Description |
|
|
118
|
+
|---------|-------------|
|
|
119
|
+
| `python -m inferno pull <model>` | Download a model from Hugging Face |
|
|
120
|
+
| `python -m inferno list` | List downloaded models |
|
|
121
|
+
| `python -m inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
122
|
+
| `python -m inferno run <model>` | Chat with a model interactively |
|
|
123
|
+
| `python -m inferno remove <model>` | Remove a downloaded model |
|
|
124
|
+
| `python -m inferno version` | Show version information |
|
|
125
|
+
|
|
126
|
+
> [!NOTE]
|
|
127
|
+
> Hardware requirements for running models:
|
|
128
|
+
> - Around 2 GB of RAM for 1B models
|
|
129
|
+
> - Around 4 GB of RAM for 3B models
|
|
130
|
+
> - At least 8 GB of RAM for 7B models
|
|
131
|
+
> - 16 GB of RAM for 13B models
|
|
132
|
+
> - 32 GB of RAM for 33B models
|
|
133
|
+
> - GPU acceleration is recommended for better performance
|
|
134
|
+
|
|
104
135
|
|
|
105
136
|
|
|
106
137
|
## 🔍 Search Engines
|
|
@@ -12,13 +12,19 @@ setup(
|
|
|
12
12
|
long_description_content_type="text/markdown",
|
|
13
13
|
author="OEvortex",
|
|
14
14
|
author_email="helpingai5@gmail.com",
|
|
15
|
-
packages=find_packages(),
|
|
15
|
+
packages=find_packages() + ['inferno'],
|
|
16
16
|
python_requires=">=3.9",
|
|
17
17
|
classifiers=[
|
|
18
18
|
"Development Status :: 5 - Production/Stable",
|
|
19
19
|
"Intended Audience :: Developers",
|
|
20
|
+
"Intended Audience :: End Users/Desktop",
|
|
21
|
+
"Intended Audience :: Science/Research",
|
|
20
22
|
"License :: Other/Proprietary License",
|
|
23
|
+
"Natural Language :: English",
|
|
21
24
|
"Operating System :: OS Independent",
|
|
25
|
+
"Operating System :: Microsoft :: Windows",
|
|
26
|
+
"Operating System :: POSIX :: Linux",
|
|
27
|
+
"Operating System :: MacOS :: MacOS X",
|
|
22
28
|
"Programming Language :: Python :: 3",
|
|
23
29
|
"Programming Language :: Python :: 3.9",
|
|
24
30
|
"Programming Language :: Python :: 3.10",
|
|
@@ -28,45 +34,52 @@ setup(
|
|
|
28
34
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
29
35
|
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
30
36
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
37
|
+
"Topic :: Text Processing :: Linguistic",
|
|
38
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
39
|
+
"Topic :: Communications",
|
|
40
|
+
"Topic :: Utilities",
|
|
41
|
+
],
|
|
42
|
+
keywords="search, ai, chatbot, llm, language-model, gpt, openai, gemini, claude, llama, search-engine, text-to-speech, tts, text-to-image, tti, weather, youtube, toolkit, utilities, web-search, duckduckgo, google, yep",
|
|
43
|
+
install_requires=[
|
|
44
|
+
"setuptools",
|
|
45
|
+
"wheel",
|
|
46
|
+
"pip",
|
|
47
|
+
"nodriver",
|
|
48
|
+
"mistune",
|
|
49
|
+
"tenacity",
|
|
50
|
+
"curl_cffi",
|
|
51
|
+
"nest-asyncio",
|
|
52
|
+
'websocket-client',
|
|
53
|
+
'colorama',
|
|
54
|
+
"rich",
|
|
55
|
+
"markdownify",
|
|
56
|
+
"requests",
|
|
57
|
+
"google-generativeai",
|
|
58
|
+
"lxml>=5.2.2",
|
|
59
|
+
"termcolor",
|
|
60
|
+
"orjson",
|
|
61
|
+
"PyYAML",
|
|
62
|
+
"ollama",
|
|
63
|
+
"pillow",
|
|
64
|
+
"bson",
|
|
65
|
+
"cloudscraper",
|
|
66
|
+
"html5lib",
|
|
67
|
+
"aiofiles",
|
|
68
|
+
"openai",
|
|
69
|
+
"prompt-toolkit",
|
|
70
|
+
"primp",
|
|
71
|
+
"pyreqwest_impersonate",
|
|
72
|
+
"gradio_client",
|
|
73
|
+
"psutil",
|
|
74
|
+
"aiohttp",
|
|
31
75
|
],
|
|
32
|
-
install_requires=[
|
|
33
|
-
"setuptools",
|
|
34
|
-
"wheel",
|
|
35
|
-
"pip",
|
|
36
|
-
"nodriver",
|
|
37
|
-
"mistune",
|
|
38
|
-
"tenacity",
|
|
39
|
-
"curl_cffi",
|
|
40
|
-
"nest-asyncio",
|
|
41
|
-
'websocket-client',
|
|
42
|
-
'colorama',
|
|
43
|
-
"rich",
|
|
44
|
-
"markdownify",
|
|
45
|
-
"requests",
|
|
46
|
-
"google-generativeai",
|
|
47
|
-
"lxml>=5.2.2",
|
|
48
|
-
"termcolor",
|
|
49
|
-
"orjson",
|
|
50
|
-
"PyYAML",
|
|
51
|
-
"ollama",
|
|
52
|
-
"pillow",
|
|
53
|
-
"bson",
|
|
54
|
-
"cloudscraper",
|
|
55
|
-
"html5lib",
|
|
56
|
-
"aiofiles",
|
|
57
|
-
"openai",
|
|
58
|
-
"prompt-toolkit",
|
|
59
|
-
"primp",
|
|
60
|
-
"pyreqwest_impersonate",
|
|
61
|
-
"gradio_client",
|
|
62
|
-
"psutil",
|
|
63
|
-
"aiohttp",
|
|
64
|
-
],
|
|
65
76
|
|
|
66
77
|
entry_points={
|
|
67
78
|
"console_scripts": [
|
|
68
79
|
"WEBS = webscout.cli:cli",
|
|
69
80
|
"webscout = webscout.cli:cli",
|
|
81
|
+
"inferno = webscout.Local.cli:app",
|
|
82
|
+
"webscout-local = webscout.Local.cli:app",
|
|
70
83
|
],
|
|
71
84
|
},
|
|
72
85
|
extras_require={
|
|
@@ -74,6 +87,16 @@ setup(
|
|
|
74
87
|
"ruff>=0.1.6",
|
|
75
88
|
"pytest>=7.4.2",
|
|
76
89
|
],
|
|
90
|
+
"Local": [
|
|
91
|
+
"llama-cpp-python",
|
|
92
|
+
"fastapi",
|
|
93
|
+
"uvicorn",
|
|
94
|
+
"rich",
|
|
95
|
+
"typer",
|
|
96
|
+
"huggingface_hub",
|
|
97
|
+
"pydantic",
|
|
98
|
+
"requests",
|
|
99
|
+
],
|
|
77
100
|
},
|
|
78
101
|
license="HelpingAI",
|
|
79
102
|
project_urls={
|