webscout 8.3.2__py3-none-any.whl → 8.3.4__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.

Files changed (117) hide show
  1. webscout/AIutel.py +367 -41
  2. webscout/Bard.py +2 -22
  3. webscout/Bing_search.py +1 -2
  4. webscout/Provider/AISEARCH/__init__.py +1 -0
  5. webscout/Provider/AISEARCH/scira_search.py +24 -11
  6. webscout/Provider/AISEARCH/stellar_search.py +132 -0
  7. webscout/Provider/Deepinfra.py +75 -57
  8. webscout/Provider/ExaChat.py +93 -63
  9. webscout/Provider/Flowith.py +1 -1
  10. webscout/Provider/FreeGemini.py +2 -2
  11. webscout/Provider/Gemini.py +3 -10
  12. webscout/Provider/GeminiProxy.py +31 -5
  13. webscout/Provider/HeckAI.py +85 -80
  14. webscout/Provider/Jadve.py +56 -50
  15. webscout/Provider/LambdaChat.py +39 -31
  16. webscout/Provider/MiniMax.py +207 -0
  17. webscout/Provider/Nemotron.py +41 -13
  18. webscout/Provider/Netwrck.py +39 -59
  19. webscout/Provider/OLLAMA.py +8 -9
  20. webscout/Provider/OPENAI/BLACKBOXAI.py +0 -1
  21. webscout/Provider/OPENAI/MiniMax.py +298 -0
  22. webscout/Provider/OPENAI/README.md +31 -30
  23. webscout/Provider/OPENAI/TogetherAI.py +4 -17
  24. webscout/Provider/OPENAI/__init__.py +4 -2
  25. webscout/Provider/OPENAI/autoproxy.py +753 -18
  26. webscout/Provider/OPENAI/base.py +7 -76
  27. webscout/Provider/OPENAI/copilot.py +73 -26
  28. webscout/Provider/OPENAI/deepinfra.py +96 -132
  29. webscout/Provider/OPENAI/exachat.py +9 -5
  30. webscout/Provider/OPENAI/flowith.py +179 -166
  31. webscout/Provider/OPENAI/friendli.py +233 -0
  32. webscout/Provider/OPENAI/monochat.py +329 -0
  33. webscout/Provider/OPENAI/netwrck.py +4 -7
  34. webscout/Provider/OPENAI/pydantic_imports.py +1 -172
  35. webscout/Provider/OPENAI/qodo.py +630 -0
  36. webscout/Provider/OPENAI/scirachat.py +82 -49
  37. webscout/Provider/OPENAI/textpollinations.py +13 -12
  38. webscout/Provider/OPENAI/toolbaz.py +1 -0
  39. webscout/Provider/OPENAI/typegpt.py +4 -4
  40. webscout/Provider/OPENAI/utils.py +19 -42
  41. webscout/Provider/OPENAI/x0gpt.py +14 -2
  42. webscout/Provider/OpenGPT.py +54 -32
  43. webscout/Provider/PI.py +58 -84
  44. webscout/Provider/Qodo.py +454 -0
  45. webscout/Provider/StandardInput.py +32 -13
  46. webscout/Provider/TTI/README.md +9 -9
  47. webscout/Provider/TTI/__init__.py +2 -1
  48. webscout/Provider/TTI/aiarta.py +92 -78
  49. webscout/Provider/TTI/infip.py +212 -0
  50. webscout/Provider/TTI/monochat.py +220 -0
  51. webscout/Provider/TeachAnything.py +11 -3
  52. webscout/Provider/TextPollinationsAI.py +91 -82
  53. webscout/Provider/TogetherAI.py +32 -48
  54. webscout/Provider/Venice.py +37 -46
  55. webscout/Provider/VercelAI.py +27 -24
  56. webscout/Provider/WiseCat.py +35 -35
  57. webscout/Provider/WrDoChat.py +22 -26
  58. webscout/Provider/WritingMate.py +26 -22
  59. webscout/Provider/__init__.py +6 -6
  60. webscout/Provider/copilot.py +58 -61
  61. webscout/Provider/freeaichat.py +64 -55
  62. webscout/Provider/granite.py +48 -57
  63. webscout/Provider/koala.py +51 -39
  64. webscout/Provider/learnfastai.py +49 -64
  65. webscout/Provider/llmchat.py +79 -93
  66. webscout/Provider/llmchatco.py +63 -78
  67. webscout/Provider/monochat.py +275 -0
  68. webscout/Provider/multichat.py +51 -40
  69. webscout/Provider/oivscode.py +1 -1
  70. webscout/Provider/scira_chat.py +257 -104
  71. webscout/Provider/scnet.py +13 -13
  72. webscout/Provider/searchchat.py +13 -13
  73. webscout/Provider/sonus.py +12 -11
  74. webscout/Provider/toolbaz.py +25 -8
  75. webscout/Provider/turboseek.py +41 -42
  76. webscout/Provider/typefully.py +27 -12
  77. webscout/Provider/typegpt.py +43 -48
  78. webscout/Provider/uncovr.py +55 -90
  79. webscout/Provider/x0gpt.py +325 -299
  80. webscout/Provider/yep.py +79 -96
  81. webscout/__init__.py +7 -2
  82. webscout/auth/__init__.py +12 -1
  83. webscout/auth/providers.py +27 -5
  84. webscout/auth/routes.py +146 -105
  85. webscout/auth/server.py +367 -312
  86. webscout/client.py +121 -116
  87. webscout/litagent/Readme.md +68 -55
  88. webscout/litagent/agent.py +99 -9
  89. webscout/version.py +1 -1
  90. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/METADATA +102 -91
  91. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/RECORD +95 -107
  92. webscout/Provider/AI21.py +0 -177
  93. webscout/Provider/HuggingFaceChat.py +0 -469
  94. webscout/Provider/OPENAI/freeaichat.py +0 -363
  95. webscout/Provider/TTI/fastflux.py +0 -233
  96. webscout/Provider/Writecream.py +0 -246
  97. webscout/auth/static/favicon.svg +0 -11
  98. webscout/auth/swagger_ui.py +0 -203
  99. webscout/auth/templates/components/authentication.html +0 -237
  100. webscout/auth/templates/components/base.html +0 -103
  101. webscout/auth/templates/components/endpoints.html +0 -750
  102. webscout/auth/templates/components/examples.html +0 -491
  103. webscout/auth/templates/components/footer.html +0 -75
  104. webscout/auth/templates/components/header.html +0 -27
  105. webscout/auth/templates/components/models.html +0 -286
  106. webscout/auth/templates/components/navigation.html +0 -70
  107. webscout/auth/templates/static/api.js +0 -455
  108. webscout/auth/templates/static/icons.js +0 -168
  109. webscout/auth/templates/static/main.js +0 -784
  110. webscout/auth/templates/static/particles.js +0 -201
  111. webscout/auth/templates/static/styles.css +0 -3353
  112. webscout/auth/templates/static/ui.js +0 -374
  113. webscout/auth/templates/swagger_ui.html +0 -170
  114. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/WHEEL +0 -0
  115. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/entry_points.txt +0 -0
  116. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/licenses/LICENSE.md +0 -0
  117. {webscout-8.3.2.dist-info → webscout-8.3.4.dist-info}/top_level.txt +0 -0
@@ -1,201 +0,0 @@
1
- /**
2
- * Modern Particle Background System for WebScout
3
- * Creates an interactive particle network background
4
- */
5
-
6
- class ParticleSystem {
7
- constructor(canvas) {
8
- this.canvas = canvas;
9
- this.ctx = canvas.getContext('2d');
10
- this.particles = [];
11
- this.mouse = { x: 0, y: 0 };
12
- this.animationId = null;
13
-
14
- this.config = {
15
- particleCount: 50,
16
- particleSize: 2,
17
- connectionDistance: 150,
18
- mouseRadius: 200,
19
- speed: 0.5,
20
- colors: {
21
- particle: 'rgba(99, 102, 241, 0.6)',
22
- connection: 'rgba(99, 102, 241, 0.2)',
23
- mouseConnection: 'rgba(139, 92, 246, 0.4)'
24
- }
25
- };
26
-
27
- this.init();
28
- }
29
-
30
- init() {
31
- this.resize();
32
- this.createParticles();
33
- this.bindEvents();
34
- this.animate();
35
- }
36
-
37
- resize() {
38
- this.canvas.width = window.innerWidth;
39
- this.canvas.height = window.innerHeight;
40
- }
41
-
42
- createParticles() {
43
- this.particles = [];
44
- for (let i = 0; i < this.config.particleCount; i++) {
45
- this.particles.push({
46
- x: Math.random() * this.canvas.width,
47
- y: Math.random() * this.canvas.height,
48
- vx: (Math.random() - 0.5) * this.config.speed,
49
- vy: (Math.random() - 0.5) * this.config.speed,
50
- size: Math.random() * this.config.particleSize + 1
51
- });
52
- }
53
- }
54
-
55
- bindEvents() {
56
- window.addEventListener('resize', () => this.resize());
57
-
58
- this.canvas.addEventListener('mousemove', (e) => {
59
- this.mouse.x = e.clientX;
60
- this.mouse.y = e.clientY;
61
- });
62
-
63
- this.canvas.addEventListener('mouseleave', () => {
64
- this.mouse.x = -1000;
65
- this.mouse.y = -1000;
66
- });
67
- }
68
-
69
- updateParticles() {
70
- this.particles.forEach(particle => {
71
- // Update position
72
- particle.x += particle.vx;
73
- particle.y += particle.vy;
74
-
75
- // Bounce off edges
76
- if (particle.x < 0 || particle.x > this.canvas.width) {
77
- particle.vx *= -1;
78
- }
79
- if (particle.y < 0 || particle.y > this.canvas.height) {
80
- particle.vy *= -1;
81
- }
82
-
83
- // Keep particles in bounds
84
- particle.x = Math.max(0, Math.min(this.canvas.width, particle.x));
85
- particle.y = Math.max(0, Math.min(this.canvas.height, particle.y));
86
-
87
- // Mouse interaction
88
- const dx = this.mouse.x - particle.x;
89
- const dy = this.mouse.y - particle.y;
90
- const distance = Math.sqrt(dx * dx + dy * dy);
91
-
92
- if (distance < this.config.mouseRadius) {
93
- const force = (this.config.mouseRadius - distance) / this.config.mouseRadius;
94
- particle.x -= dx * force * 0.01;
95
- particle.y -= dy * force * 0.01;
96
- }
97
- });
98
- }
99
-
100
- drawParticles() {
101
- this.particles.forEach(particle => {
102
- this.ctx.beginPath();
103
- this.ctx.arc(particle.x, particle.y, particle.size, 0, Math.PI * 2);
104
- this.ctx.fillStyle = this.config.colors.particle;
105
- this.ctx.fill();
106
-
107
- // Add glow effect
108
- this.ctx.shadowBlur = 10;
109
- this.ctx.shadowColor = this.config.colors.particle;
110
- this.ctx.fill();
111
- this.ctx.shadowBlur = 0;
112
- });
113
- }
114
-
115
- drawConnections() {
116
- for (let i = 0; i < this.particles.length; i++) {
117
- for (let j = i + 1; j < this.particles.length; j++) {
118
- const dx = this.particles[i].x - this.particles[j].x;
119
- const dy = this.particles[i].y - this.particles[j].y;
120
- const distance = Math.sqrt(dx * dx + dy * dy);
121
-
122
- if (distance < this.config.connectionDistance) {
123
- const opacity = 1 - (distance / this.config.connectionDistance);
124
- this.ctx.beginPath();
125
- this.ctx.moveTo(this.particles[i].x, this.particles[i].y);
126
- this.ctx.lineTo(this.particles[j].x, this.particles[j].y);
127
- this.ctx.strokeStyle = this.config.colors.connection.replace('0.2', opacity * 0.2);
128
- this.ctx.lineWidth = 1;
129
- this.ctx.stroke();
130
- }
131
- }
132
- }
133
- }
134
-
135
- drawMouseConnections() {
136
- this.particles.forEach(particle => {
137
- const dx = this.mouse.x - particle.x;
138
- const dy = this.mouse.y - particle.y;
139
- const distance = Math.sqrt(dx * dx + dy * dy);
140
-
141
- if (distance < this.config.mouseRadius) {
142
- const opacity = 1 - (distance / this.config.mouseRadius);
143
- this.ctx.beginPath();
144
- this.ctx.moveTo(particle.x, particle.y);
145
- this.ctx.lineTo(this.mouse.x, this.mouse.y);
146
- this.ctx.strokeStyle = this.config.colors.mouseConnection.replace('0.4', opacity * 0.4);
147
- this.ctx.lineWidth = 2;
148
- this.ctx.stroke();
149
- }
150
- });
151
- }
152
-
153
- animate() {
154
- this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
155
-
156
- this.updateParticles();
157
- this.drawConnections();
158
- this.drawParticles();
159
- this.drawMouseConnections();
160
-
161
- this.animationId = requestAnimationFrame(() => this.animate());
162
- }
163
-
164
- destroy() {
165
- if (this.animationId) {
166
- cancelAnimationFrame(this.animationId);
167
- }
168
- window.removeEventListener('resize', this.resize);
169
- }
170
- }
171
-
172
- // Initialize particle system when DOM is loaded
173
- document.addEventListener('DOMContentLoaded', function() {
174
- // Create canvas element
175
- const canvas = document.createElement('canvas');
176
- canvas.id = 'particle-canvas';
177
- canvas.style.position = 'fixed';
178
- canvas.style.top = '0';
179
- canvas.style.left = '0';
180
- canvas.style.width = '100%';
181
- canvas.style.height = '100%';
182
- canvas.style.pointerEvents = 'none';
183
- canvas.style.zIndex = '1';
184
- canvas.style.opacity = '0.7';
185
-
186
- // Insert canvas as first child of body
187
- document.body.insertBefore(canvas, document.body.firstChild);
188
-
189
- // Initialize particle system
190
- const particleSystem = new ParticleSystem(canvas);
191
-
192
- // Store reference for cleanup
193
- window.particleSystem = particleSystem;
194
- });
195
-
196
- // Cleanup on page unload
197
- window.addEventListener('beforeunload', function() {
198
- if (window.particleSystem) {
199
- window.particleSystem.destroy();
200
- }
201
- });