webscout 8.2.9__py3-none-any.whl → 2026.1.19__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.
Files changed (413) hide show
  1. webscout/AIauto.py +524 -251
  2. webscout/AIbase.py +247 -319
  3. webscout/AIutel.py +68 -703
  4. webscout/Bard.py +1072 -1026
  5. webscout/Extra/GitToolkit/__init__.py +10 -10
  6. webscout/Extra/GitToolkit/gitapi/__init__.py +20 -12
  7. webscout/Extra/GitToolkit/gitapi/gist.py +142 -0
  8. webscout/Extra/GitToolkit/gitapi/organization.py +91 -0
  9. webscout/Extra/GitToolkit/gitapi/repository.py +308 -195
  10. webscout/Extra/GitToolkit/gitapi/search.py +162 -0
  11. webscout/Extra/GitToolkit/gitapi/trending.py +236 -0
  12. webscout/Extra/GitToolkit/gitapi/user.py +128 -96
  13. webscout/Extra/GitToolkit/gitapi/utils.py +82 -62
  14. webscout/Extra/YTToolkit/README.md +443 -375
  15. webscout/Extra/YTToolkit/YTdownloader.py +953 -957
  16. webscout/Extra/YTToolkit/__init__.py +3 -3
  17. webscout/Extra/YTToolkit/transcriber.py +595 -476
  18. webscout/Extra/YTToolkit/ytapi/README.md +230 -44
  19. webscout/Extra/YTToolkit/ytapi/__init__.py +22 -6
  20. webscout/Extra/YTToolkit/ytapi/captions.py +190 -0
  21. webscout/Extra/YTToolkit/ytapi/channel.py +302 -307
  22. webscout/Extra/YTToolkit/ytapi/errors.py +13 -13
  23. webscout/Extra/YTToolkit/ytapi/extras.py +178 -118
  24. webscout/Extra/YTToolkit/ytapi/hashtag.py +120 -0
  25. webscout/Extra/YTToolkit/ytapi/https.py +89 -88
  26. webscout/Extra/YTToolkit/ytapi/patterns.py +61 -61
  27. webscout/Extra/YTToolkit/ytapi/playlist.py +59 -59
  28. webscout/Extra/YTToolkit/ytapi/pool.py +8 -8
  29. webscout/Extra/YTToolkit/ytapi/query.py +143 -40
  30. webscout/Extra/YTToolkit/ytapi/shorts.py +122 -0
  31. webscout/Extra/YTToolkit/ytapi/stream.py +68 -63
  32. webscout/Extra/YTToolkit/ytapi/suggestions.py +97 -0
  33. webscout/Extra/YTToolkit/ytapi/utils.py +66 -62
  34. webscout/Extra/YTToolkit/ytapi/video.py +403 -232
  35. webscout/Extra/__init__.py +2 -3
  36. webscout/Extra/gguf.py +1298 -684
  37. webscout/Extra/tempmail/README.md +487 -487
  38. webscout/Extra/tempmail/__init__.py +28 -28
  39. webscout/Extra/tempmail/async_utils.py +143 -141
  40. webscout/Extra/tempmail/base.py +172 -161
  41. webscout/Extra/tempmail/cli.py +191 -187
  42. webscout/Extra/tempmail/emailnator.py +88 -84
  43. webscout/Extra/tempmail/mail_tm.py +378 -361
  44. webscout/Extra/tempmail/temp_mail_io.py +304 -292
  45. webscout/Extra/weather.py +196 -194
  46. webscout/Extra/weather_ascii.py +17 -15
  47. webscout/Provider/AISEARCH/PERPLEXED_search.py +175 -0
  48. webscout/Provider/AISEARCH/Perplexity.py +292 -333
  49. webscout/Provider/AISEARCH/README.md +106 -279
  50. webscout/Provider/AISEARCH/__init__.py +16 -9
  51. webscout/Provider/AISEARCH/brave_search.py +298 -0
  52. webscout/Provider/AISEARCH/iask_search.py +357 -410
  53. webscout/Provider/AISEARCH/monica_search.py +200 -220
  54. webscout/Provider/AISEARCH/webpilotai_search.py +242 -255
  55. webscout/Provider/Algion.py +413 -0
  56. webscout/Provider/Andi.py +74 -69
  57. webscout/Provider/Apriel.py +313 -0
  58. webscout/Provider/Ayle.py +323 -0
  59. webscout/Provider/ChatSandbox.py +329 -342
  60. webscout/Provider/ClaudeOnline.py +365 -0
  61. webscout/Provider/Cohere.py +232 -208
  62. webscout/Provider/DeepAI.py +367 -0
  63. webscout/Provider/Deepinfra.py +467 -340
  64. webscout/Provider/EssentialAI.py +217 -0
  65. webscout/Provider/ExaAI.py +274 -261
  66. webscout/Provider/Gemini.py +175 -169
  67. webscout/Provider/GithubChat.py +385 -369
  68. webscout/Provider/Gradient.py +286 -0
  69. webscout/Provider/Groq.py +556 -801
  70. webscout/Provider/HadadXYZ.py +323 -0
  71. webscout/Provider/HeckAI.py +392 -375
  72. webscout/Provider/HuggingFace.py +387 -0
  73. webscout/Provider/IBM.py +340 -0
  74. webscout/Provider/Jadve.py +317 -291
  75. webscout/Provider/K2Think.py +306 -0
  76. webscout/Provider/Koboldai.py +221 -384
  77. webscout/Provider/Netwrck.py +273 -270
  78. webscout/Provider/Nvidia.py +310 -0
  79. webscout/Provider/OPENAI/DeepAI.py +489 -0
  80. webscout/Provider/OPENAI/K2Think.py +423 -0
  81. webscout/Provider/OPENAI/PI.py +463 -0
  82. webscout/Provider/OPENAI/README.md +890 -952
  83. webscout/Provider/OPENAI/TogetherAI.py +405 -0
  84. webscout/Provider/OPENAI/TwoAI.py +255 -357
  85. webscout/Provider/OPENAI/__init__.py +148 -40
  86. webscout/Provider/OPENAI/ai4chat.py +348 -293
  87. webscout/Provider/OPENAI/akashgpt.py +436 -0
  88. webscout/Provider/OPENAI/algion.py +303 -0
  89. webscout/Provider/OPENAI/{exachat.py → ayle.py} +365 -444
  90. webscout/Provider/OPENAI/base.py +253 -249
  91. webscout/Provider/OPENAI/cerebras.py +296 -0
  92. webscout/Provider/OPENAI/chatgpt.py +870 -556
  93. webscout/Provider/OPENAI/chatsandbox.py +233 -173
  94. webscout/Provider/OPENAI/deepinfra.py +403 -322
  95. webscout/Provider/OPENAI/e2b.py +2370 -1414
  96. webscout/Provider/OPENAI/elmo.py +278 -0
  97. webscout/Provider/OPENAI/exaai.py +452 -417
  98. webscout/Provider/OPENAI/freeassist.py +446 -0
  99. webscout/Provider/OPENAI/gradient.py +448 -0
  100. webscout/Provider/OPENAI/groq.py +380 -364
  101. webscout/Provider/OPENAI/hadadxyz.py +292 -0
  102. webscout/Provider/OPENAI/heckai.py +333 -308
  103. webscout/Provider/OPENAI/huggingface.py +321 -0
  104. webscout/Provider/OPENAI/ibm.py +425 -0
  105. webscout/Provider/OPENAI/llmchat.py +253 -0
  106. webscout/Provider/OPENAI/llmchatco.py +378 -335
  107. webscout/Provider/OPENAI/meta.py +541 -0
  108. webscout/Provider/OPENAI/netwrck.py +374 -357
  109. webscout/Provider/OPENAI/nvidia.py +317 -0
  110. webscout/Provider/OPENAI/oivscode.py +348 -287
  111. webscout/Provider/OPENAI/openrouter.py +328 -0
  112. webscout/Provider/OPENAI/pydantic_imports.py +1 -172
  113. webscout/Provider/OPENAI/sambanova.py +397 -0
  114. webscout/Provider/OPENAI/sonus.py +305 -304
  115. webscout/Provider/OPENAI/textpollinations.py +370 -339
  116. webscout/Provider/OPENAI/toolbaz.py +375 -413
  117. webscout/Provider/OPENAI/typefully.py +419 -355
  118. webscout/Provider/OPENAI/typliai.py +279 -0
  119. webscout/Provider/OPENAI/utils.py +314 -318
  120. webscout/Provider/OPENAI/wisecat.py +359 -387
  121. webscout/Provider/OPENAI/writecream.py +185 -163
  122. webscout/Provider/OPENAI/x0gpt.py +462 -365
  123. webscout/Provider/OPENAI/zenmux.py +380 -0
  124. webscout/Provider/OpenRouter.py +386 -0
  125. webscout/Provider/Openai.py +337 -496
  126. webscout/Provider/PI.py +443 -429
  127. webscout/Provider/QwenLM.py +346 -254
  128. webscout/Provider/STT/__init__.py +28 -0
  129. webscout/Provider/STT/base.py +303 -0
  130. webscout/Provider/STT/elevenlabs.py +264 -0
  131. webscout/Provider/Sambanova.py +317 -0
  132. webscout/Provider/TTI/README.md +69 -82
  133. webscout/Provider/TTI/__init__.py +37 -7
  134. webscout/Provider/TTI/base.py +147 -64
  135. webscout/Provider/TTI/claudeonline.py +393 -0
  136. webscout/Provider/TTI/magicstudio.py +292 -201
  137. webscout/Provider/TTI/miragic.py +180 -0
  138. webscout/Provider/TTI/pollinations.py +331 -221
  139. webscout/Provider/TTI/together.py +334 -0
  140. webscout/Provider/TTI/utils.py +14 -11
  141. webscout/Provider/TTS/README.md +186 -192
  142. webscout/Provider/TTS/__init__.py +43 -10
  143. webscout/Provider/TTS/base.py +523 -159
  144. webscout/Provider/TTS/deepgram.py +286 -156
  145. webscout/Provider/TTS/elevenlabs.py +189 -111
  146. webscout/Provider/TTS/freetts.py +218 -0
  147. webscout/Provider/TTS/murfai.py +288 -113
  148. webscout/Provider/TTS/openai_fm.py +364 -129
  149. webscout/Provider/TTS/parler.py +203 -111
  150. webscout/Provider/TTS/qwen.py +334 -0
  151. webscout/Provider/TTS/sherpa.py +286 -0
  152. webscout/Provider/TTS/speechma.py +693 -580
  153. webscout/Provider/TTS/streamElements.py +275 -333
  154. webscout/Provider/TTS/utils.py +280 -280
  155. webscout/Provider/TextPollinationsAI.py +331 -308
  156. webscout/Provider/TogetherAI.py +450 -0
  157. webscout/Provider/TwoAI.py +309 -475
  158. webscout/Provider/TypliAI.py +311 -305
  159. webscout/Provider/UNFINISHED/ChatHub.py +219 -209
  160. webscout/Provider/{OPENAI/glider.py → UNFINISHED/ChutesAI.py} +331 -326
  161. webscout/Provider/{GizAI.py → UNFINISHED/GizAI.py} +300 -295
  162. webscout/Provider/{Marcus.py → UNFINISHED/Marcus.py} +218 -198
  163. webscout/Provider/UNFINISHED/Qodo.py +481 -0
  164. webscout/Provider/{MCPCore.py → UNFINISHED/XenAI.py} +330 -315
  165. webscout/Provider/UNFINISHED/Youchat.py +347 -330
  166. webscout/Provider/UNFINISHED/aihumanizer.py +41 -0
  167. webscout/Provider/UNFINISHED/grammerchecker.py +37 -0
  168. webscout/Provider/UNFINISHED/liner.py +342 -0
  169. webscout/Provider/UNFINISHED/liner_api_request.py +246 -263
  170. webscout/Provider/{samurai.py → UNFINISHED/samurai.py} +231 -224
  171. webscout/Provider/WiseCat.py +256 -233
  172. webscout/Provider/WrDoChat.py +390 -370
  173. webscout/Provider/__init__.py +115 -174
  174. webscout/Provider/ai4chat.py +181 -174
  175. webscout/Provider/akashgpt.py +330 -335
  176. webscout/Provider/cerebras.py +397 -290
  177. webscout/Provider/cleeai.py +236 -213
  178. webscout/Provider/elmo.py +291 -283
  179. webscout/Provider/geminiapi.py +343 -208
  180. webscout/Provider/julius.py +245 -223
  181. webscout/Provider/learnfastai.py +333 -325
  182. webscout/Provider/llama3mitril.py +230 -215
  183. webscout/Provider/llmchat.py +308 -258
  184. webscout/Provider/llmchatco.py +321 -306
  185. webscout/Provider/meta.py +996 -801
  186. webscout/Provider/oivscode.py +332 -309
  187. webscout/Provider/searchchat.py +316 -292
  188. webscout/Provider/sonus.py +264 -258
  189. webscout/Provider/toolbaz.py +359 -353
  190. webscout/Provider/turboseek.py +332 -266
  191. webscout/Provider/typefully.py +262 -202
  192. webscout/Provider/x0gpt.py +332 -299
  193. webscout/__init__.py +31 -39
  194. webscout/__main__.py +5 -5
  195. webscout/cli.py +585 -524
  196. webscout/client.py +1497 -70
  197. webscout/conversation.py +140 -436
  198. webscout/exceptions.py +383 -362
  199. webscout/litagent/__init__.py +29 -29
  200. webscout/litagent/agent.py +492 -455
  201. webscout/litagent/constants.py +60 -60
  202. webscout/models.py +505 -181
  203. webscout/optimizers.py +74 -420
  204. webscout/prompt_manager.py +376 -288
  205. webscout/sanitize.py +1514 -0
  206. webscout/scout/README.md +452 -404
  207. webscout/scout/__init__.py +8 -8
  208. webscout/scout/core/__init__.py +7 -7
  209. webscout/scout/core/crawler.py +330 -210
  210. webscout/scout/core/scout.py +800 -607
  211. webscout/scout/core/search_result.py +51 -96
  212. webscout/scout/core/text_analyzer.py +64 -63
  213. webscout/scout/core/text_utils.py +412 -277
  214. webscout/scout/core/web_analyzer.py +54 -52
  215. webscout/scout/element.py +872 -478
  216. webscout/scout/parsers/__init__.py +70 -69
  217. webscout/scout/parsers/html5lib_parser.py +182 -172
  218. webscout/scout/parsers/html_parser.py +238 -236
  219. webscout/scout/parsers/lxml_parser.py +203 -178
  220. webscout/scout/utils.py +38 -37
  221. webscout/search/__init__.py +47 -0
  222. webscout/search/base.py +201 -0
  223. webscout/search/bing_main.py +45 -0
  224. webscout/search/brave_main.py +92 -0
  225. webscout/search/duckduckgo_main.py +57 -0
  226. webscout/search/engines/__init__.py +127 -0
  227. webscout/search/engines/bing/__init__.py +15 -0
  228. webscout/search/engines/bing/base.py +35 -0
  229. webscout/search/engines/bing/images.py +114 -0
  230. webscout/search/engines/bing/news.py +96 -0
  231. webscout/search/engines/bing/suggestions.py +36 -0
  232. webscout/search/engines/bing/text.py +109 -0
  233. webscout/search/engines/brave/__init__.py +19 -0
  234. webscout/search/engines/brave/base.py +47 -0
  235. webscout/search/engines/brave/images.py +213 -0
  236. webscout/search/engines/brave/news.py +353 -0
  237. webscout/search/engines/brave/suggestions.py +318 -0
  238. webscout/search/engines/brave/text.py +167 -0
  239. webscout/search/engines/brave/videos.py +364 -0
  240. webscout/search/engines/duckduckgo/__init__.py +25 -0
  241. webscout/search/engines/duckduckgo/answers.py +80 -0
  242. webscout/search/engines/duckduckgo/base.py +189 -0
  243. webscout/search/engines/duckduckgo/images.py +100 -0
  244. webscout/search/engines/duckduckgo/maps.py +183 -0
  245. webscout/search/engines/duckduckgo/news.py +70 -0
  246. webscout/search/engines/duckduckgo/suggestions.py +22 -0
  247. webscout/search/engines/duckduckgo/text.py +221 -0
  248. webscout/search/engines/duckduckgo/translate.py +48 -0
  249. webscout/search/engines/duckduckgo/videos.py +80 -0
  250. webscout/search/engines/duckduckgo/weather.py +84 -0
  251. webscout/search/engines/mojeek.py +61 -0
  252. webscout/search/engines/wikipedia.py +77 -0
  253. webscout/search/engines/yahoo/__init__.py +41 -0
  254. webscout/search/engines/yahoo/answers.py +19 -0
  255. webscout/search/engines/yahoo/base.py +34 -0
  256. webscout/search/engines/yahoo/images.py +323 -0
  257. webscout/search/engines/yahoo/maps.py +19 -0
  258. webscout/search/engines/yahoo/news.py +258 -0
  259. webscout/search/engines/yahoo/suggestions.py +140 -0
  260. webscout/search/engines/yahoo/text.py +273 -0
  261. webscout/search/engines/yahoo/translate.py +19 -0
  262. webscout/search/engines/yahoo/videos.py +302 -0
  263. webscout/search/engines/yahoo/weather.py +220 -0
  264. webscout/search/engines/yandex.py +67 -0
  265. webscout/search/engines/yep/__init__.py +13 -0
  266. webscout/search/engines/yep/base.py +34 -0
  267. webscout/search/engines/yep/images.py +101 -0
  268. webscout/search/engines/yep/suggestions.py +38 -0
  269. webscout/search/engines/yep/text.py +99 -0
  270. webscout/search/http_client.py +172 -0
  271. webscout/search/results.py +141 -0
  272. webscout/search/yahoo_main.py +57 -0
  273. webscout/search/yep_main.py +48 -0
  274. webscout/server/__init__.py +48 -0
  275. webscout/server/config.py +78 -0
  276. webscout/server/exceptions.py +69 -0
  277. webscout/server/providers.py +286 -0
  278. webscout/server/request_models.py +131 -0
  279. webscout/server/request_processing.py +404 -0
  280. webscout/server/routes.py +642 -0
  281. webscout/server/server.py +351 -0
  282. webscout/server/ui_templates.py +1171 -0
  283. webscout/swiftcli/__init__.py +79 -95
  284. webscout/swiftcli/core/__init__.py +7 -7
  285. webscout/swiftcli/core/cli.py +574 -297
  286. webscout/swiftcli/core/context.py +98 -104
  287. webscout/swiftcli/core/group.py +268 -241
  288. webscout/swiftcli/decorators/__init__.py +28 -28
  289. webscout/swiftcli/decorators/command.py +243 -221
  290. webscout/swiftcli/decorators/options.py +247 -220
  291. webscout/swiftcli/decorators/output.py +392 -252
  292. webscout/swiftcli/exceptions.py +21 -21
  293. webscout/swiftcli/plugins/__init__.py +9 -9
  294. webscout/swiftcli/plugins/base.py +134 -135
  295. webscout/swiftcli/plugins/manager.py +269 -269
  296. webscout/swiftcli/utils/__init__.py +58 -59
  297. webscout/swiftcli/utils/formatting.py +251 -252
  298. webscout/swiftcli/utils/parsing.py +368 -267
  299. webscout/update_checker.py +280 -136
  300. webscout/utils.py +28 -14
  301. webscout/version.py +2 -1
  302. webscout/version.py.bak +3 -0
  303. webscout/zeroart/__init__.py +218 -135
  304. webscout/zeroart/base.py +70 -66
  305. webscout/zeroart/effects.py +155 -101
  306. webscout/zeroart/fonts.py +1799 -1239
  307. webscout-2026.1.19.dist-info/METADATA +638 -0
  308. webscout-2026.1.19.dist-info/RECORD +312 -0
  309. {webscout-8.2.9.dist-info → webscout-2026.1.19.dist-info}/WHEEL +1 -1
  310. {webscout-8.2.9.dist-info → webscout-2026.1.19.dist-info}/entry_points.txt +1 -1
  311. webscout/DWEBS.py +0 -520
  312. webscout/Extra/Act.md +0 -309
  313. webscout/Extra/GitToolkit/gitapi/README.md +0 -110
  314. webscout/Extra/autocoder/__init__.py +0 -9
  315. webscout/Extra/autocoder/autocoder.py +0 -1105
  316. webscout/Extra/autocoder/autocoder_utiles.py +0 -332
  317. webscout/Extra/gguf.md +0 -430
  318. webscout/Extra/weather.md +0 -281
  319. webscout/Litlogger/README.md +0 -10
  320. webscout/Litlogger/__init__.py +0 -15
  321. webscout/Litlogger/formats.py +0 -4
  322. webscout/Litlogger/handlers.py +0 -103
  323. webscout/Litlogger/levels.py +0 -13
  324. webscout/Litlogger/logger.py +0 -92
  325. webscout/Provider/AI21.py +0 -177
  326. webscout/Provider/AISEARCH/DeepFind.py +0 -254
  327. webscout/Provider/AISEARCH/felo_search.py +0 -202
  328. webscout/Provider/AISEARCH/genspark_search.py +0 -324
  329. webscout/Provider/AISEARCH/hika_search.py +0 -186
  330. webscout/Provider/AISEARCH/scira_search.py +0 -298
  331. webscout/Provider/Aitopia.py +0 -316
  332. webscout/Provider/AllenAI.py +0 -440
  333. webscout/Provider/Blackboxai.py +0 -791
  334. webscout/Provider/ChatGPTClone.py +0 -237
  335. webscout/Provider/ChatGPTGratis.py +0 -194
  336. webscout/Provider/Cloudflare.py +0 -324
  337. webscout/Provider/ExaChat.py +0 -358
  338. webscout/Provider/Flowith.py +0 -217
  339. webscout/Provider/FreeGemini.py +0 -250
  340. webscout/Provider/Glider.py +0 -225
  341. webscout/Provider/HF_space/__init__.py +0 -0
  342. webscout/Provider/HF_space/qwen_qwen2.py +0 -206
  343. webscout/Provider/HuggingFaceChat.py +0 -469
  344. webscout/Provider/Hunyuan.py +0 -283
  345. webscout/Provider/LambdaChat.py +0 -411
  346. webscout/Provider/Llama3.py +0 -259
  347. webscout/Provider/Nemotron.py +0 -218
  348. webscout/Provider/OLLAMA.py +0 -396
  349. webscout/Provider/OPENAI/BLACKBOXAI.py +0 -766
  350. webscout/Provider/OPENAI/Cloudflare.py +0 -378
  351. webscout/Provider/OPENAI/FreeGemini.py +0 -283
  352. webscout/Provider/OPENAI/NEMOTRON.py +0 -232
  353. webscout/Provider/OPENAI/Qwen3.py +0 -283
  354. webscout/Provider/OPENAI/api.py +0 -969
  355. webscout/Provider/OPENAI/c4ai.py +0 -373
  356. webscout/Provider/OPENAI/chatgptclone.py +0 -494
  357. webscout/Provider/OPENAI/copilot.py +0 -242
  358. webscout/Provider/OPENAI/flowith.py +0 -162
  359. webscout/Provider/OPENAI/freeaichat.py +0 -359
  360. webscout/Provider/OPENAI/mcpcore.py +0 -389
  361. webscout/Provider/OPENAI/multichat.py +0 -376
  362. webscout/Provider/OPENAI/opkfc.py +0 -496
  363. webscout/Provider/OPENAI/scirachat.py +0 -477
  364. webscout/Provider/OPENAI/standardinput.py +0 -433
  365. webscout/Provider/OPENAI/typegpt.py +0 -364
  366. webscout/Provider/OPENAI/uncovrAI.py +0 -463
  367. webscout/Provider/OPENAI/venice.py +0 -431
  368. webscout/Provider/OPENAI/yep.py +0 -382
  369. webscout/Provider/OpenGPT.py +0 -209
  370. webscout/Provider/Perplexitylabs.py +0 -415
  371. webscout/Provider/Reka.py +0 -214
  372. webscout/Provider/StandardInput.py +0 -290
  373. webscout/Provider/TTI/aiarta.py +0 -365
  374. webscout/Provider/TTI/artbit.py +0 -0
  375. webscout/Provider/TTI/fastflux.py +0 -200
  376. webscout/Provider/TTI/piclumen.py +0 -203
  377. webscout/Provider/TTI/pixelmuse.py +0 -225
  378. webscout/Provider/TTS/gesserit.py +0 -128
  379. webscout/Provider/TTS/sthir.py +0 -94
  380. webscout/Provider/TeachAnything.py +0 -229
  381. webscout/Provider/UNFINISHED/puterjs.py +0 -635
  382. webscout/Provider/UNFINISHED/test_lmarena.py +0 -119
  383. webscout/Provider/Venice.py +0 -258
  384. webscout/Provider/VercelAI.py +0 -253
  385. webscout/Provider/Writecream.py +0 -246
  386. webscout/Provider/WritingMate.py +0 -269
  387. webscout/Provider/asksteve.py +0 -220
  388. webscout/Provider/chatglm.py +0 -215
  389. webscout/Provider/copilot.py +0 -425
  390. webscout/Provider/freeaichat.py +0 -285
  391. webscout/Provider/granite.py +0 -235
  392. webscout/Provider/hermes.py +0 -266
  393. webscout/Provider/koala.py +0 -170
  394. webscout/Provider/lmarena.py +0 -198
  395. webscout/Provider/multichat.py +0 -364
  396. webscout/Provider/scira_chat.py +0 -299
  397. webscout/Provider/scnet.py +0 -243
  398. webscout/Provider/talkai.py +0 -194
  399. webscout/Provider/typegpt.py +0 -289
  400. webscout/Provider/uncovr.py +0 -368
  401. webscout/Provider/yep.py +0 -389
  402. webscout/litagent/Readme.md +0 -276
  403. webscout/litprinter/__init__.py +0 -59
  404. webscout/swiftcli/Readme.md +0 -323
  405. webscout/tempid.py +0 -128
  406. webscout/webscout_search.py +0 -1184
  407. webscout/webscout_search_async.py +0 -654
  408. webscout/yep_search.py +0 -347
  409. webscout/zeroart/README.md +0 -89
  410. webscout-8.2.9.dist-info/METADATA +0 -1033
  411. webscout-8.2.9.dist-info/RECORD +0 -289
  412. {webscout-8.2.9.dist-info → webscout-2026.1.19.dist-info}/licenses/LICENSE.md +0 -0
  413. {webscout-8.2.9.dist-info → webscout-2026.1.19.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1171 @@
1
+
2
+ """
3
+ UI Templates for Webscout Server.
4
+ Contains HTML/CSS/JS for the landing page and custom Swagger UI.
5
+ """
6
+
7
+ LANDING_PAGE_HTML = """
8
+ <!DOCTYPE html>
9
+ <html lang="en">
10
+ <head>
11
+ <meta charset="UTF-8">
12
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
13
+ <title>Webscout API - Your All-in-One AI Toolkit</title>
14
+ <meta name="description" content="Access 90+ AI providers, multi-engine web search, TTS, TTI, and powerful developer tools through one unified OpenAI-compatible API.">
15
+ <link rel="preconnect" href="https://fonts.googleapis.com">
16
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
17
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
18
+ <style>
19
+ *, *::before, *::after {
20
+ box-sizing: border-box;
21
+ margin: 0;
22
+ padding: 0;
23
+ }
24
+
25
+ :root {
26
+ --bg-primary: #0a0a0f;
27
+ --bg-secondary: #12121a;
28
+ --bg-card: rgba(255, 255, 255, 0.03);
29
+ --bg-card-hover: rgba(255, 255, 255, 0.06);
30
+ --text-primary: #ffffff;
31
+ --text-secondary: #a1a1aa;
32
+ --text-muted: #71717a;
33
+ --accent-primary: #6366f1;
34
+ --accent-secondary: #8b5cf6;
35
+ --accent-tertiary: #06b6d4;
36
+ --accent-success: #10b981;
37
+ --border-color: rgba(255, 255, 255, 0.08);
38
+ --border-hover: rgba(255, 255, 255, 0.15);
39
+ --glow-primary: rgba(99, 102, 241, 0.4);
40
+ --glow-secondary: rgba(139, 92, 246, 0.3);
41
+ }
42
+
43
+ body {
44
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
45
+ background: var(--bg-primary);
46
+ color: var(--text-primary);
47
+ line-height: 1.6;
48
+ overflow-x: hidden;
49
+ min-height: 100vh;
50
+ }
51
+
52
+ /* Animated Background */
53
+ .bg-gradient {
54
+ position: fixed;
55
+ top: 0;
56
+ left: 0;
57
+ right: 0;
58
+ bottom: 0;
59
+ z-index: -1;
60
+ overflow: hidden;
61
+ }
62
+
63
+ .bg-gradient::before {
64
+ content: '';
65
+ position: absolute;
66
+ top: -50%;
67
+ left: -50%;
68
+ width: 200%;
69
+ height: 200%;
70
+ background:
71
+ radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
72
+ radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
73
+ radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
74
+ animation: gradientMove 20s ease-in-out infinite;
75
+ }
76
+
77
+ @keyframes gradientMove {
78
+ 0%, 100% { transform: translate(0, 0) rotate(0deg); }
79
+ 25% { transform: translate(2%, 2%) rotate(1deg); }
80
+ 50% { transform: translate(-1%, 3%) rotate(-1deg); }
81
+ 75% { transform: translate(-2%, -1%) rotate(0.5deg); }
82
+ }
83
+
84
+ /* Floating Orbs */
85
+ .orb {
86
+ position: fixed;
87
+ border-radius: 50%;
88
+ filter: blur(80px);
89
+ opacity: 0.5;
90
+ animation: float 15s ease-in-out infinite;
91
+ z-index: -1;
92
+ }
93
+
94
+ .orb-1 {
95
+ width: 400px;
96
+ height: 400px;
97
+ background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
98
+ top: -100px;
99
+ right: -100px;
100
+ animation-delay: 0s;
101
+ }
102
+
103
+ .orb-2 {
104
+ width: 300px;
105
+ height: 300px;
106
+ background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
107
+ bottom: -50px;
108
+ left: -50px;
109
+ animation-delay: -5s;
110
+ }
111
+
112
+ .orb-3 {
113
+ width: 250px;
114
+ height: 250px;
115
+ background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
116
+ top: 50%;
117
+ left: 50%;
118
+ transform: translate(-50%, -50%);
119
+ animation-delay: -10s;
120
+ opacity: 0.3;
121
+ }
122
+
123
+ @keyframes float {
124
+ 0%, 100% { transform: translate(0, 0) scale(1); }
125
+ 25% { transform: translate(30px, -30px) scale(1.05); }
126
+ 50% { transform: translate(-20px, 20px) scale(0.95); }
127
+ 75% { transform: translate(20px, 30px) scale(1.02); }
128
+ }
129
+
130
+ .container {
131
+ max-width: 1200px;
132
+ margin: 0 auto;
133
+ padding: 0 2rem;
134
+ }
135
+
136
+ /* Header */
137
+ header {
138
+ position: fixed;
139
+ top: 0;
140
+ left: 0;
141
+ right: 0;
142
+ z-index: 100;
143
+ padding: 1rem 2rem;
144
+ background: rgba(10, 10, 15, 0.8);
145
+ backdrop-filter: blur(20px);
146
+ border-bottom: 1px solid var(--border-color);
147
+ }
148
+
149
+ .header-content {
150
+ max-width: 1200px;
151
+ margin: 0 auto;
152
+ display: flex;
153
+ justify-content: space-between;
154
+ align-items: center;
155
+ }
156
+
157
+ .logo {
158
+ display: flex;
159
+ align-items: center;
160
+ gap: 0.75rem;
161
+ font-size: 1.5rem;
162
+ font-weight: 800;
163
+ color: var(--text-primary);
164
+ text-decoration: none;
165
+ letter-spacing: -0.03em;
166
+ }
167
+
168
+ .logo-icon {
169
+ width: 40px;
170
+ height: 40px;
171
+ background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
172
+ border-radius: 12px;
173
+ display: flex;
174
+ align-items: center;
175
+ justify-content: center;
176
+ box-shadow: 0 0 20px var(--glow-primary);
177
+ }
178
+
179
+ .logo-icon svg {
180
+ width: 24px;
181
+ height: 24px;
182
+ color: white;
183
+ }
184
+
185
+ .nav-links {
186
+ display: flex;
187
+ align-items: center;
188
+ gap: 1.5rem;
189
+ }
190
+
191
+ .nav-link {
192
+ color: var(--text-secondary);
193
+ text-decoration: none;
194
+ font-weight: 500;
195
+ font-size: 0.95rem;
196
+ transition: color 0.2s ease;
197
+ }
198
+
199
+ .nav-link:hover {
200
+ color: var(--text-primary);
201
+ }
202
+
203
+ .btn {
204
+ display: inline-flex;
205
+ align-items: center;
206
+ justify-content: center;
207
+ gap: 0.5rem;
208
+ padding: 0.75rem 1.5rem;
209
+ border-radius: 10px;
210
+ font-weight: 600;
211
+ font-size: 0.95rem;
212
+ text-decoration: none;
213
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
214
+ cursor: pointer;
215
+ border: none;
216
+ }
217
+
218
+ .btn-primary {
219
+ background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
220
+ color: white;
221
+ box-shadow: 0 4px 20px var(--glow-primary);
222
+ }
223
+
224
+ .btn-primary:hover {
225
+ transform: translateY(-2px);
226
+ box-shadow: 0 8px 30px var(--glow-primary);
227
+ }
228
+
229
+ .btn-secondary {
230
+ background: var(--bg-card);
231
+ color: var(--text-primary);
232
+ border: 1px solid var(--border-color);
233
+ }
234
+
235
+ .btn-secondary:hover {
236
+ background: var(--bg-card-hover);
237
+ border-color: var(--border-hover);
238
+ transform: translateY(-2px);
239
+ }
240
+
241
+ .btn-ghost {
242
+ background: transparent;
243
+ color: var(--text-secondary);
244
+ padding: 0.5rem 1rem;
245
+ }
246
+
247
+ .btn-ghost:hover {
248
+ color: var(--text-primary);
249
+ background: var(--bg-card);
250
+ }
251
+
252
+ /* Hero Section */
253
+ .hero {
254
+ padding: 10rem 0 6rem;
255
+ text-align: center;
256
+ position: relative;
257
+ }
258
+
259
+ .hero-badge {
260
+ display: inline-flex;
261
+ align-items: center;
262
+ gap: 0.5rem;
263
+ padding: 0.5rem 1rem;
264
+ background: var(--bg-card);
265
+ border: 1px solid var(--border-color);
266
+ border-radius: 100px;
267
+ font-size: 0.85rem;
268
+ color: var(--text-secondary);
269
+ margin-bottom: 2rem;
270
+ animation: fadeInUp 0.6s ease-out;
271
+ }
272
+
273
+ .hero-badge-dot {
274
+ width: 8px;
275
+ height: 8px;
276
+ background: var(--accent-success);
277
+ border-radius: 50%;
278
+ animation: pulse 2s ease-in-out infinite;
279
+ }
280
+
281
+ @keyframes pulse {
282
+ 0%, 100% { opacity: 1; transform: scale(1); }
283
+ 50% { opacity: 0.5; transform: scale(1.2); }
284
+ }
285
+
286
+ @keyframes fadeInUp {
287
+ from {
288
+ opacity: 0;
289
+ transform: translateY(20px);
290
+ }
291
+ to {
292
+ opacity: 1;
293
+ transform: translateY(0);
294
+ }
295
+ }
296
+
297
+ h1 {
298
+ font-size: clamp(2.5rem, 6vw, 4.5rem);
299
+ font-weight: 900;
300
+ line-height: 1.1;
301
+ letter-spacing: -0.03em;
302
+ margin-bottom: 1.5rem;
303
+ animation: fadeInUp 0.6s ease-out 0.1s both;
304
+ }
305
+
306
+ .gradient-text {
307
+ background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
308
+ -webkit-background-clip: text;
309
+ -webkit-text-fill-color: transparent;
310
+ background-clip: text;
311
+ }
312
+
313
+ .hero-description {
314
+ font-size: 1.25rem;
315
+ color: var(--text-secondary);
316
+ max-width: 650px;
317
+ margin: 0 auto 3rem;
318
+ animation: fadeInUp 0.6s ease-out 0.2s both;
319
+ }
320
+
321
+ .hero-buttons {
322
+ display: flex;
323
+ gap: 1rem;
324
+ justify-content: center;
325
+ flex-wrap: wrap;
326
+ animation: fadeInUp 0.6s ease-out 0.3s both;
327
+ }
328
+
329
+ /* Stats Section */
330
+ .stats {
331
+ display: grid;
332
+ grid-template-columns: repeat(4, 1fr);
333
+ gap: 1.5rem;
334
+ padding: 4rem 0;
335
+ border-top: 1px solid var(--border-color);
336
+ border-bottom: 1px solid var(--border-color);
337
+ margin: 4rem 0;
338
+ }
339
+
340
+ @media (max-width: 768px) {
341
+ .stats {
342
+ grid-template-columns: repeat(2, 1fr);
343
+ }
344
+ }
345
+
346
+ .stat-item {
347
+ text-align: center;
348
+ padding: 1.5rem;
349
+ }
350
+
351
+ .stat-value {
352
+ font-size: 3rem;
353
+ font-weight: 800;
354
+ background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
355
+ -webkit-background-clip: text;
356
+ -webkit-text-fill-color: transparent;
357
+ background-clip: text;
358
+ line-height: 1;
359
+ margin-bottom: 0.5rem;
360
+ }
361
+
362
+ .stat-label {
363
+ font-size: 0.95rem;
364
+ color: var(--text-muted);
365
+ font-weight: 500;
366
+ }
367
+
368
+ /* Features Section */
369
+ .features-section {
370
+ padding: 4rem 0;
371
+ }
372
+
373
+ .section-header {
374
+ text-align: center;
375
+ margin-bottom: 4rem;
376
+ }
377
+
378
+ .section-title {
379
+ font-size: 2.5rem;
380
+ font-weight: 800;
381
+ margin-bottom: 1rem;
382
+ letter-spacing: -0.02em;
383
+ }
384
+
385
+ .section-description {
386
+ font-size: 1.1rem;
387
+ color: var(--text-secondary);
388
+ max-width: 600px;
389
+ margin: 0 auto;
390
+ }
391
+
392
+ .features-grid {
393
+ display: grid;
394
+ grid-template-columns: repeat(3, 1fr);
395
+ gap: 1.5rem;
396
+ }
397
+
398
+ @media (max-width: 1024px) {
399
+ .features-grid {
400
+ grid-template-columns: repeat(2, 1fr);
401
+ }
402
+ }
403
+
404
+ @media (max-width: 640px) {
405
+ .features-grid {
406
+ grid-template-columns: 1fr;
407
+ }
408
+ }
409
+
410
+ .feature-card {
411
+ background: var(--bg-card);
412
+ border: 1px solid var(--border-color);
413
+ border-radius: 20px;
414
+ padding: 2rem;
415
+ transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
416
+ position: relative;
417
+ overflow: hidden;
418
+ }
419
+
420
+ .feature-card::before {
421
+ content: '';
422
+ position: absolute;
423
+ top: 0;
424
+ left: 0;
425
+ right: 0;
426
+ height: 1px;
427
+ background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
428
+ opacity: 0;
429
+ transition: opacity 0.3s ease;
430
+ }
431
+
432
+ .feature-card:hover {
433
+ transform: translateY(-8px);
434
+ border-color: var(--border-hover);
435
+ background: var(--bg-card-hover);
436
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
437
+ }
438
+
439
+ .feature-card:hover::before {
440
+ opacity: 1;
441
+ }
442
+
443
+ .feature-icon {
444
+ width: 56px;
445
+ height: 56px;
446
+ border-radius: 16px;
447
+ display: flex;
448
+ align-items: center;
449
+ justify-content: center;
450
+ margin-bottom: 1.5rem;
451
+ transition: all 0.3s ease;
452
+ }
453
+
454
+ .feature-icon svg {
455
+ width: 28px;
456
+ height: 28px;
457
+ }
458
+
459
+ .feature-icon-1 { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1)); color: var(--accent-primary); }
460
+ .feature-icon-2 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1)); color: var(--accent-secondary); }
461
+ .feature-icon-3 { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)); color: var(--accent-tertiary); }
462
+ .feature-icon-4 { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1)); color: var(--accent-success); }
463
+ .feature-icon-5 { background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.1)); color: #f472b6; }
464
+ .feature-icon-6 { background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1)); color: #fbbf24; }
465
+
466
+ .feature-card:hover .feature-icon {
467
+ transform: scale(1.1) rotate(5deg);
468
+ }
469
+
470
+ .feature-title {
471
+ font-size: 1.25rem;
472
+ font-weight: 700;
473
+ margin-bottom: 0.75rem;
474
+ color: var(--text-primary);
475
+ }
476
+
477
+ .feature-description {
478
+ font-size: 0.95rem;
479
+ color: var(--text-secondary);
480
+ line-height: 1.7;
481
+ }
482
+
483
+ /* Code Preview */
484
+ .code-section {
485
+ padding: 4rem 0;
486
+ }
487
+
488
+ .code-container {
489
+ background: var(--bg-secondary);
490
+ border: 1px solid var(--border-color);
491
+ border-radius: 20px;
492
+ overflow: hidden;
493
+ box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
494
+ }
495
+
496
+ .code-header {
497
+ padding: 1rem 1.5rem;
498
+ background: var(--bg-card);
499
+ border-bottom: 1px solid var(--border-color);
500
+ display: flex;
501
+ align-items: center;
502
+ gap: 0.5rem;
503
+ }
504
+
505
+ .code-dot {
506
+ width: 12px;
507
+ height: 12px;
508
+ border-radius: 50%;
509
+ }
510
+
511
+ .code-dot-red { background: #ef4444; }
512
+ .code-dot-yellow { background: #eab308; }
513
+ .code-dot-green { background: #22c55e; }
514
+
515
+ .code-content {
516
+ padding: 1.5rem;
517
+ font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
518
+ font-size: 0.9rem;
519
+ line-height: 1.8;
520
+ overflow-x: auto;
521
+ }
522
+
523
+ .code-line {
524
+ display: flex;
525
+ gap: 1rem;
526
+ }
527
+
528
+ .code-line-number {
529
+ color: var(--text-muted);
530
+ user-select: none;
531
+ min-width: 2rem;
532
+ text-align: right;
533
+ }
534
+
535
+ .code-keyword { color: #c084fc; }
536
+ .code-string { color: #34d399; }
537
+ .code-comment { color: #6b7280; }
538
+ .code-function { color: #60a5fa; }
539
+ .code-variable { color: #f472b6; }
540
+
541
+ /* CTA Section */
542
+ .cta-section {
543
+ padding: 6rem 0;
544
+ text-align: center;
545
+ }
546
+
547
+ .cta-card {
548
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
549
+ border: 1px solid var(--border-color);
550
+ border-radius: 24px;
551
+ padding: 4rem;
552
+ position: relative;
553
+ overflow: hidden;
554
+ }
555
+
556
+ .cta-card::before {
557
+ content: '';
558
+ position: absolute;
559
+ top: 0;
560
+ left: 0;
561
+ right: 0;
562
+ height: 1px;
563
+ background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
564
+ }
565
+
566
+ .cta-title {
567
+ font-size: 2rem;
568
+ font-weight: 800;
569
+ margin-bottom: 1rem;
570
+ }
571
+
572
+ .cta-description {
573
+ font-size: 1.1rem;
574
+ color: var(--text-secondary);
575
+ margin-bottom: 2rem;
576
+ max-width: 500px;
577
+ margin-left: auto;
578
+ margin-right: auto;
579
+ }
580
+
581
+ /* Footer */
582
+ footer {
583
+ padding: 3rem 0;
584
+ border-top: 1px solid var(--border-color);
585
+ text-align: center;
586
+ }
587
+
588
+ .footer-content {
589
+ display: flex;
590
+ flex-direction: column;
591
+ align-items: center;
592
+ gap: 1.5rem;
593
+ }
594
+
595
+ .footer-links {
596
+ display: flex;
597
+ gap: 2rem;
598
+ flex-wrap: wrap;
599
+ justify-content: center;
600
+ }
601
+
602
+ .footer-link {
603
+ color: var(--text-muted);
604
+ text-decoration: none;
605
+ font-size: 0.9rem;
606
+ transition: color 0.2s ease;
607
+ }
608
+
609
+ .footer-link:hover {
610
+ color: var(--text-primary);
611
+ }
612
+
613
+ .footer-credit {
614
+ color: var(--text-muted);
615
+ font-size: 0.85rem;
616
+ }
617
+
618
+ .footer-credit a {
619
+ color: var(--accent-primary);
620
+ text-decoration: none;
621
+ }
622
+
623
+ .footer-credit a:hover {
624
+ text-decoration: underline;
625
+ }
626
+
627
+ /* Responsive */
628
+ @media (max-width: 768px) {
629
+ header {
630
+ padding: 1rem;
631
+ }
632
+
633
+ .nav-links {
634
+ gap: 0.75rem;
635
+ }
636
+
637
+ .nav-link {
638
+ display: none;
639
+ }
640
+
641
+ .hero {
642
+ padding: 8rem 0 4rem;
643
+ }
644
+
645
+ .hero-description {
646
+ font-size: 1.1rem;
647
+ }
648
+
649
+ .stats {
650
+ gap: 1rem;
651
+ padding: 2rem 0;
652
+ }
653
+
654
+ .stat-value {
655
+ font-size: 2rem;
656
+ }
657
+
658
+ .cta-card {
659
+ padding: 2.5rem 1.5rem;
660
+ }
661
+ }
662
+ </style>
663
+ </head>
664
+ <body>
665
+ <div class="bg-gradient"></div>
666
+ <div class="orb orb-1"></div>
667
+ <div class="orb orb-2"></div>
668
+ <div class="orb orb-3"></div>
669
+
670
+ <header>
671
+ <div class="header-content">
672
+ <a href="/" class="logo">
673
+ <div class="logo-icon">
674
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
675
+ <circle cx="12" cy="12" r="10"></circle>
676
+ <polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>
677
+ </svg>
678
+ </div>
679
+ Webscout
680
+ </a>
681
+ <nav class="nav-links">
682
+ <a href="/docs" class="nav-link">Documentation</a>
683
+ <a href="/v1/models" class="nav-link">Models</a>
684
+ <a href="https://github.com/OEvortex/Webscout" class="btn btn-secondary" target="_blank">
685
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor">
686
+ <path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
687
+ </svg>
688
+ GitHub
689
+ </a>
690
+ </nav>
691
+ </div>
692
+ </header>
693
+
694
+ <main>
695
+ <section class="hero container">
696
+ <div class="hero-badge">
697
+ <span class="hero-badge-dot"></span>
698
+ OpenAI-Compatible API Server
699
+ </div>
700
+ <h1>Your All-in-One<br><span class="gradient-text">AI Toolkit</span></h1>
701
+ <p class="hero-description">
702
+ Access 90+ AI providers, multi-engine web search, text-to-speech, image generation,
703
+ and powerful developer tools — all through one unified, production-ready API.
704
+ </p>
705
+ <div class="hero-buttons">
706
+ <a href="/docs" class="btn btn-primary">
707
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
708
+ <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
709
+ <polyline points="14 2 14 8 20 8"></polyline>
710
+ <line x1="16" y1="13" x2="8" y2="13"></line>
711
+ <line x1="16" y1="17" x2="8" y2="17"></line>
712
+ <polyline points="10 9 9 9 8 9"></polyline>
713
+ </svg>
714
+ API Documentation
715
+ </a>
716
+ <a href="/v1/models" class="btn btn-secondary" target="_blank">
717
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
718
+ <circle cx="12" cy="12" r="3"></circle>
719
+ <path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path>
720
+ </svg>
721
+ View Models
722
+ </a>
723
+ <a href="https://pypi.org/project/webscout/" class="btn btn-ghost" target="_blank">
724
+ pip install webscout →
725
+ </a>
726
+ </div>
727
+ </section>
728
+
729
+ <section class="stats container">
730
+ <div class="stat-item">
731
+ <div class="stat-value">90+</div>
732
+ <div class="stat-label">AI Providers</div>
733
+ </div>
734
+ <div class="stat-item">
735
+ <div class="stat-value">8+</div>
736
+ <div class="stat-label">Search Engines</div>
737
+ </div>
738
+ <div class="stat-item">
739
+ <div class="stat-value">15+</div>
740
+ <div class="stat-label">TTS & TTI Providers</div>
741
+ </div>
742
+ <div class="stat-item">
743
+ <div class="stat-value">100%</div>
744
+ <div class="stat-label">OpenAI Compatible</div>
745
+ </div>
746
+ </section>
747
+
748
+ <section class="features-section container">
749
+ <div class="section-header">
750
+ <h2 class="section-title">Everything You Need</h2>
751
+ <p class="section-description">
752
+ A comprehensive toolkit for AI integration, web scraping, and developer productivity.
753
+ </p>
754
+ </div>
755
+
756
+ <div class="features-grid">
757
+ <div class="feature-card">
758
+ <div class="feature-icon feature-icon-1">
759
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
760
+ <path d="M12 2L2 7l10 5 10-5-10-5z"></path>
761
+ <path d="M2 17l10 5 10-5"></path>
762
+ <path d="M2 12l10 5 10-5"></path>
763
+ </svg>
764
+ </div>
765
+ <h3 class="feature-title">Multi-Provider LLM Access</h3>
766
+ <p class="feature-description">
767
+ Connect to OpenAI, Gemini, Claude, GROQ, DeepInfra, Meta AI, Cohere, and 80+ more providers through a unified interface.
768
+ </p>
769
+ </div>
770
+
771
+ <div class="feature-card">
772
+ <div class="feature-icon feature-icon-2">
773
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
774
+ <circle cx="11" cy="11" r="8"></circle>
775
+ <line x1="21" y1="21" x2="16.65" y2="16.65"></line>
776
+ </svg>
777
+ </div>
778
+ <h3 class="feature-title">Multi-Engine Web Search</h3>
779
+ <p class="feature-description">
780
+ Search across DuckDuckGo, Bing, Brave, Yahoo, Yandex, Mojeek, and Wikipedia with AI-powered search integration.
781
+ </p>
782
+ </div>
783
+
784
+ <div class="feature-card">
785
+ <div class="feature-icon feature-icon-3">
786
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
787
+ <polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>
788
+ <path d="M19.07 4.93a10 10 0 0 1 0 14.14"></path>
789
+ <path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>
790
+ </svg>
791
+ </div>
792
+ <h3 class="feature-title">Text-to-Speech</h3>
793
+ <p class="feature-description">
794
+ Convert text to natural-sounding speech with multiple providers including Elevenlabs, and various AI-powered TTS engines.
795
+ </p>
796
+ </div>
797
+
798
+ <div class="feature-card">
799
+ <div class="feature-icon feature-icon-4">
800
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
801
+ <rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
802
+ <circle cx="8.5" cy="8.5" r="1.5"></circle>
803
+ <polyline points="21 15 16 10 5 21"></polyline>
804
+ </svg>
805
+ </div>
806
+ <h3 class="feature-title">Image Generation</h3>
807
+ <p class="feature-description">
808
+ Generate stunning images with AI art providers. Create visuals from text prompts using state-of-the-art models.
809
+ </p>
810
+ </div>
811
+
812
+ <div class="feature-card">
813
+ <div class="feature-icon feature-icon-5">
814
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
815
+ <polyline points="16 18 22 12 16 6"></polyline>
816
+ <polyline points="8 6 2 12 8 18"></polyline>
817
+ </svg>
818
+ </div>
819
+ <h3 class="feature-title">Developer Tools</h3>
820
+ <p class="feature-description">
821
+ SwiftCLI framework, GitAPI toolkit, LitPrinter console output, Scout web parser, and GGUF model conversion utilities.
822
+ </p>
823
+ </div>
824
+
825
+ <div class="feature-card">
826
+ <div class="feature-icon feature-icon-6">
827
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
828
+ <path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"></path>
829
+ </svg>
830
+ </div>
831
+ <h3 class="feature-title">Production Ready</h3>
832
+ <p class="feature-description">
833
+ High-performance streaming, robust error handling, tool calling support, and seamless integration with existing OpenAI workflows.
834
+ </p>
835
+ </div>
836
+ </div>
837
+ </section>
838
+
839
+ <section class="code-section container">
840
+ <div class="code-container">
841
+ <div class="code-header">
842
+ <span class="code-dot code-dot-red"></span>
843
+ <span class="code-dot code-dot-yellow"></span>
844
+ <span class="code-dot code-dot-green"></span>
845
+ </div>
846
+ <div class="code-content">
847
+ <div class="code-line"><span class="code-line-number">1</span><span class="code-comment"># Use any OpenAI-compatible client</span></div>
848
+ <div class="code-line"><span class="code-line-number">2</span><span class="code-keyword">from</span> openai <span class="code-keyword">import</span> OpenAI</div>
849
+ <div class="code-line"><span class="code-line-number">3</span></div>
850
+ <div class="code-line"><span class="code-line-number">4</span><span class="code-variable">client</span> = <span class="code-function">OpenAI</span>(</div>
851
+ <div class="code-line"><span class="code-line-number">5</span> base_url=<span class="code-string">"http://localhost:8000/v1"</span>,</div>
852
+ <div class="code-line"><span class="code-line-number">6</span> api_key=<span class="code-string">"not-needed"</span></div>
853
+ <div class="code-line"><span class="code-line-number">7</span>)</div>
854
+ <div class="code-line"><span class="code-line-number">8</span></div>
855
+ <div class="code-line"><span class="code-line-number">9</span><span class="code-variable">response</span> = <span class="code-variable">client</span>.chat.completions.<span class="code-function">create</span>(</div>
856
+ <div class="code-line"><span class="code-line-number">10</span> model=<span class="code-string">"gpt-4"</span>, <span class="code-comment"># Works with any provider</span></div>
857
+ <div class="code-line"><span class="code-line-number">11</span> messages=[{<span class="code-string">"role"</span>: <span class="code-string">"user"</span>, <span class="code-string">"content"</span>: <span class="code-string">"Hello!"</span>}]</div>
858
+ <div class="code-line"><span class="code-line-number">12</span>)</div>
859
+ </div>
860
+ </div>
861
+ </section>
862
+
863
+ <section class="cta-section container">
864
+ <div class="cta-card">
865
+ <h2 class="cta-title">Ready to Get Started?</h2>
866
+ <p class="cta-description">
867
+ Explore the API documentation, browse available models, or install Webscout to begin building.
868
+ </p>
869
+ <div class="hero-buttons">
870
+ <a href="/docs" class="btn btn-primary">Explore API Docs</a>
871
+ <a href="https://github.com/OEvortex/Webscout" class="btn btn-secondary" target="_blank">View on GitHub</a>
872
+ </div>
873
+ </div>
874
+ </section>
875
+ </main>
876
+
877
+ <footer>
878
+ <div class="container">
879
+ <div class="footer-content">
880
+ <div class="footer-links">
881
+ <a href="/docs" class="footer-link">API Documentation</a>
882
+ <a href="/v1/models" class="footer-link">Models</a>
883
+ <a href="https://github.com/OEvortex/Webscout" class="footer-link" target="_blank">GitHub</a>
884
+ <a href="https://pypi.org/project/webscout/" class="footer-link" target="_blank">PyPI</a>
885
+ <a href="https://t.me/OEvortexAI" class="footer-link" target="_blank">Telegram</a>
886
+ </div>
887
+ <p class="footer-credit">
888
+ © 2025 Webscout — Made with ❤️ by <a href="https://github.com/OEvortex" target="_blank">OEvortex</a> & Open Source Community
889
+ </p>
890
+ </div>
891
+ </div>
892
+ </footer>
893
+ </body>
894
+ </html>
895
+ """
896
+
897
+ SWAGGER_CSS = """
898
+ /* Webscout Custom Light Swagger Theme */
899
+ :root {
900
+ --bg-color: #f8fafc;
901
+ --header-bg: #ffffff;
902
+ --border-color: #e2e8f0;
903
+ --text-primary: #1e293b;
904
+ --text-secondary: #64748b;
905
+ --primary-color: #4f46e5;
906
+ --success-color: #10b981;
907
+ --get-color: #0ea5e9;
908
+ --post-color: #10b981;
909
+ }
910
+
911
+ body {
912
+ background-color: var(--bg-color) !important;
913
+ color: var(--text-primary) !important;
914
+ }
915
+
916
+ .swagger-ui {
917
+ font-family: 'Outfit', system-ui, sans-serif !important;
918
+ }
919
+
920
+ /* Top Bar */
921
+ .swagger-ui .topbar {
922
+ background-color: var(--header-bg) !important;
923
+ border-bottom: 1px solid var(--border-color) !important;
924
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
925
+ padding: 15px 0 !important;
926
+ }
927
+
928
+ .swagger-ui .topbar .link {
929
+ display: none !important;
930
+ }
931
+
932
+ /* Main Container */
933
+ .swagger-ui .info .title {
934
+ color: var(--text-primary) !important;
935
+ font-family: 'Outfit', sans-serif !important;
936
+ font-weight: 800 !important;
937
+ letter-spacing: -0.02em !important;
938
+ }
939
+
940
+ .swagger-ui .info p {
941
+ color: var(--text-secondary) !important;
942
+ }
943
+
944
+ .swagger-ui .scheme-container {
945
+ background: var(--header-bg) !important;
946
+ box-shadow: none !important;
947
+ border-bottom: 1px solid var(--border-color) !important;
948
+ border-radius: 8px;
949
+ margin-bottom: 2rem !important;
950
+ }
951
+
952
+ /* Operations - Headers */
953
+ .swagger-ui .opblock-tag {
954
+ color: var(--text-primary) !important;
955
+ border-bottom: 1px solid var(--border-color) !important;
956
+ font-family: 'Outfit', sans-serif !important;
957
+ font-weight: 600 !important;
958
+ }
959
+
960
+ .swagger-ui .opblock-tag small {
961
+ color: var(--text-secondary) !important;
962
+ }
963
+
964
+ /* Operation Blocks */
965
+ .swagger-ui .opblock {
966
+ background: #ffffff !important;
967
+ border: 1px solid var(--border-color) !important;
968
+ border-radius: 12px !important;
969
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
970
+ margin: 0 0 20px !important;
971
+ transition: all 0.2s ease !important;
972
+ }
973
+
974
+ .swagger-ui .opblock:hover {
975
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
976
+ }
977
+
978
+ .swagger-ui .opblock .opblock-summary {
979
+ border-bottom: 1px solid transparent !important;
980
+ }
981
+
982
+ .swagger-ui .opblock.is-open .opblock-summary {
983
+ border-bottom: 1px solid var(--border-color) !important;
984
+ }
985
+
986
+ .swagger-ui .opblock .opblock-summary-method {
987
+ border-radius: 6px !important;
988
+ font-family: 'Outfit', monospace !important;
989
+ font-weight: 700 !important;
990
+ min-width: 80px !important;
991
+ }
992
+
993
+ .swagger-ui .opblock .opblock-summary-path {
994
+ color: var(--text-primary) !important;
995
+ font-family: 'Outfit', monospace !important;
996
+ font-weight: 500 !important;
997
+ }
998
+
999
+ .swagger-ui .opblock .opblock-summary-description {
1000
+ color: var(--text-secondary) !important;
1001
+ }
1002
+
1003
+ /* GET Method */
1004
+ .swagger-ui .opblock.opblock-get {
1005
+ border-color: rgba(14, 165, 233, 0.2) !important;
1006
+ }
1007
+ .swagger-ui .opblock.opblock-get .opblock-summary-method {
1008
+ background: #0ea5e9 !important;
1009
+ }
1010
+ .swagger-ui .opblock.opblock-get.is-open {
1011
+ background: rgba(14, 165, 233, 0.02) !important;
1012
+ }
1013
+
1014
+ /* POST Method */
1015
+ .swagger-ui .opblock.opblock-post {
1016
+ border-color: rgba(16, 185, 129, 0.2) !important;
1017
+ }
1018
+ .swagger-ui .opblock.opblock-post .opblock-summary-method {
1019
+ background: #10b981 !important;
1020
+ }
1021
+ .swagger-ui .opblock.opblock-post.is-open {
1022
+ background: rgba(16, 185, 129, 0.02) !important;
1023
+ }
1024
+
1025
+ /* Parameters & Responses */
1026
+ .swagger-ui .opblock-section-header {
1027
+ background: #f8fafc !important;
1028
+ margin: 0 !important;
1029
+ border-bottom: 1px solid var(--border-color) !important;
1030
+ }
1031
+ .swagger-ui .opblock-section-header h4 {
1032
+ color: var(--text-primary) !important;
1033
+ font-weight: 600 !important;
1034
+ }
1035
+
1036
+ .swagger-ui table thead tr td,
1037
+ .swagger-ui table thead tr th {
1038
+ color: var(--text-secondary) !important;
1039
+ border-bottom: 1px solid var(--border-color) !important;
1040
+ font-weight: 600 !important;
1041
+ }
1042
+
1043
+ .swagger-ui .parameter__name {
1044
+ color: var(--text-primary) !important;
1045
+ font-weight: 600 !important;
1046
+ }
1047
+
1048
+ .swagger-ui .parameter__type {
1049
+ color: var(--text-secondary) !important;
1050
+ font-family: monospace !important;
1051
+ }
1052
+
1053
+ .swagger-ui .parameter__in {
1054
+ color: var(--text-secondary) !important;
1055
+ font-style: italic !important;
1056
+ }
1057
+
1058
+ /* Models */
1059
+ .swagger-ui section.models {
1060
+ border: 1px solid var(--border-color) !important;
1061
+ background: #ffffff !important;
1062
+ border-radius: 12px !important;
1063
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
1064
+ }
1065
+
1066
+ .swagger-ui section.models h4 {
1067
+ color: var(--text-primary) !important;
1068
+ font-weight: 700 !important;
1069
+ }
1070
+
1071
+ .swagger-ui section.models .model-container {
1072
+ background: #ffffff !important;
1073
+ }
1074
+
1075
+ .swagger-ui .model {
1076
+ color: var(--text-primary) !important;
1077
+ }
1078
+
1079
+ .swagger-ui .model-title {
1080
+ color: var(--text-primary) !important;
1081
+ }
1082
+
1083
+ /* Code Blocks & Inputs */
1084
+ .swagger-ui .microlight {
1085
+ background: #1e293b !important;
1086
+ color: #f1f5f9 !important;
1087
+ border-radius: 8px !important;
1088
+ font-family: 'Consolas', monospace !important;
1089
+ }
1090
+
1091
+ .swagger-ui input,
1092
+ .swagger-ui textarea,
1093
+ .swagger-ui select {
1094
+ background: #ffffff !important;
1095
+ color: var(--text-primary) !important;
1096
+ border: 1px solid var(--border-color) !important;
1097
+ border-radius: 8px !important;
1098
+ padding: 8px 12px !important;
1099
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
1100
+ }
1101
+
1102
+ .swagger-ui input:focus,
1103
+ .swagger-ui textarea:focus,
1104
+ .swagger-ui select:focus {
1105
+ border-color: var(--primary-color) !important;
1106
+ outline: 2px solid rgba(79, 70, 229, 0.1) !important;
1107
+ }
1108
+
1109
+ /* Authorize Button */
1110
+ .swagger-ui .btn.authorize {
1111
+ background-color: transparent !important;
1112
+ color: var(--primary-color) !important;
1113
+ border-color: var(--primary-color) !important;
1114
+ border-radius: 8px !important;
1115
+ font-weight: 600 !important;
1116
+ }
1117
+
1118
+ .swagger-ui .btn.authorize:hover {
1119
+ background-color: rgba(79, 70, 229, 0.05) !important;
1120
+ }
1121
+
1122
+ .swagger-ui .btn.authorize svg {
1123
+ fill: var(--primary-color) !important;
1124
+ }
1125
+
1126
+ /* Try it out button */
1127
+ .swagger-ui .btn.try-out__btn {
1128
+ background: #ffffff !important;
1129
+ border: 1px solid var(--border-color) !important;
1130
+ color: var(--text-secondary) !important;
1131
+ border-radius: 6px !important;
1132
+ }
1133
+
1134
+ .swagger-ui .btn.try-out__btn:hover {
1135
+ background-color: #f8fafc !important;
1136
+ color: var(--text-primary) !important;
1137
+ border-color: #cbd5e1 !important;
1138
+ }
1139
+
1140
+ .swagger-ui .btn.execute {
1141
+ background-color: var(--primary-color) !important;
1142
+ border-color: var(--primary-color) !important;
1143
+ color: white !important;
1144
+ box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3) !important;
1145
+ border-radius: 6px !important;
1146
+ width: 100% !important;
1147
+ }
1148
+
1149
+ /* Footer override */
1150
+ .webscout-footer {
1151
+ position: fixed;
1152
+ bottom: 0;
1153
+ left: 0;
1154
+ width: 100%;
1155
+ background: rgba(255, 255, 255, 0.95);
1156
+ backdrop-filter: blur(10px);
1157
+ border-top: 1px solid var(--border-color);
1158
+ padding: 12px;
1159
+ text-align: center;
1160
+ color: var(--text-secondary);
1161
+ font-size: 13px;
1162
+ z-index: 9999;
1163
+ box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.05);
1164
+ }
1165
+
1166
+ .webscout-footer a {
1167
+ color: var(--primary-color);
1168
+ text-decoration: none;
1169
+ font-weight: 600;
1170
+ }
1171
+ """