webscout 1.3.1__py3-none-any.whl → 1.3.3__py3-none-any.whl

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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 1.3.1
3
+ Version: 1.3.3
4
4
  Summary: Search for words, documents, images, videos, news, maps and text translation using the Google, DuckDuckGo.com, yep.com, phind.com, you.com, etc Also containes AI models, can transcribe yt videos and have TTS support
5
5
  Author: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -64,7 +64,6 @@ Search for words, documents, images, videos, news, maps and text translation usi
64
64
  - [Table of Contents](#table-of-contents)
65
65
  - [Install](#install)
66
66
  - [CLI version](#cli-version)
67
- - [CLI version of webscout.AI](#cli-version-of-webscoutai)
68
67
  - [CLI to use LLM](#cli-to-use-llm)
69
68
  - [Regions](#regions)
70
69
  - [Transcriber](#transcriber)
@@ -97,6 +96,7 @@ Search for words, documents, images, videos, news, maps and text translation usi
97
96
  - [7. `PERPLEXITY` - Search With PERPLEXITY](#7-perplexity---search-with-perplexity)
98
97
  - [8. `OpenGPT` - chat With OPENGPT](#8-opengpt---chat-with-opengpt)
99
98
  - [9. `KOBOLDIA` -](#9-koboldia--)
99
+ - [10. `Sean` - chat With Sean](#10-sean---chat-with-sean)
100
100
  - [usage of special .LLM file from webscout (webscout.LLM)](#usage-of-special-llm-file-from-webscout-webscoutllm)
101
101
  - [`LLM`](#llm)
102
102
  - [`LLM` with internet](#llm-with-internet)
@@ -125,19 +125,6 @@ python -m webscout --help
125
125
 
126
126
 
127
127
 
128
- ## CLI version of webscout.AI
129
- | Command | Description |
130
- |-----------------------------------------------|--------------------------------------------------------------------------------------------------------|
131
- | `python -m webscout.AI phindsearch --prompt "your search query"` | CLI function to perform a search query using Webscout.AI's Phindsearch feature. |
132
- | `python -m webscout.AI yepchat --message "your_message_here"` | CLI function to send a message using Webscout.AI's Yepchat feature. |
133
- | `python -m webscout.AI youchat --prompt "your_prompt_here"` | CLI function to generate a response based on a prompt using Webscout.AI's Youchat feature. |
134
- | `python -m webscout.AI gemini --message "tell me about gemma 7b"` | CLI function to get information about a specific topic using Webscout.AI's Gemini feature. |
135
- | `python -m webscout.AI prodia --prompt "car"` | CLI function to generate content related to a prompt using Webscout.AI's Prodia feature. |
136
- | `python -m webscout.AI blackboxai --prompt "Your prompt here"` | CLI function to perform a search using Webscout.AI's Blackbox search feature. |
137
- | `python -m webscout.AI perplexity --prompt "Your prompt here"` | CLI function to perform a search using Webscout.AI's PERPLEXITY feature. |
138
- | `python -m webscout.AI opengpt --prompt "Your prompt here"` | CLI function to perform a search using Webscout.AI's OPENGPT feature. |
139
-
140
-
141
128
  ## CLI to use LLM
142
129
  ```python
143
130
  python -m webscout.LLM model_name
@@ -697,6 +684,16 @@ response = koboldai.ask(prompt)
697
684
  message = koboldai.get_message(response)
698
685
  print(message)
699
686
 
687
+ ```
688
+ ### 10. `Sean` - chat With Sean
689
+ ```python
690
+ from webscout.AI import Sean
691
+
692
+ a = Sean(is_conversation=True, max_tokens=8000, timeout=30)
693
+ # This example sends a simple greeting and prints the response
694
+ prompt = "tell me about india"
695
+ response_str = a.chat(prompt)
696
+ print(response_str)
700
697
  ```
701
698
 
702
699
  ## usage of special .LLM file from webscout (webscout.LLM)
@@ -10,26 +10,28 @@ DeepWEBS/networks/webpage_fetcher.py,sha256=d5paDTB3wa_w6YWmLV7RkpAj8Lh8ztuUuyfe
10
10
  DeepWEBS/utilsdw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  DeepWEBS/utilsdw/enver.py,sha256=vstxg_5P3Rwo1en6oPcuc2SBiATJqxi4C7meGmw5w0M,1754
12
12
  DeepWEBS/utilsdw/logger.py,sha256=Z0nFUcEGyU8r28yKiIyvEtO26xxpmJgbvNToTfwZecc,8174
13
- webscout/AI.py,sha256=WYi-JbbiXtQM14juJ-WgsahgQEEb7U82YElDX9TfHAI,57985
13
+ webscout/AI.py,sha256=9ZEctvGx558mmCva6c9lB5c0pbU-of5azle2F4Mpqhg,93054
14
14
  webscout/AIbase.py,sha256=vQi2ougu5bG-QdmoYmxCQsOg7KTEgG7EF6nZh5qqUGw,2343
15
- webscout/AIutel.py,sha256=fNN4mmjXcxjJGq2CVJP1MU2oQ78p8OyExQBjVif6e-k,24123
15
+ webscout/AIutel.py,sha256=j8NY4AgJbq3YLosX2R3QShtmjIM0UivXS_iCoMSIZiY,24126
16
16
  webscout/DWEBS.py,sha256=QT-7-dUgWhQ_H7EVZD53AVyXxyskoPMKCkFIpzkN56Q,7332
17
17
  webscout/HelpingAI.py,sha256=YeZw0zYVHMcBFFPNdd3_Ghpm9ebt_EScQjHO_IIs4lg,8103
18
18
  webscout/LLM.py,sha256=CiDz0okZNEoXuxMwadZnwRGSLpqk2zg0vzvXSxQZjcE,1910
19
- webscout/__init__.py,sha256=rgmTILV0qx0x2PVdMq7flk5nas102sQN5z8p_OZaTzg,572
19
+ webscout/__init__.py,sha256=rUXt0AOHdvrt53bAswMWToZ2bvqQ4of93xKd4xGl0uY,957
20
20
  webscout/__main__.py,sha256=ZtTRgsRjUi2JOvYFLF1ZCh55Sdoz94I-BS-TlJC7WDU,126
21
21
  webscout/cli.py,sha256=F888fdrFUQgczMBN4yMOSf6Nh-IbvkqpPhDsbnA2FtQ,17059
22
22
  webscout/exceptions.py,sha256=4AOO5wexeL96nvUS-badcckcwrPS7UpZyAgB9vknHZE,276
23
+ webscout/g4f.py,sha256=9ovf-gLMDC3Bt6zGrwmZ3_PJh5fSVR4ipOlsaYxbgU0,16358
23
24
  webscout/models.py,sha256=5iQIdtedT18YuTZ3npoG7kLMwcrKwhQ7928dl_7qZW0,692
24
25
  webscout/transcriber.py,sha256=EddvTSq7dPJ42V3pQVnGuEiYQ7WjJ9uyeR9kMSxN7uY,20622
25
26
  webscout/utils.py,sha256=c_98M4oqpb54pUun3fpGGlCerFD6ZHUbghyp5b7Mwgo,2605
26
- webscout/version.py,sha256=xBny7vFjm_5sB7eDRX5tmYecHaNfJlEkwuSeLudsFXo,25
27
+ webscout/version.py,sha256=EBB5uHyxxWvfz74zmklK5pUUb8DUYMAu8yaJy9KwDEU,25
27
28
  webscout/voice.py,sha256=1Ids_2ToPBMX0cH_UyPMkY_6eSE9H4Gazrl0ujPmFag,941
29
+ webscout/webai.py,sha256=DdBuz2B_V1M-OIt6dPAn5LV0eNFBWn2hTP2cJy2qklI,73868
28
30
  webscout/webscout_search.py,sha256=3_lli-hDb8_kCGwscK29xuUcOS833ROgpNhDzrxh0dk,3085
29
31
  webscout/webscout_search_async.py,sha256=Y5frH0k3hLqBCR-8dn7a_b7EvxdYxn6wHiKl3jWosE0,40670
30
- webscout-1.3.1.dist-info/LICENSE.md,sha256=mRVwJuT4SXC5O93BFdsfWBjlXjGn2Np90Zm5SocUzM0,3150
31
- webscout-1.3.1.dist-info/METADATA,sha256=Lqt3sYRj9TpssiZ_mD3z0Sh_UrdVPPm5L9o0hPAIFWw,31547
32
- webscout-1.3.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
33
- webscout-1.3.1.dist-info/entry_points.txt,sha256=8-93eRslYrzTHs5E-6yFRJrve00C9q-SkXJD113jzRY,197
34
- webscout-1.3.1.dist-info/top_level.txt,sha256=OD5YKy6Y3hldL7SmuxsiEDxAG4LgdSSWwzYk22MF9fk,18
35
- webscout-1.3.1.dist-info/RECORD,,
32
+ webscout-1.3.3.dist-info/LICENSE.md,sha256=mRVwJuT4SXC5O93BFdsfWBjlXjGn2Np90Zm5SocUzM0,3150
33
+ webscout-1.3.3.dist-info/METADATA,sha256=VguyWlPTREI2JlEi3pMK1CPD1-JJjGabRqYmdxSd73k,30440
34
+ webscout-1.3.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
35
+ webscout-1.3.3.dist-info/entry_points.txt,sha256=8-93eRslYrzTHs5E-6yFRJrve00C9q-SkXJD113jzRY,197
36
+ webscout-1.3.3.dist-info/top_level.txt,sha256=OD5YKy6Y3hldL7SmuxsiEDxAG4LgdSSWwzYk22MF9fk,18
37
+ webscout-1.3.3.dist-info/RECORD,,