webscout 6.0__py3-none-any.whl → 6.1__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.
- webscout/Agents/Onlinesearcher.py +22 -10
- webscout/Agents/functioncall.py +2 -2
- webscout/Bard.py +21 -21
- webscout/Local/__init__.py +6 -7
- webscout/Local/formats.py +404 -194
- webscout/Local/model.py +1074 -477
- webscout/Local/samplers.py +108 -144
- webscout/Local/thread.py +251 -410
- webscout/Local/ui.py +401 -0
- webscout/Local/utils.py +308 -131
- webscout/Provider/Amigo.py +1 -1
- webscout/Provider/NinjaChat.py +200 -0
- webscout/Provider/TTI/Nexra.py +3 -3
- webscout/Provider/TTI/__init__.py +2 -1
- webscout/Provider/TTI/aiforce.py +2 -2
- webscout/Provider/TTI/imgninza.py +136 -0
- webscout/Provider/Youchat.py +1 -1
- webscout/Provider/__init__.py +8 -1
- webscout/Provider/aimathgpt.py +193 -0
- webscout/Provider/felo_search.py +1 -1
- webscout/Provider/gaurish.py +168 -0
- webscout/Provider/geminiprorealtime.py +160 -0
- webscout/Provider/julius.py +4 -0
- webscout/exceptions.py +5 -1
- webscout/utils.py +3 -0
- webscout/version.py +1 -1
- webscout/webscout_search.py +154 -123
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/METADATA +123 -120
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/RECORD +33 -28
- webscout/Local/rawdog.py +0 -946
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/LICENSE.md +0 -0
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/WHEEL +0 -0
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/entry_points.txt +0 -0
- {webscout-6.0.dist-info → webscout-6.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.1
|
|
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
|
|
@@ -53,6 +53,13 @@ Requires-Dist: emoji
|
|
|
53
53
|
Requires-Dist: openai
|
|
54
54
|
Requires-Dist: prompt-toolkit
|
|
55
55
|
Requires-Dist: fake-useragent
|
|
56
|
+
Requires-Dist: primp
|
|
57
|
+
Requires-Dist: pyreqwest-impersonate
|
|
58
|
+
Requires-Dist: lxml-html-clean
|
|
59
|
+
Requires-Dist: gradio-client
|
|
60
|
+
Requires-Dist: psutil
|
|
61
|
+
Requires-Dist: colorlog
|
|
62
|
+
Requires-Dist: yaspin
|
|
56
63
|
Provides-Extra: dev
|
|
57
64
|
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
58
65
|
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
@@ -61,6 +68,7 @@ Requires-Dist: llama-cpp-python; extra == "local"
|
|
|
61
68
|
Requires-Dist: colorama; extra == "local"
|
|
62
69
|
Requires-Dist: numpy; extra == "local"
|
|
63
70
|
Requires-Dist: huggingface-hub[cli]; extra == "local"
|
|
71
|
+
Requires-Dist: unicorn; extra == "local"
|
|
64
72
|
|
|
65
73
|
<div align="center">
|
|
66
74
|
<!-- Replace `#` with your actual links -->
|
|
@@ -868,7 +876,7 @@ print(result)
|
|
|
868
876
|
___
|
|
869
877
|
</details>
|
|
870
878
|
|
|
871
|
-
### 🖼️ Text to Images - DeepInfraImager, PollinationsAI, BlackboxAIImager,
|
|
879
|
+
### 🖼️ Text to Images - DeepInfraImager, PollinationsAI, BlackboxAIImager, AiForceimager, NexraImager, HFimager, ArtbitImager, NinjaImager, WebSimAI, AmigoImager
|
|
872
880
|
|
|
873
881
|
**Every TTI provider has the same usage code, you just need to change the import.**
|
|
874
882
|
|
|
@@ -897,7 +905,7 @@ voicepods.play_audio(audio_file)
|
|
|
897
905
|
|
|
898
906
|
```python
|
|
899
907
|
from webscout import WEBS as w
|
|
900
|
-
R = w().chat("Who are you", model='gpt-4o-mini') #
|
|
908
|
+
R = w().chat("Who are you", model='gpt-4o-mini') # mixtral-8x7b, llama-3.1-70b, claude-3-haiku, gpt-4o-mini
|
|
901
909
|
print(R)
|
|
902
910
|
```
|
|
903
911
|
|
|
@@ -1316,117 +1324,120 @@ print(a.chat("HelpingAI-9B"))
|
|
|
1316
1324
|
```python
|
|
1317
1325
|
import json
|
|
1318
1326
|
import logging
|
|
1319
|
-
from webscout import
|
|
1327
|
+
from webscout import Julius, WEBS
|
|
1320
1328
|
from webscout.Agents.functioncall import FunctionCallingAgent
|
|
1329
|
+
from rich import print
|
|
1321
1330
|
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1331
|
+
class FunctionExecutor:
|
|
1332
|
+
def __init__(self, llama):
|
|
1333
|
+
self.llama = llama
|
|
1334
|
+
|
|
1335
|
+
def execute_web_search(self, arguments):
|
|
1336
|
+
query = arguments.get("query")
|
|
1337
|
+
if not query:
|
|
1338
|
+
return "Please provide a search query."
|
|
1339
|
+
with WEBS() as webs:
|
|
1340
|
+
search_results = webs.text(query, max_results=5)
|
|
1341
|
+
prompt = (
|
|
1342
|
+
f"Based on the following search results:\n\n{search_results}\n\n"
|
|
1343
|
+
f"Question: {query}\n\n"
|
|
1344
|
+
"Please provide a comprehensive answer to the question based on the search results above. "
|
|
1345
|
+
"Include relevant webpage URLs in your answer when appropriate. "
|
|
1346
|
+
"If the search results don't contain relevant information, please state that and provide the best answer you can based on your general knowledge."
|
|
1347
|
+
)
|
|
1348
|
+
return self.llama.chat(prompt)
|
|
1349
|
+
|
|
1350
|
+
def execute_general_ai(self, arguments):
|
|
1351
|
+
question = arguments.get("question")
|
|
1352
|
+
if not question:
|
|
1353
|
+
return "Please provide a question."
|
|
1354
|
+
return self.llama.chat(question)
|
|
1355
|
+
|
|
1356
|
+
def execute_UserDetail(self, arguments):
|
|
1357
|
+
name = arguments.get("name")
|
|
1358
|
+
age = arguments.get("age")
|
|
1359
|
+
return f"User details - Name: {name}, Age: {age}"
|
|
1360
|
+
|
|
1361
|
+
def main():
|
|
1362
|
+
tools = [
|
|
1363
|
+
{
|
|
1364
|
+
"type": "function",
|
|
1365
|
+
"function": {
|
|
1366
|
+
"name": "UserDetail",
|
|
1367
|
+
"parameters": {
|
|
1368
|
+
"type": "object",
|
|
1369
|
+
"properties": {
|
|
1370
|
+
"name": {"title": "Name", "type": "string"},
|
|
1371
|
+
"age": {"title": "Age", "type": "integer"}
|
|
1335
1372
|
},
|
|
1336
|
-
"
|
|
1337
|
-
|
|
1338
|
-
"type": "integer"
|
|
1339
|
-
}
|
|
1340
|
-
},
|
|
1341
|
-
"required": ["name", "age"]
|
|
1373
|
+
"required": ["name", "age"]
|
|
1374
|
+
}
|
|
1342
1375
|
}
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"type": "function",
|
|
1379
|
+
"function": {
|
|
1380
|
+
"name": "web_search",
|
|
1381
|
+
"description": "Search the web for information using Google Search.",
|
|
1382
|
+
"parameters": {
|
|
1383
|
+
"type": "object",
|
|
1384
|
+
"properties": {
|
|
1385
|
+
"query": {
|
|
1386
|
+
"type": "string",
|
|
1387
|
+
"description": "The search query to be executed."
|
|
1388
|
+
}
|
|
1389
|
+
},
|
|
1390
|
+
"required": ["query"]
|
|
1391
|
+
}
|
|
1359
1392
|
}
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
}
|
|
1374
|
-
},
|
|
1375
|
-
"required": ["question"]
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
"type": "function",
|
|
1396
|
+
"function": {
|
|
1397
|
+
"name": "general_ai",
|
|
1398
|
+
"description": "Use general AI knowledge to answer the question",
|
|
1399
|
+
"parameters": {
|
|
1400
|
+
"type": "object",
|
|
1401
|
+
"properties": {
|
|
1402
|
+
"question": {"type": "string", "description": "The question to answer"}
|
|
1403
|
+
},
|
|
1404
|
+
"required": ["question"]
|
|
1405
|
+
}
|
|
1376
1406
|
}
|
|
1377
1407
|
}
|
|
1378
|
-
|
|
1379
|
-
]
|
|
1408
|
+
]
|
|
1380
1409
|
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
from rich import print
|
|
1385
|
-
# Input message from the user
|
|
1386
|
-
user = input(">>> ")
|
|
1387
|
-
message = user
|
|
1388
|
-
function_call_data = agent.function_call_handler(message)
|
|
1389
|
-
print(f"Function Call Data: {function_call_data}")
|
|
1390
|
-
|
|
1391
|
-
# Check for errors in the function call data
|
|
1392
|
-
if "error" not in function_call_data:
|
|
1393
|
-
function_name = function_call_data.get("tool_name") # Use 'tool_name' instead of 'name'
|
|
1394
|
-
if function_name == "web_search":
|
|
1395
|
-
arguments = function_call_data.get("tool_input", {}) # Get tool input arguments
|
|
1396
|
-
query = arguments.get("query")
|
|
1397
|
-
if query:
|
|
1398
|
-
with WEBS() as webs:
|
|
1399
|
-
search_results = webs.text(query, max_results=5)
|
|
1400
|
-
prompt = (
|
|
1401
|
-
f"Based on the following search results:\n\n{search_results}\n\n"
|
|
1402
|
-
f"Question: {user}\n\n"
|
|
1403
|
-
"Please provide a comprehensive answer to the question based on the search results above. "
|
|
1404
|
-
"Include relevant webpage URLs in your answer when appropriate. "
|
|
1405
|
-
"If the search results don't contain relevant information, please state that and provide the best answer you can based on your general knowledge."
|
|
1406
|
-
)
|
|
1407
|
-
response = llama.chat(prompt)
|
|
1408
|
-
for c in response:
|
|
1409
|
-
print(c, end="", flush=True)
|
|
1410
|
+
agent = FunctionCallingAgent(tools=tools)
|
|
1411
|
+
llama = Julius()
|
|
1412
|
+
function_executor = FunctionExecutor(llama)
|
|
1410
1413
|
|
|
1414
|
+
user_input = input(">>> ")
|
|
1415
|
+
function_call_data = agent.function_call_handler(user_input)
|
|
1416
|
+
print(f"Function Call Data: {function_call_data}")
|
|
1417
|
+
|
|
1418
|
+
try:
|
|
1419
|
+
if "error" not in function_call_data:
|
|
1420
|
+
function_name = function_call_data.get("tool_name")
|
|
1421
|
+
arguments = function_call_data.get("tool_input", {})
|
|
1422
|
+
|
|
1423
|
+
execute_function = getattr(function_executor, f"execute_{function_name}", None)
|
|
1424
|
+
if execute_function:
|
|
1425
|
+
result = execute_function(arguments)
|
|
1426
|
+
print("Function Execution Result:")
|
|
1427
|
+
for c in result:
|
|
1428
|
+
print(c, end="", flush=True)
|
|
1429
|
+
else:
|
|
1430
|
+
print(f"Unknown function: {function_name}")
|
|
1411
1431
|
else:
|
|
1412
|
-
print("
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
for c in response:
|
|
1419
|
-
print(c, end="", flush=True)
|
|
1420
|
-
else:
|
|
1421
|
-
print("Please provide a question.")
|
|
1422
|
-
else:
|
|
1423
|
-
result = agent.execute_function(function_call_data)
|
|
1424
|
-
print(f"Function Execution Result: {result}")
|
|
1425
|
-
else:
|
|
1426
|
-
print(f"Error: {function_call_data['error']}")
|
|
1432
|
+
print(f"Error: {function_call_data['error']}")
|
|
1433
|
+
except Exception as e:
|
|
1434
|
+
print(f"An error occurred: {str(e)}")
|
|
1435
|
+
|
|
1436
|
+
if __name__ == "__main__":
|
|
1437
|
+
main()
|
|
1427
1438
|
```
|
|
1428
1439
|
|
|
1429
|
-
### 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, GPTWeb, AIGameIO, LlamaTutor, PromptRefine, AIUncensored, TutorAI, Bixin, ChatGPTES, Bagoodex, ChatHub, AmigoChat
|
|
1440
|
+
### 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, GPTWeb, AIGameIO, LlamaTutor, PromptRefine, AIUncensored, TutorAI, Bixin, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro
|
|
1430
1441
|
|
|
1431
1442
|
Code is similar to other providers.
|
|
1432
1443
|
|
|
@@ -1465,24 +1476,16 @@ Webscout can now run GGUF models locally. You can download and run your favorite
|
|
|
1465
1476
|
**Example:**
|
|
1466
1477
|
|
|
1467
1478
|
```python
|
|
1468
|
-
from webscout.Local
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
# 2. Load the model
|
|
1479
|
-
model = Model(model_path, n_gpu_layers=4)
|
|
1480
|
-
|
|
1481
|
-
# 3. Create a Thread for conversation
|
|
1482
|
-
thread = Thread(model, formats.phi3)
|
|
1483
|
-
|
|
1484
|
-
# 4. Start interacting with the model
|
|
1485
|
-
thread.interact()
|
|
1479
|
+
from webscout.Local import *
|
|
1480
|
+
model_path = download_model("Qwen/Qwen2.5-0.5B-Instruct-GGUF", "qwen2.5-0.5b-instruct-q2_k.gguf", token=None)
|
|
1481
|
+
model = Model(model_path, n_gpu_layers=0, context_length=2048)
|
|
1482
|
+
thread = Thread(model, format=chatml)
|
|
1483
|
+
# print(thread.send("hi")) #send a single msg to ai
|
|
1484
|
+
|
|
1485
|
+
# thread.interact() # interact with the model in terminal
|
|
1486
|
+
# start webui
|
|
1487
|
+
# webui = WebUI(thread)
|
|
1488
|
+
# webui.start(host="0.0.0.0", port=8080, ssl=True) #Use ssl=True and make cert and key for https
|
|
1486
1489
|
```
|
|
1487
1490
|
|
|
1488
1491
|
## 🐶 Local-rawdog
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
webscout/AIauto.py,sha256=C92j0QtSmxG978fELezsgzxjq75VjQ5ld6Ybp4go1SU,11765
|
|
2
2
|
webscout/AIbase.py,sha256=vv0N8sDYaZKkKD9fkLpK1CA51ksZl0_PQ82tB431c-4,9215
|
|
3
3
|
webscout/AIutel.py,sha256=JLA3wqfSZJC_DMmI5Kjj8AxvQTMvs3F9MgqSn3koiZ4,38580
|
|
4
|
-
webscout/Bard.py,sha256=
|
|
4
|
+
webscout/Bard.py,sha256=CmDhKC67Ki2xA8Rkme6EC-gLmq3PhAAAGd5tcpJ0KJo,13234
|
|
5
5
|
webscout/Bing_search.py,sha256=8pW3ZxFDfVsrtayEoAsAAoXoOCAGv2Jk_-HvOBNfCV4,6228
|
|
6
6
|
webscout/DWEBS.py,sha256=xB3L_u47vu9KZCFNUb_H6WX5OLeL068Er9t9Mbss9YU,7895
|
|
7
7
|
webscout/LLM.py,sha256=LbGCZdJf8A5dwfoGS4tyy39tAh5BDdhMZP0ScKaaQfU,4184
|
|
@@ -9,36 +9,36 @@ webscout/YTdownloader.py,sha256=qVROwMmRpHy95NsbzZvpidEKuqMwFTCi7bW4jJgbl44,3915
|
|
|
9
9
|
webscout/__init__.py,sha256=scVR3GK70Ds0x5fDB_PxbZUH3cUBG4Pgw1Tac5bvKro,1328
|
|
10
10
|
webscout/__main__.py,sha256=ZtTRgsRjUi2JOvYFLF1ZCh55Sdoz94I-BS-TlJC7WDU,126
|
|
11
11
|
webscout/cli.py,sha256=RlBKeS9CSIsiBMqlzxevWtKjbY9htkZvA7J0bM_hHE8,14999
|
|
12
|
-
webscout/exceptions.py,sha256=
|
|
12
|
+
webscout/exceptions.py,sha256=b9P7Sp3CEFigHAeTQli2DPLBZ-3sh8L-UWUd2-2RcVY,793
|
|
13
13
|
webscout/g4f.py,sha256=NNcnlOtIWV9R93UsBN4jBGBEJ9sJ-Np1WbgjkGVDcYc,24487
|
|
14
14
|
webscout/models.py,sha256=5iQIdtedT18YuTZ3npoG7kLMwcrKwhQ7928dl_7qZW0,692
|
|
15
15
|
webscout/requestsHTMLfix.py,sha256=LZ9uynkwpGqVS2uFB5bMjdh6gLjSMerHPEqzVCvICIs,27961
|
|
16
16
|
webscout/tempid.py,sha256=2a_YDFUCZy3TJVfqEPSLyMvHBjDk9gp5FiFCvJwsOaw,7984
|
|
17
17
|
webscout/transcriber.py,sha256=kRymTd69zCjXdduCf7Gabt93Kz1l5ubsCwfwqs-pHl8,22334
|
|
18
|
-
webscout/utils.py,sha256=
|
|
19
|
-
webscout/version.py,sha256=
|
|
18
|
+
webscout/utils.py,sha256=LVW7U0XcGYqigqxV6D5YXeGMrc_mt7PnNG_YnKf9bBM,3059
|
|
19
|
+
webscout/version.py,sha256=2nDWOp3vhJrfUeqqJJsf8o0xLdjDq_72L5_WdV-5CWY,44
|
|
20
20
|
webscout/webai.py,sha256=MzDWMFv8oI3wmeL3SwvxUrZdBRyh9MMn97kNTvgL5T4,87744
|
|
21
|
-
webscout/webscout_search.py,sha256=
|
|
21
|
+
webscout/webscout_search.py,sha256=HHdO9XLToC_9nIMM_SaTOKKfzdhrKjb7o8Zi3ZD1O7Y,44744
|
|
22
22
|
webscout/webscout_search_async.py,sha256=2-RCa9Deahhw3Bti78kXfVaX8y3Aygy4L7HeCaITk9M,14519
|
|
23
23
|
webscout/websx_search.py,sha256=5hfkkmGFhyQzojUpvMzIOJ3DBZIBNS90UReaacsfu6s,521
|
|
24
|
-
webscout/Agents/Onlinesearcher.py,sha256=
|
|
24
|
+
webscout/Agents/Onlinesearcher.py,sha256=dzb08Bz9QMMeP1mQTxIK2mkpwthhNJJND7TIRmM3dwA,7942
|
|
25
25
|
webscout/Agents/__init__.py,sha256=qJXx2Q1yAupE0FJabXvs49Nxwm3IsREyuMWp8Q1VYiE,60
|
|
26
|
-
webscout/Agents/functioncall.py,sha256=
|
|
26
|
+
webscout/Agents/functioncall.py,sha256=n9KOv0mWcCew5WI_xbI-zGe8hgTj-zNb73bAkZxrJfA,7609
|
|
27
27
|
webscout/Extra/__init__.py,sha256=GG1qUwS-HspT4TeeAIT4qFpM8PaO1ZdQhpelctaM7Rs,99
|
|
28
28
|
webscout/Extra/autollama.py,sha256=qM8alxlWzg10BGIYKZBUtIEAXrkvEOWBwSxdPp3zq9I,6226
|
|
29
29
|
webscout/Extra/gguf.py,sha256=RvSp7xuaD6epAA9iAzthUnAQ3HA5N-svMyKUadAVnw8,7009
|
|
30
30
|
webscout/Extra/weather.py,sha256=wdSrQxZRpbNfyaux0BeLdaDWyde5KwxZjSUM13820X0,2460
|
|
31
31
|
webscout/Extra/weather_ascii.py,sha256=Aed-_EUzvTEjBXbOpNRxkJBLa6fXsclknXP06HnQD18,808
|
|
32
|
-
webscout/Local/__init__.py,sha256=
|
|
32
|
+
webscout/Local/__init__.py,sha256=Mte7RYlelBND2yof_HJ3MMZYBVeTISNFU2-LiFKSbU4,228
|
|
33
33
|
webscout/Local/_version.py,sha256=jk6j7Rb0VWezDG1ZFhgYJpZiyL5rCivaiA86_jJecmk,139
|
|
34
|
-
webscout/Local/formats.py,sha256=
|
|
35
|
-
webscout/Local/model.py,sha256=
|
|
36
|
-
webscout/Local/
|
|
37
|
-
webscout/Local/
|
|
38
|
-
webscout/Local/
|
|
39
|
-
webscout/Local/utils.py,sha256=
|
|
34
|
+
webscout/Local/formats.py,sha256=aSyTDn4-K6IvoVEMo0MSMxFueY2gUH2j36da48krQMg,26573
|
|
35
|
+
webscout/Local/model.py,sha256=49k61kfzGhBbA38ul2yqdrmFd6YPOipJ37vCXOWIxaM,50987
|
|
36
|
+
webscout/Local/samplers.py,sha256=6khEmMiMqIRO-qssjv8PEVomNG2yoLhDM6Wa9YBRbuI,6769
|
|
37
|
+
webscout/Local/thread.py,sha256=ctnoJtkOpKbpdlqCjsnyM2sI-3_AKg9PzNwS3QAIifQ,23603
|
|
38
|
+
webscout/Local/ui.py,sha256=FhqBcC7SVHwRfvrnTduoa7gpQNWYzrSc7OGm89ErNPY,15064
|
|
39
|
+
webscout/Local/utils.py,sha256=SpSs8tGUClnrSVNr7hp9NoaT1bl8V28c0vZ9m6R5d0k,12417
|
|
40
40
|
webscout/Provider/AI21.py,sha256=JBh-xnspxTZNMcl-Gd0Cgseqht9gTM64TUv9I4Imc9k,6218
|
|
41
|
-
webscout/Provider/Amigo.py,sha256=
|
|
41
|
+
webscout/Provider/Amigo.py,sha256=rGzprs37Bdbg-wj2clan1YYjfjyCWiZxDv25lpjk16U,11613
|
|
42
42
|
webscout/Provider/Andi.py,sha256=mKhrnN_TR3rVEBy-oZosEcujF83hISiFeBVM1mHYz2k,10107
|
|
43
43
|
webscout/Provider/BasedGPT.py,sha256=u1s72bQ33iuBqf5u7SWdez8_Eu7MTCM_iZoEW91t9CI,8309
|
|
44
44
|
webscout/Provider/Bing.py,sha256=zxIzq7dlqaLskx9LsYppbMJuwfGtYid3Uh0gIhZ0hps,9001
|
|
@@ -61,6 +61,7 @@ webscout/Provider/Groq.py,sha256=iqyewnxWwN7fMG-dqAR_SyUqImfyZS880lO5iaXso9c,286
|
|
|
61
61
|
webscout/Provider/Koboldai.py,sha256=gpRgyDe4OQWwNqT7MWnNrJx4dnFmCW23KUx0Ezjgchk,15185
|
|
62
62
|
webscout/Provider/Llama.py,sha256=N01p3ZVD1HgRnNNxhjRhBVD4m_qiextdyF1KDfJlqbE,7703
|
|
63
63
|
webscout/Provider/Llama3.py,sha256=9jXo8k4ReFGkF01InzaBgUCKUJ0O5Zix3A0pHWRGtJU,7617
|
|
64
|
+
webscout/Provider/NinjaChat.py,sha256=hxffMI9VShu91raY4k7eq9JtU0ReNHoPFVoxc0yq17M,8633
|
|
64
65
|
webscout/Provider/OLLAMA.py,sha256=NO23OqRcVj0RhU5bnd4y21m_Yfh6JYxc3azxHgzKvmg,7017
|
|
65
66
|
webscout/Provider/Openai.py,sha256=32uxZmZOovzshMQmqDcJ39If7N_UW4B3EeYmaxP_GwE,19983
|
|
66
67
|
webscout/Provider/PI.py,sha256=IodVvGR_RIZpGJ0ypFF4U6NBMZAZ5O1BlRFMelot8so,8364
|
|
@@ -70,19 +71,22 @@ webscout/Provider/PizzaGPT.py,sha256=tEuEJAGbv-mTd479i3EgaqHd4NwgkrmMW0fpSsGm_N0
|
|
|
70
71
|
webscout/Provider/RUBIKSAI.py,sha256=fHCOAFWGXIESA05Bmuqtx6ZChnWomHOMwndfTLv1Hg8,8517
|
|
71
72
|
webscout/Provider/Reka.py,sha256=RZG1YZ5rd7WWmOTGoM_2IpEAKn1MzemHWYad4US4Q8s,8258
|
|
72
73
|
webscout/Provider/TeachAnything.py,sha256=0pQfktjnzM_7UElYVxWTIiHU2WvgNs57CxEuu89F5aw,6776
|
|
73
|
-
webscout/Provider/Youchat.py,sha256=
|
|
74
|
-
webscout/Provider/__init__.py,sha256=
|
|
74
|
+
webscout/Provider/Youchat.py,sha256=G6I4TqjZuX3refFF3SkOgl_YXY57hjsMg_wRjPgqWIE,9014
|
|
75
|
+
webscout/Provider/__init__.py,sha256=BhRT9si6wgPvwxm-yTBG9hR3mFudHwVpTm4zzT_-6No,2939
|
|
75
76
|
webscout/Provider/ai4chat.py,sha256=av96iS4QPt9IzhcswowmDY2F8IUSLl1YVHZ4bAbfO-s,8140
|
|
76
77
|
webscout/Provider/aigames.py,sha256=vGiGYNLvVBfwwsBSWwDKZbvJsFy8SYsFWRKqx7U7ALY,8083
|
|
78
|
+
webscout/Provider/aimathgpt.py,sha256=BdXNxEHQP11p6m0wl2Q-uben46A6lMKOg89utV1S7aI,7320
|
|
77
79
|
webscout/Provider/bagoodex.py,sha256=OdYIyvypX-Vkok9zAr6F5NwFQx_z0bKhiw8U4tTFw5o,5023
|
|
78
80
|
webscout/Provider/bixin.py,sha256=tBelpS34RYFwXwe2XSnlnlskEw6o2sPOFWoN-MJN6hE,10577
|
|
79
81
|
webscout/Provider/cerebras.py,sha256=N9Z7wY9pQRhh7chMSDirgHd1GV8Jwjeb3RmYB1pcww4,7302
|
|
80
82
|
webscout/Provider/cleeai.py,sha256=NCivTCZU_BU3umuF-rHweNhdlnJE9Hwsd5A3611bFTM,8050
|
|
81
83
|
webscout/Provider/elmo.py,sha256=6C-j8xLfgyMjmv8jdjey0BPzl_UwEFpMEbBtYobfPd0,9387
|
|
82
|
-
webscout/Provider/felo_search.py,sha256=
|
|
84
|
+
webscout/Provider/felo_search.py,sha256=cGuSVTwLiCleUWs4OEQhEYUjL2D8z87Km47cRogI7aQ,6879
|
|
85
|
+
webscout/Provider/gaurish.py,sha256=OUiMlTlrPqRqokckR2WyxDljWLN-DhvsoMhi3LKijAo,6244
|
|
83
86
|
webscout/Provider/geminiapi.py,sha256=sGg7AncRShMacLTBwn39CzG4zsRz9JSBwVO4LlUdt6g,7869
|
|
87
|
+
webscout/Provider/geminiprorealtime.py,sha256=OrpUtmmv__7bgoLfyY3IUosTWW_3MDw5eUP-iMKLYr0,5867
|
|
84
88
|
webscout/Provider/genspark.py,sha256=h1dTcs50EsDH2-aioYKcPggh28kaJnwHOM7gG4s0FTY,8727
|
|
85
|
-
webscout/Provider/julius.py,sha256=
|
|
89
|
+
webscout/Provider/julius.py,sha256=1JANcowWAn2zI7wCpAJWg5KW3cQNcMTfnWXwk9oblNM,8563
|
|
86
90
|
webscout/Provider/koala.py,sha256=qBtqjTvhoMQdDE8qUH0XuNa_x2bic77d7CUjIVboask,10106
|
|
87
91
|
webscout/Provider/learnfastai.py,sha256=j2hYwCVNpWZM4rN_4my9R0IfStNoAsIXjkvr_CRYcA0,9790
|
|
88
92
|
webscout/Provider/lepton.py,sha256=4RiQ4YNJljX558yhSUqws6pf1Yhf7pWIesa4SRQCry8,7590
|
|
@@ -97,23 +101,24 @@ webscout/Provider/upstage.py,sha256=rdH94hIwR98HKfar576WzVmgdB1DU2H8qaChUmJFtPc,
|
|
|
97
101
|
webscout/Provider/x0gpt.py,sha256=Z8U4MQIRfhHpdarHO6_BZ27veXMDEAneguJ7uFSD_HU,6478
|
|
98
102
|
webscout/Provider/xdash.py,sha256=wyn1tBLwe4lo8LBqEFrr0hFDPj84z2p8PONdyzsj5f4,7369
|
|
99
103
|
webscout/Provider/yep.py,sha256=ge7a3cK02G6tbT0_q9glH7ujCx3QlgrqwBuHasQVYfQ,20581
|
|
100
|
-
webscout/Provider/TTI/Nexra.py,sha256=
|
|
104
|
+
webscout/Provider/TTI/Nexra.py,sha256=4-ktIYnyWWLb8KHuyzzHV_docjpBukVwjLTICoindyA,4619
|
|
101
105
|
webscout/Provider/TTI/PollinationsAI.py,sha256=ELMc92hYXzS1uFZtRB-tbFb39C3YqpxnfM8dVcucPE0,5485
|
|
102
106
|
webscout/Provider/TTI/WebSimAI.py,sha256=tbUjvu945M35HOINLLuwvKZB_xUOmHuF69K75KiKDwU,5223
|
|
103
|
-
webscout/Provider/TTI/__init__.py,sha256=
|
|
104
|
-
webscout/Provider/TTI/aiforce.py,sha256=
|
|
107
|
+
webscout/Provider/TTI/__init__.py,sha256=mexrCwXr-JMcA_KbDvAbdKX_4fX-s7vaiK92YnXC-Jk,254
|
|
108
|
+
webscout/Provider/TTI/aiforce.py,sha256=LIt7cZU1W2LBEGk-QyUYO3cvyPjlxODWYF28kQ6xzZI,6263
|
|
105
109
|
webscout/Provider/TTI/amigo.py,sha256=m5X0nlUdROHNalqkBP8A7ZZQlr7XmIWbdd7qEBWsAtw,5830
|
|
106
110
|
webscout/Provider/TTI/artbit.py,sha256=59rclp-Ker6CeIG6w0Kdte0gwgN5OUcDXi-AhbPnTeo,5077
|
|
107
111
|
webscout/Provider/TTI/blackboximage.py,sha256=P3P8lg4-CCcDB1sPhVaP5oB9hqEhiErOTs2IX_Pv4ro,5848
|
|
108
112
|
webscout/Provider/TTI/deepinfra.py,sha256=4x3knEeQnjhan5Y6uogK3dXFVa3r8UjN51n91Wm7Qfg,5975
|
|
109
113
|
webscout/Provider/TTI/huggingface.py,sha256=bowc61na8BR941Ux4_PJh_wiuzGPwnmWp_VCZ5cGacY,6268
|
|
114
|
+
webscout/Provider/TTI/imgninza.py,sha256=87-FIQlf7i0MwxQ5gO5ovbEEDlsjQN2bCvLB4DySHBs,5472
|
|
110
115
|
webscout/Provider/TTS/__init__.py,sha256=uGhNvQUrElyPfxoXs5V9xJpLuIyShe3yKHif5MaERxA,77
|
|
111
116
|
webscout/Provider/TTS/parler.py,sha256=NbS2IGhyZiTNQ3jNG3v1XWyVioHuBdsP0MIvQq7BKOg,3805
|
|
112
117
|
webscout/Provider/TTS/streamElements.py,sha256=aaE55W_bAzvL3-pl7tHs_xU7dSZB5_V7ix-usoe-4aM,7398
|
|
113
118
|
webscout/Provider/TTS/voicepod.py,sha256=wAAnpcpDyej72UjIRhEnEmcoJnUqp1lPCLiiwJMYJic,4343
|
|
114
|
-
webscout-6.
|
|
115
|
-
webscout-6.
|
|
116
|
-
webscout-6.
|
|
117
|
-
webscout-6.
|
|
118
|
-
webscout-6.
|
|
119
|
-
webscout-6.
|
|
119
|
+
webscout-6.1.dist-info/LICENSE.md,sha256=9P0imsudI7MEvZe2pOcg8rKBn6E5FGHQ-riYozZI-Bk,2942
|
|
120
|
+
webscout-6.1.dist-info/METADATA,sha256=2O-psmg3Xk8GQlazW1g2HGLXOyiXOJINg5YkEgH2ZpA,50386
|
|
121
|
+
webscout-6.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
122
|
+
webscout-6.1.dist-info/entry_points.txt,sha256=Hh4YIIjvkqB9SVxZ2ri4DZUkgEu_WF_5_r_nZDIvfG8,73
|
|
123
|
+
webscout-6.1.dist-info/top_level.txt,sha256=nYIw7OKBQDr_Z33IzZUKidRD3zQEo8jOJYkMVMeN334,9
|
|
124
|
+
webscout-6.1.dist-info/RECORD,,
|