webscout 5.5__py3-none-any.whl → 5.6__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.
- webscout/Agents/Onlinesearcher.py +3 -3
- webscout/Agents/__init__.py +0 -1
- webscout/Agents/functioncall.py +3 -3
- webscout/Provider/Bing.py +243 -0
- webscout/Provider/Chatify.py +1 -1
- webscout/Provider/Cloudflare.py +1 -1
- webscout/Provider/DARKAI.py +1 -1
- webscout/Provider/DiscordRocks.py +109 -246
- webscout/Provider/Farfalle.py +1 -1
- webscout/Provider/Free2GPT.py +234 -0
- webscout/{Agents/ai.py → Provider/GPTWeb.py} +40 -33
- webscout/Provider/Llama3.py +65 -62
- webscout/Provider/OLLAMA.py +1 -1
- webscout/Provider/PizzaGPT.py +1 -1
- webscout/Provider/RUBIKSAI.py +13 -3
- webscout/Provider/TTI/Nexra.py +120 -0
- webscout/Provider/TTI/__init__.py +3 -1
- webscout/Provider/TTI/blackboximage.py +153 -0
- webscout/Provider/TTI/deepinfra.py +2 -2
- webscout/Provider/TeachAnything.py +1 -1
- webscout/Provider/Youchat.py +1 -1
- webscout/Provider/__init__.py +11 -6
- webscout/Provider/{NetFly.py → aigames.py} +76 -79
- webscout/Provider/cleeai.py +1 -1
- webscout/Provider/elmo.py +1 -1
- webscout/Provider/felo_search.py +1 -1
- webscout/Provider/genspark.py +1 -1
- webscout/Provider/julius.py +7 -1
- webscout/Provider/lepton.py +1 -1
- webscout/Provider/meta.py +1 -1
- webscout/Provider/turboseek.py +1 -1
- webscout/Provider/upstage.py +230 -0
- webscout/Provider/x0gpt.py +1 -1
- webscout/Provider/xdash.py +1 -1
- webscout/Provider/yep.py +2 -2
- webscout/version.py +1 -1
- webscout/webai.py +1 -1
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/METADATA +5 -29
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/RECORD +43 -39
- webscout/Provider/ThinkAnyAI.py +0 -219
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/LICENSE.md +0 -0
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/WHEEL +0 -0
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/entry_points.txt +0 -0
- {webscout-5.5.dist-info → webscout-5.6.dist-info}/top_level.txt +0 -0
webscout/Provider/meta.py
CHANGED
webscout/Provider/turboseek.py
CHANGED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import requests
|
|
2
|
+
import json
|
|
3
|
+
from typing import Any, Dict, Optional
|
|
4
|
+
|
|
5
|
+
from webscout.AIutel import Optimizers
|
|
6
|
+
from webscout.AIutel import Conversation
|
|
7
|
+
from webscout.AIutel import AwesomePrompts, sanitize_stream
|
|
8
|
+
from webscout.AIbase import Provider
|
|
9
|
+
from webscout import exceptions
|
|
10
|
+
|
|
11
|
+
class Upstage(Provider):
|
|
12
|
+
"""
|
|
13
|
+
A class to interact with the Upstage API.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
AVAILABLE_MODELS = [
|
|
17
|
+
"upstage/solar-1-mini-chat",
|
|
18
|
+
"upstage/solar-1-mini-chat-ja",
|
|
19
|
+
"solar-pro"
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
is_conversation: bool = True,
|
|
25
|
+
max_tokens: int = 600,
|
|
26
|
+
timeout: int = 30,
|
|
27
|
+
intro: str = None,
|
|
28
|
+
filepath: str = None,
|
|
29
|
+
update_file: bool = True,
|
|
30
|
+
proxies: dict = {},
|
|
31
|
+
history_offset: int = 10250,
|
|
32
|
+
act: str = None,
|
|
33
|
+
model: str = "upstage/solar-1-mini-chat",
|
|
34
|
+
) -> None:
|
|
35
|
+
"""
|
|
36
|
+
Initializes the Upstage API with given parameters.
|
|
37
|
+
|
|
38
|
+
Args:
|
|
39
|
+
is_conversation (bool, optional): Flag for chatting conversationally. Defaults to True.
|
|
40
|
+
max_tokens (int, optional): Maximum number of tokens to be generated upon completion.
|
|
41
|
+
Defaults to 600.
|
|
42
|
+
timeout (int, optional): Http request timeout. Defaults to 30.
|
|
43
|
+
intro (str, optional): Conversation introductory prompt. Defaults to None.
|
|
44
|
+
filepath (str, optional): Path to file containing conversation history. Defaults to None.
|
|
45
|
+
update_file (bool, optional): Add new prompts and responses to the file. Defaults to True.
|
|
46
|
+
proxies (dict, optional): Http request proxies. Defaults to {}.
|
|
47
|
+
history_offset (int, optional): Limit conversation history to this number of last texts.
|
|
48
|
+
Defaults to 10250.
|
|
49
|
+
act (str|int, optional): Awesome prompt key or index. (Used as intro). Defaults to None.
|
|
50
|
+
model (str, optional): AI model to use. Defaults to "upstage/solar-1-mini-chat".
|
|
51
|
+
Available models: "upstage/solar-1-mini-chat",
|
|
52
|
+
"upstage/solar-1-mini-chat-ja",
|
|
53
|
+
"solar-pro"
|
|
54
|
+
"""
|
|
55
|
+
if model not in self.AVAILABLE_MODELS:
|
|
56
|
+
raise ValueError(f"Invalid model: {model}. Choose from: {self.AVAILABLE_MODELS}")
|
|
57
|
+
|
|
58
|
+
self.session = requests.Session()
|
|
59
|
+
self.is_conversation = is_conversation
|
|
60
|
+
self.max_tokens_to_sample = max_tokens
|
|
61
|
+
self.api_endpoint = "https://ap-northeast-2.apistage.ai/v1/web/demo/chat/completions"
|
|
62
|
+
self.stream_chunk_size = 64
|
|
63
|
+
self.timeout = timeout
|
|
64
|
+
self.last_response = {}
|
|
65
|
+
self.model = model
|
|
66
|
+
self.headers = {
|
|
67
|
+
"Content-Type": "application/json",
|
|
68
|
+
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0",
|
|
69
|
+
"Origin": "https://console.upstage.ai",
|
|
70
|
+
"Referer": "https://console.upstage.ai/"
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
self.__available_optimizers = (
|
|
74
|
+
method
|
|
75
|
+
for method in dir(Optimizers)
|
|
76
|
+
if callable(getattr(Optimizers, method)) and not method.startswith("__")
|
|
77
|
+
)
|
|
78
|
+
self.session.headers.update(self.headers)
|
|
79
|
+
Conversation.intro = (
|
|
80
|
+
AwesomePrompts().get_act(
|
|
81
|
+
act, raise_not_found=True, default=None, case_insensitive=True
|
|
82
|
+
)
|
|
83
|
+
if act
|
|
84
|
+
else intro or Conversation.intro
|
|
85
|
+
)
|
|
86
|
+
self.conversation = Conversation(
|
|
87
|
+
is_conversation, self.max_tokens_to_sample, filepath, update_file
|
|
88
|
+
)
|
|
89
|
+
self.conversation.history_offset = history_offset
|
|
90
|
+
self.session.proxies = proxies
|
|
91
|
+
|
|
92
|
+
def ask(
|
|
93
|
+
self,
|
|
94
|
+
prompt: str,
|
|
95
|
+
stream: bool = False,
|
|
96
|
+
raw: bool = False,
|
|
97
|
+
optimizer: str = None,
|
|
98
|
+
conversationally: bool = False,
|
|
99
|
+
) -> Dict[str, Any]:
|
|
100
|
+
"""
|
|
101
|
+
Sends a prompt to the Upstage API and returns the response.
|
|
102
|
+
|
|
103
|
+
Args:
|
|
104
|
+
prompt: The text prompt to generate text from.
|
|
105
|
+
stream (bool, optional): Whether to stream the response. Defaults to False.
|
|
106
|
+
raw (bool, optional): Whether to return the raw response. Defaults to False.
|
|
107
|
+
optimizer (str, optional): The name of the optimizer to use. Defaults to None.
|
|
108
|
+
conversationally (bool, optional): Whether to chat conversationally. Defaults to False.
|
|
109
|
+
|
|
110
|
+
Returns:
|
|
111
|
+
The response from the API.
|
|
112
|
+
"""
|
|
113
|
+
conversation_prompt = self.conversation.gen_complete_prompt(prompt)
|
|
114
|
+
if optimizer:
|
|
115
|
+
if optimizer in self.__available_optimizers:
|
|
116
|
+
conversation_prompt = getattr(Optimizers, optimizer)(
|
|
117
|
+
conversation_prompt if conversationally else prompt
|
|
118
|
+
)
|
|
119
|
+
else:
|
|
120
|
+
raise Exception(
|
|
121
|
+
f"Optimizer is not one of {self.__available_optimizers}"
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
payload = {
|
|
125
|
+
"stream": True,
|
|
126
|
+
"messages": [
|
|
127
|
+
{
|
|
128
|
+
"role": "user",
|
|
129
|
+
"content": conversation_prompt
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"model": self.model
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
def for_stream():
|
|
136
|
+
response = self.session.post(
|
|
137
|
+
self.api_endpoint, headers=self.headers, json=payload, stream=True, timeout=self.timeout
|
|
138
|
+
)
|
|
139
|
+
|
|
140
|
+
if not response.ok:
|
|
141
|
+
# If 'solar-pro' fails, try mini-chat model
|
|
142
|
+
if self.model == "solar-pro":
|
|
143
|
+
print("solar-pro failed. Trying 'upstage/solar-1-mini-chat'...")
|
|
144
|
+
self.model = "upstage/solar-1-mini-chat"
|
|
145
|
+
return self.ask(prompt, stream, raw, optimizer, conversationally) # Retry with mini-chat
|
|
146
|
+
|
|
147
|
+
raise exceptions.FailedToGenerateResponseError(
|
|
148
|
+
f"Failed to generate response - ({response.status_code}, {response.reason})"
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
streaming_response = ""
|
|
152
|
+
for line in response.iter_lines(decode_unicode=True):
|
|
153
|
+
if line:
|
|
154
|
+
if line.startswith("data: "):
|
|
155
|
+
data = line[6:] # Remove 'data: ' prefix
|
|
156
|
+
if data != "[DONE]":
|
|
157
|
+
try:
|
|
158
|
+
json_data = json.loads(data)
|
|
159
|
+
content = json_data['choices'][0]['delta'].get('content', '')
|
|
160
|
+
if content:
|
|
161
|
+
streaming_response += content
|
|
162
|
+
yield content if raw else dict(text=streaming_response)
|
|
163
|
+
except json.JSONDecodeError:
|
|
164
|
+
print(f"Error decoding JSON: {data}")
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
self.last_response.update(dict(text=streaming_response))
|
|
168
|
+
self.conversation.update_chat_history(
|
|
169
|
+
prompt, self.get_message(self.last_response)
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
def for_non_stream():
|
|
173
|
+
for _ in for_stream():
|
|
174
|
+
pass
|
|
175
|
+
return self.last_response
|
|
176
|
+
|
|
177
|
+
return for_stream() if stream else for_non_stream()
|
|
178
|
+
|
|
179
|
+
def chat(
|
|
180
|
+
self,
|
|
181
|
+
prompt: str,
|
|
182
|
+
stream: bool = False,
|
|
183
|
+
optimizer: str = None,
|
|
184
|
+
conversationally: bool = False,
|
|
185
|
+
) -> str:
|
|
186
|
+
"""Generate response `str`
|
|
187
|
+
Args:
|
|
188
|
+
prompt (str): Prompt to be send.
|
|
189
|
+
stream (bool, optional): Flag for streaming response. Defaults to False.
|
|
190
|
+
optimizer (str, optional): Prompt optimizer name - `[code, shell_command]`. Defaults to None.
|
|
191
|
+
conversationally (bool, optional): Chat conversationally when using optimizer. Defaults to False.
|
|
192
|
+
Returns:
|
|
193
|
+
str: Response generated
|
|
194
|
+
"""
|
|
195
|
+
|
|
196
|
+
def for_stream():
|
|
197
|
+
for response in self.ask(
|
|
198
|
+
prompt, True, optimizer=optimizer, conversationally=conversationally
|
|
199
|
+
):
|
|
200
|
+
yield self.get_message(response)
|
|
201
|
+
|
|
202
|
+
def for_non_stream():
|
|
203
|
+
return self.get_message(
|
|
204
|
+
self.ask(
|
|
205
|
+
prompt,
|
|
206
|
+
False,
|
|
207
|
+
optimizer=optimizer,
|
|
208
|
+
conversationally=conversationally,
|
|
209
|
+
)
|
|
210
|
+
)
|
|
211
|
+
|
|
212
|
+
return for_stream() if stream else for_non_stream()
|
|
213
|
+
|
|
214
|
+
def get_message(self, response: dict) -> str:
|
|
215
|
+
"""Retrieves message only from response
|
|
216
|
+
|
|
217
|
+
Args:
|
|
218
|
+
response (dict): Response generated by `self.ask`
|
|
219
|
+
|
|
220
|
+
Returns:
|
|
221
|
+
str: Message extracted
|
|
222
|
+
"""
|
|
223
|
+
assert isinstance(response, dict), "Response should be of dict data-type only"
|
|
224
|
+
return response["text"]
|
|
225
|
+
if __name__ == '__main__':
|
|
226
|
+
from rich import print
|
|
227
|
+
ai = Upstage()
|
|
228
|
+
response = ai.chat("hi")
|
|
229
|
+
for chunk in response:
|
|
230
|
+
print(chunk, end="", flush=True)
|
webscout/Provider/x0gpt.py
CHANGED
webscout/Provider/xdash.py
CHANGED
webscout/Provider/yep.py
CHANGED
|
@@ -467,7 +467,7 @@ if __name__ == "__main__":
|
|
|
467
467
|
else:
|
|
468
468
|
return "No results found for your query."
|
|
469
469
|
|
|
470
|
-
ai = YEPCHAT(Tools=
|
|
470
|
+
ai = YEPCHAT(Tools=False)
|
|
471
471
|
|
|
472
472
|
ai.tool_registry.register_tool("get_current_time", get_current_time, "Gets the current time.")
|
|
473
473
|
ai.tool_registry.register_tool(
|
|
@@ -495,6 +495,6 @@ if __name__ == "__main__":
|
|
|
495
495
|
},
|
|
496
496
|
)
|
|
497
497
|
|
|
498
|
-
response = ai.chat(
|
|
498
|
+
response = ai.chat("hi")
|
|
499
499
|
for chunk in response:
|
|
500
500
|
print(chunk, end="", flush=True)
|
webscout/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "5.
|
|
1
|
+
__version__ = "5.6"
|
|
2
2
|
__prog__ = "webscout"
|
webscout/webai.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.6
|
|
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
|
|
@@ -54,6 +54,7 @@ Requires-Dist: bson
|
|
|
54
54
|
Requires-Dist: cloudscraper
|
|
55
55
|
Requires-Dist: emoji
|
|
56
56
|
Requires-Dist: openai
|
|
57
|
+
Requires-Dist: prompt-toolkit
|
|
57
58
|
Provides-Extra: dev
|
|
58
59
|
Requires-Dist: ruff >=0.1.6 ; extra == 'dev'
|
|
59
60
|
Requires-Dist: pytest >=7.4.2 ; extra == 'dev'
|
|
@@ -830,7 +831,8 @@ print(result)
|
|
|
830
831
|
___
|
|
831
832
|
</details>
|
|
832
833
|
|
|
833
|
-
### Text to images - DeepInfraImager, PollinationsAI
|
|
834
|
+
### Text to images - DeepInfraImager, PollinationsAI, BlackboxAIImager, AiForceimagger, NexraImager
|
|
835
|
+
**Every TTI provider have same usage code just u need to change import **
|
|
834
836
|
```python
|
|
835
837
|
from webscout import DeepInfraImager
|
|
836
838
|
bot = DeepInfraImager()
|
|
@@ -1067,32 +1069,6 @@ print(response_str)
|
|
|
1067
1069
|
```
|
|
1068
1070
|
|
|
1069
1071
|
|
|
1070
|
-
### `ThinkAny` - AI search engine
|
|
1071
|
-
```python
|
|
1072
|
-
from webscout import ThinkAnyAI
|
|
1073
|
-
|
|
1074
|
-
ai = ThinkAnyAI(
|
|
1075
|
-
is_conversation=True,
|
|
1076
|
-
max_tokens=800,
|
|
1077
|
-
timeout=30,
|
|
1078
|
-
intro=None,
|
|
1079
|
-
filepath=None,
|
|
1080
|
-
update_file=True,
|
|
1081
|
-
proxies={},
|
|
1082
|
-
history_offset=10250,
|
|
1083
|
-
act=None,
|
|
1084
|
-
web_search=False,
|
|
1085
|
-
)
|
|
1086
|
-
|
|
1087
|
-
prompt = "what is meaning of life"
|
|
1088
|
-
|
|
1089
|
-
response = ai.ask(prompt)
|
|
1090
|
-
|
|
1091
|
-
# Extract and print the message from the response
|
|
1092
|
-
message = ai.get_message(response)
|
|
1093
|
-
print(message)
|
|
1094
|
-
```
|
|
1095
|
-
|
|
1096
1072
|
### `poe`- chat with poe
|
|
1097
1073
|
Usage code similar to other proviers
|
|
1098
1074
|
|
|
@@ -1406,7 +1382,7 @@ if "error" not in function_call_data:
|
|
|
1406
1382
|
else:
|
|
1407
1383
|
print(f"Error: {function_call_data['error']}")
|
|
1408
1384
|
```
|
|
1409
|
-
### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, XDASH, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek,
|
|
1385
|
+
### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, XDASH, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Genspark, Upstage, Free2GPT, Bing, DiscordRocks
|
|
1410
1386
|
code similar to other provider
|
|
1411
1387
|
### `LLM`
|
|
1412
1388
|
```python
|
|
@@ -15,15 +15,14 @@ webscout/models.py,sha256=5iQIdtedT18YuTZ3npoG7kLMwcrKwhQ7928dl_7qZW0,692
|
|
|
15
15
|
webscout/tempid.py,sha256=2a_YDFUCZy3TJVfqEPSLyMvHBjDk9gp5FiFCvJwsOaw,7984
|
|
16
16
|
webscout/transcriber.py,sha256=kRymTd69zCjXdduCf7Gabt93Kz1l5ubsCwfwqs-pHl8,22334
|
|
17
17
|
webscout/utils.py,sha256=2O8_lftBKsv5OEvVaXCN-h0sipup0m3jxzhFdWQrdY8,2873
|
|
18
|
-
webscout/version.py,sha256=
|
|
19
|
-
webscout/webai.py,sha256=
|
|
18
|
+
webscout/version.py,sha256=KI08BdmiHfkATxodx2s7Sg3CRosdzWRVqGfRbT9rh7c,44
|
|
19
|
+
webscout/webai.py,sha256=MzDWMFv8oI3wmeL3SwvxUrZdBRyh9MMn97kNTvgL5T4,87744
|
|
20
20
|
webscout/webscout_search.py,sha256=AOHkaMLmFvM1mS--wVyLiPrDAb5BPLaURBHjleWOi4w,43743
|
|
21
21
|
webscout/webscout_search_async.py,sha256=2-RCa9Deahhw3Bti78kXfVaX8y3Aygy4L7HeCaITk9M,14519
|
|
22
22
|
webscout/websx_search.py,sha256=5hfkkmGFhyQzojUpvMzIOJ3DBZIBNS90UReaacsfu6s,521
|
|
23
|
-
webscout/Agents/Onlinesearcher.py,sha256=
|
|
24
|
-
webscout/Agents/__init__.py,sha256=
|
|
25
|
-
webscout/Agents/
|
|
26
|
-
webscout/Agents/functioncall.py,sha256=zMGF1H9fGz05lcJryqST0qkh44kTgbESUZaIfZkO1J0,7645
|
|
23
|
+
webscout/Agents/Onlinesearcher.py,sha256=Ra0LlPRPTcAt4Ahej4ao-EekvD77V_7LKv5GQcPMGyw,6556
|
|
24
|
+
webscout/Agents/__init__.py,sha256=qJXx2Q1yAupE0FJabXvs49Nxwm3IsREyuMWp8Q1VYiE,60
|
|
25
|
+
webscout/Agents/functioncall.py,sha256=aOyYu_CdZlZEC1XYI73aSCdJoj1IR--o_Do9NNzfO8g,7615
|
|
27
26
|
webscout/Extra/__init__.py,sha256=GG1qUwS-HspT4TeeAIT4qFpM8PaO1ZdQhpelctaM7Rs,99
|
|
28
27
|
webscout/Extra/autollama.py,sha256=qM8alxlWzg10BGIYKZBUtIEAXrkvEOWBwSxdPp3zq9I,6226
|
|
29
28
|
webscout/Extra/gguf.py,sha256=RvSp7xuaD6epAA9iAzthUnAQ3HA5N-svMyKUadAVnw8,7009
|
|
@@ -40,60 +39,65 @@ webscout/Local/utils.py,sha256=CSt9IqHhVGk_nJEnKvSFbLhC5nNf01e0MtwpgMmF9pA,6197
|
|
|
40
39
|
webscout/Provider/AI21.py,sha256=JBh-xnspxTZNMcl-Gd0Cgseqht9gTM64TUv9I4Imc9k,6218
|
|
41
40
|
webscout/Provider/Andi.py,sha256=mKhrnN_TR3rVEBy-oZosEcujF83hISiFeBVM1mHYz2k,10107
|
|
42
41
|
webscout/Provider/BasedGPT.py,sha256=u1s72bQ33iuBqf5u7SWdez8_Eu7MTCM_iZoEW91t9CI,8309
|
|
42
|
+
webscout/Provider/Bing.py,sha256=zxIzq7dlqaLskx9LsYppbMJuwfGtYid3Uh0gIhZ0hps,9001
|
|
43
43
|
webscout/Provider/Blackboxai.py,sha256=ioEhw03eiM65tPvgyZKOCGFzqOT8la59W7HydNGILIw,16815
|
|
44
|
-
webscout/Provider/Chatify.py,sha256=
|
|
45
|
-
webscout/Provider/Cloudflare.py,sha256=
|
|
44
|
+
webscout/Provider/Chatify.py,sha256=CL3fJuCOHkS9fEDcKaEKaiNkuHpRJsS3ioJvGL3sBw0,6333
|
|
45
|
+
webscout/Provider/Cloudflare.py,sha256=018DBwjEpMYp7UeMF1A0Ec7a329GWis-bqicTG3gPbk,10768
|
|
46
46
|
webscout/Provider/Cohere.py,sha256=oL9kAv--RSkEQxwkPTq1Wi57Wkgg0WNvL82CpTj22YY,8264
|
|
47
|
-
webscout/Provider/DARKAI.py,sha256=
|
|
47
|
+
webscout/Provider/DARKAI.py,sha256=Iv2ulI1voGfmsHzoS1PmzBupruKUNbCn6gtrYRlzPp8,9072
|
|
48
48
|
webscout/Provider/Deepinfra.py,sha256=9ABd5jmcMOydqrs0wtXMmkQF6I2up8AE2SHXy2LSIuU,18418
|
|
49
49
|
webscout/Provider/Deepseek.py,sha256=jp8cZhbmscDjlXLCGI8MhDGORkbbxyeUlCqu5Z5GGSI,9210
|
|
50
|
-
webscout/Provider/DiscordRocks.py,sha256=
|
|
50
|
+
webscout/Provider/DiscordRocks.py,sha256=SF--1fCfVKKUgIcrKUNpParNyqvTysQIcK9BKZv-Acg,11342
|
|
51
51
|
webscout/Provider/EDITEE.py,sha256=cGMTQiMROo7ohSBTOzs2vZneUs1Usjh_7ZFQ61JtD-k,7734
|
|
52
|
-
webscout/Provider/Farfalle.py,sha256=
|
|
52
|
+
webscout/Provider/Farfalle.py,sha256=eVmSB4Dq6P2epo8dd6CyCtyxvOMFwvk6f0Ikb9nZ2d0,9017
|
|
53
|
+
webscout/Provider/Free2GPT.py,sha256=qj21ViMIz06kw1A91scGtohPjQVgF_kb5xj37uv9Sho,8985
|
|
54
|
+
webscout/Provider/GPTWeb.py,sha256=egVGQ8cptr4wlCfrCNA2DM0oXYqhRcje9zxYK5txb2s,7429
|
|
53
55
|
webscout/Provider/Gemini.py,sha256=Vg2MLqQ_qxHkcN7Zikife1dyVK-y94ik8y6MAu-VzUI,7801
|
|
54
56
|
webscout/Provider/Groq.py,sha256=iqyewnxWwN7fMG-dqAR_SyUqImfyZS880lO5iaXso9c,28636
|
|
55
57
|
webscout/Provider/Koboldai.py,sha256=gpRgyDe4OQWwNqT7MWnNrJx4dnFmCW23KUx0Ezjgchk,15185
|
|
56
58
|
webscout/Provider/Llama.py,sha256=N01p3ZVD1HgRnNNxhjRhBVD4m_qiextdyF1KDfJlqbE,7703
|
|
57
|
-
webscout/Provider/Llama3.py,sha256=
|
|
58
|
-
webscout/Provider/
|
|
59
|
-
webscout/Provider/OLLAMA.py,sha256=VhvFJ3rHr1Wpgfv_-L70JlkL6x71z2lya9uLv1_kaUo,7015
|
|
59
|
+
webscout/Provider/Llama3.py,sha256=9jXo8k4ReFGkF01InzaBgUCKUJ0O5Zix3A0pHWRGtJU,7617
|
|
60
|
+
webscout/Provider/OLLAMA.py,sha256=mFkwjnKNS1AL6Qhgq_JuUInTRzF8IFPPHNwoBpynEkc,7016
|
|
60
61
|
webscout/Provider/Openai.py,sha256=32uxZmZOovzshMQmqDcJ39If7N_UW4B3EeYmaxP_GwE,19983
|
|
61
62
|
webscout/Provider/PI.py,sha256=IodVvGR_RIZpGJ0ypFF4U6NBMZAZ5O1BlRFMelot8so,8364
|
|
62
63
|
webscout/Provider/Perplexity.py,sha256=vcTjwFPi2WC-ck91V3QE_EtmCwFcWaQHku4aAzMoPPM,21461
|
|
63
64
|
webscout/Provider/Phind.py,sha256=NA_b3B4h-kutX6wdoEg4THPfZggl2UeXPbramzZ6oiU,19297
|
|
64
|
-
webscout/Provider/PizzaGPT.py,sha256=
|
|
65
|
+
webscout/Provider/PizzaGPT.py,sha256=tEuEJAGbv-mTd479i3EgaqHd4NwgkrmMW0fpSsGm_N0,7207
|
|
65
66
|
webscout/Provider/Poe.py,sha256=ObUxa-Fa2Dq7sJcV0hc65m09StS9uWsB2-bR2rSjXDY,7510
|
|
66
|
-
webscout/Provider/RUBIKSAI.py,sha256=
|
|
67
|
+
webscout/Provider/RUBIKSAI.py,sha256=uJlJfnX6kDU2mXhmmRZIn3U_y_bSntwmPuXmXH66W_8,8484
|
|
67
68
|
webscout/Provider/Reka.py,sha256=RZG1YZ5rd7WWmOTGoM_2IpEAKn1MzemHWYad4US4Q8s,8258
|
|
68
|
-
webscout/Provider/TeachAnything.py,sha256
|
|
69
|
-
webscout/Provider/
|
|
70
|
-
webscout/Provider/
|
|
71
|
-
webscout/Provider/__init__.py,sha256=PzH_i_NIesvGNVw_CpEJmOuz_H5K2O9KDSOL0BkT7D0,2308
|
|
69
|
+
webscout/Provider/TeachAnything.py,sha256=0pQfktjnzM_7UElYVxWTIiHU2WvgNs57CxEuu89F5aw,6776
|
|
70
|
+
webscout/Provider/Youchat.py,sha256=WQz19_CBkL4eh-S6qO5Vq8torp607LFf2mMuTrtespA,9012
|
|
71
|
+
webscout/Provider/__init__.py,sha256=BBvEaCO-crW8zC60b4DtOYzDW05-Odyh6sYTaRX_GqA,2409
|
|
72
72
|
webscout/Provider/ai4chat.py,sha256=ewUcqjr3hrd27fgcvj6ijvoWVnSjdoA1iK0c8dn2VJo,8067
|
|
73
|
+
webscout/Provider/aigames.py,sha256=vGiGYNLvVBfwwsBSWwDKZbvJsFy8SYsFWRKqx7U7ALY,8083
|
|
73
74
|
webscout/Provider/cerebras.py,sha256=N9Z7wY9pQRhh7chMSDirgHd1GV8Jwjeb3RmYB1pcww4,7302
|
|
74
|
-
webscout/Provider/cleeai.py,sha256=
|
|
75
|
-
webscout/Provider/elmo.py,sha256=
|
|
76
|
-
webscout/Provider/felo_search.py,sha256
|
|
75
|
+
webscout/Provider/cleeai.py,sha256=9XRS48ZnBYCttiiTOSxk7tZIuQucELtas7dw3L2QRPg,7998
|
|
76
|
+
webscout/Provider/elmo.py,sha256=jLpIT7w1t8zFthSyvbHXMKsrKgTuOAJ91dg7zkeSjmY,9384
|
|
77
|
+
webscout/Provider/felo_search.py,sha256=7yQ4YpjCrlzdb4IENrVATiWoJqYTxR7QduUZK_klDWY,6842
|
|
77
78
|
webscout/Provider/geminiapi.py,sha256=sGg7AncRShMacLTBwn39CzG4zsRz9JSBwVO4LlUdt6g,7869
|
|
78
|
-
webscout/Provider/genspark.py,sha256=
|
|
79
|
-
webscout/Provider/julius.py,sha256=
|
|
79
|
+
webscout/Provider/genspark.py,sha256=X3l0Kuh1fwn7XHFDzKlV4kqc35iRouUC54UOi0snNjk,8551
|
|
80
|
+
webscout/Provider/julius.py,sha256=DS2jsEz_McEb_Ma57ji6w9hRMoYycOGxfjFkh9ZUXLw,9883
|
|
80
81
|
webscout/Provider/koala.py,sha256=qBtqjTvhoMQdDE8qUH0XuNa_x2bic77d7CUjIVboask,10106
|
|
81
|
-
webscout/Provider/lepton.py,sha256=
|
|
82
|
-
webscout/Provider/meta.py,sha256=
|
|
83
|
-
webscout/Provider/turboseek.py,sha256=
|
|
84
|
-
webscout/Provider/
|
|
85
|
-
webscout/Provider/
|
|
86
|
-
webscout/Provider/
|
|
82
|
+
webscout/Provider/lepton.py,sha256=4RiQ4YNJljX558yhSUqws6pf1Yhf7pWIesa4SRQCry8,7590
|
|
83
|
+
webscout/Provider/meta.py,sha256=PbqijyaLC7BFyI-T6gYgOpue_nMASgAUwM21SLHVkQs,30706
|
|
84
|
+
webscout/Provider/turboseek.py,sha256=msIDtdi7-7UbjdTyzXFZgpOt0_MAWRpEac8O7N0SsB8,8539
|
|
85
|
+
webscout/Provider/upstage.py,sha256=D2QSj7LcBsKyjp230LYdGwY6eO2j__wtK9d-8swjSW0,9204
|
|
86
|
+
webscout/Provider/x0gpt.py,sha256=jxQWGE0E1KjJCZas2BkRmNRWrijXbFAsE2amkPExcVw,6504
|
|
87
|
+
webscout/Provider/xdash.py,sha256=wyn1tBLwe4lo8LBqEFrr0hFDPj84z2p8PONdyzsj5f4,7369
|
|
88
|
+
webscout/Provider/yep.py,sha256=ge7a3cK02G6tbT0_q9glH7ujCx3QlgrqwBuHasQVYfQ,20581
|
|
89
|
+
webscout/Provider/TTI/Nexra.py,sha256=0zyf0nKJEPjOQd4z_2eNur14hfO9Z2JwHILLj9urdJI,4589
|
|
87
90
|
webscout/Provider/TTI/PollinationsAI.py,sha256=ELMc92hYXzS1uFZtRB-tbFb39C3YqpxnfM8dVcucPE0,5485
|
|
88
|
-
webscout/Provider/TTI/__init__.py,sha256=
|
|
91
|
+
webscout/Provider/TTI/__init__.py,sha256=LBJjx-3nci9CqHUDx63zECido7VLqLZoSfDUI0qRD1I,131
|
|
89
92
|
webscout/Provider/TTI/aiforce.py,sha256=WRLQubp2NSel6Vmj77KTDv9f2eKmC8MzZRU7_c5IPWQ,5327
|
|
90
|
-
webscout/Provider/TTI/
|
|
93
|
+
webscout/Provider/TTI/blackboximage.py,sha256=P3P8lg4-CCcDB1sPhVaP5oB9hqEhiErOTs2IX_Pv4ro,5848
|
|
94
|
+
webscout/Provider/TTI/deepinfra.py,sha256=4x3knEeQnjhan5Y6uogK3dXFVa3r8UjN51n91Wm7Qfg,5975
|
|
91
95
|
webscout/Provider/TTS/__init__.py,sha256=g19AOO1X9Qb-MNFpwhx5lODDWQiG7HxZCO9TmOYOHGc,54
|
|
92
96
|
webscout/Provider/TTS/streamElements.py,sha256=aaE55W_bAzvL3-pl7tHs_xU7dSZB5_V7ix-usoe-4aM,7398
|
|
93
97
|
webscout/Provider/TTS/voicepod.py,sha256=wAAnpcpDyej72UjIRhEnEmcoJnUqp1lPCLiiwJMYJic,4343
|
|
94
|
-
webscout-5.
|
|
95
|
-
webscout-5.
|
|
96
|
-
webscout-5.
|
|
97
|
-
webscout-5.
|
|
98
|
-
webscout-5.
|
|
99
|
-
webscout-5.
|
|
98
|
+
webscout-5.6.dist-info/LICENSE.md,sha256=9P0imsudI7MEvZe2pOcg8rKBn6E5FGHQ-riYozZI-Bk,2942
|
|
99
|
+
webscout-5.6.dist-info/METADATA,sha256=f9-yjy9WcVYYnrr8L-zve1dbnXH1eVnW5DKfDP0BszQ,48118
|
|
100
|
+
webscout-5.6.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
101
|
+
webscout-5.6.dist-info/entry_points.txt,sha256=Hh4YIIjvkqB9SVxZ2ri4DZUkgEu_WF_5_r_nZDIvfG8,73
|
|
102
|
+
webscout-5.6.dist-info/top_level.txt,sha256=nYIw7OKBQDr_Z33IzZUKidRD3zQEo8jOJYkMVMeN334,9
|
|
103
|
+
webscout-5.6.dist-info/RECORD,,
|