webscout 8.3__py3-none-any.whl → 8.3.2__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/AIauto.py +4 -4
- webscout/AIbase.py +61 -1
- webscout/AIutel.py +46 -53
- webscout/Bing_search.py +418 -0
- webscout/Extra/YTToolkit/ytapi/patterns.py +45 -45
- webscout/Extra/YTToolkit/ytapi/stream.py +1 -1
- webscout/Extra/YTToolkit/ytapi/video.py +10 -10
- webscout/Extra/autocoder/autocoder_utiles.py +1 -1
- webscout/Extra/gguf.py +706 -177
- webscout/Litlogger/formats.py +9 -0
- webscout/Litlogger/handlers.py +18 -0
- webscout/Litlogger/logger.py +43 -1
- webscout/Provider/AISEARCH/genspark_search.py +7 -7
- webscout/Provider/AISEARCH/scira_search.py +3 -2
- webscout/Provider/GeminiProxy.py +140 -0
- webscout/Provider/LambdaChat.py +7 -1
- webscout/Provider/MCPCore.py +78 -75
- webscout/Provider/OPENAI/BLACKBOXAI.py +1046 -1017
- webscout/Provider/OPENAI/GeminiProxy.py +328 -0
- webscout/Provider/OPENAI/Qwen3.py +303 -303
- webscout/Provider/OPENAI/README.md +5 -0
- webscout/Provider/OPENAI/README_AUTOPROXY.md +238 -0
- webscout/Provider/OPENAI/TogetherAI.py +355 -0
- webscout/Provider/OPENAI/__init__.py +16 -1
- webscout/Provider/OPENAI/autoproxy.py +332 -0
- webscout/Provider/OPENAI/base.py +101 -14
- webscout/Provider/OPENAI/chatgpt.py +15 -2
- webscout/Provider/OPENAI/chatgptclone.py +14 -3
- webscout/Provider/OPENAI/deepinfra.py +339 -328
- webscout/Provider/OPENAI/e2b.py +295 -74
- webscout/Provider/OPENAI/mcpcore.py +109 -70
- webscout/Provider/OPENAI/opkfc.py +18 -6
- webscout/Provider/OPENAI/scirachat.py +59 -50
- webscout/Provider/OPENAI/toolbaz.py +2 -10
- webscout/Provider/OPENAI/writecream.py +166 -166
- webscout/Provider/OPENAI/x0gpt.py +367 -367
- webscout/Provider/OPENAI/xenai.py +514 -0
- webscout/Provider/OPENAI/yep.py +389 -383
- webscout/Provider/STT/__init__.py +3 -0
- webscout/Provider/STT/base.py +281 -0
- webscout/Provider/STT/elevenlabs.py +265 -0
- webscout/Provider/TTI/__init__.py +4 -1
- webscout/Provider/TTI/aiarta.py +399 -365
- webscout/Provider/TTI/base.py +74 -2
- webscout/Provider/TTI/bing.py +231 -0
- webscout/Provider/TTI/fastflux.py +63 -30
- webscout/Provider/TTI/gpt1image.py +149 -0
- webscout/Provider/TTI/imagen.py +196 -0
- webscout/Provider/TTI/magicstudio.py +60 -29
- webscout/Provider/TTI/piclumen.py +43 -32
- webscout/Provider/TTI/pixelmuse.py +232 -225
- webscout/Provider/TTI/pollinations.py +43 -32
- webscout/Provider/TTI/together.py +287 -0
- webscout/Provider/TTI/utils.py +2 -1
- webscout/Provider/TTS/README.md +1 -0
- webscout/Provider/TTS/__init__.py +2 -1
- webscout/Provider/TTS/freetts.py +140 -0
- webscout/Provider/TTS/speechma.py +45 -39
- webscout/Provider/TogetherAI.py +366 -0
- webscout/Provider/UNFINISHED/ChutesAI.py +314 -0
- webscout/Provider/UNFINISHED/fetch_together_models.py +95 -0
- webscout/Provider/XenAI.py +324 -0
- webscout/Provider/__init__.py +8 -0
- webscout/Provider/deepseek_assistant.py +378 -0
- webscout/Provider/scira_chat.py +3 -2
- webscout/Provider/toolbaz.py +0 -1
- webscout/auth/__init__.py +44 -0
- webscout/auth/api_key_manager.py +189 -0
- webscout/auth/auth_system.py +100 -0
- webscout/auth/config.py +76 -0
- webscout/auth/database.py +400 -0
- webscout/auth/exceptions.py +67 -0
- webscout/auth/middleware.py +248 -0
- webscout/auth/models.py +130 -0
- webscout/auth/providers.py +257 -0
- webscout/auth/rate_limiter.py +254 -0
- webscout/auth/request_models.py +127 -0
- webscout/auth/request_processing.py +226 -0
- webscout/auth/routes.py +526 -0
- webscout/auth/schemas.py +103 -0
- webscout/auth/server.py +312 -0
- webscout/auth/static/favicon.svg +11 -0
- webscout/auth/swagger_ui.py +203 -0
- webscout/auth/templates/components/authentication.html +237 -0
- webscout/auth/templates/components/base.html +103 -0
- webscout/auth/templates/components/endpoints.html +750 -0
- webscout/auth/templates/components/examples.html +491 -0
- webscout/auth/templates/components/footer.html +75 -0
- webscout/auth/templates/components/header.html +27 -0
- webscout/auth/templates/components/models.html +286 -0
- webscout/auth/templates/components/navigation.html +70 -0
- webscout/auth/templates/static/api.js +455 -0
- webscout/auth/templates/static/icons.js +168 -0
- webscout/auth/templates/static/main.js +784 -0
- webscout/auth/templates/static/particles.js +201 -0
- webscout/auth/templates/static/styles.css +3353 -0
- webscout/auth/templates/static/ui.js +374 -0
- webscout/auth/templates/swagger_ui.html +170 -0
- webscout/client.py +49 -3
- webscout/litagent/Readme.md +12 -3
- webscout/litagent/agent.py +99 -62
- webscout/scout/core/scout.py +104 -26
- webscout/scout/element.py +139 -18
- webscout/swiftcli/core/cli.py +14 -3
- webscout/swiftcli/decorators/output.py +59 -9
- webscout/update_checker.py +31 -49
- webscout/version.py +1 -1
- webscout/webscout_search.py +4 -12
- webscout/webscout_search_async.py +3 -10
- webscout/yep_search.py +2 -11
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/METADATA +41 -11
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/RECORD +116 -68
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/entry_points.txt +1 -1
- webscout/Provider/HF_space/__init__.py +0 -0
- webscout/Provider/HF_space/qwen_qwen2.py +0 -206
- webscout/Provider/OPENAI/api.py +0 -1035
- webscout/Provider/TTI/artbit.py +0 -0
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/WHEEL +0 -0
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/licenses/LICENSE.md +0 -0
- {webscout-8.3.dist-info → webscout-8.3.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
<div id="models-panel" class="tab-content" role="tabpanel" aria-labelledby="models-tab">
|
|
2
|
+
<div class="endpoint-section">
|
|
3
|
+
<h2 class="section-title">Available Models</h2>
|
|
4
|
+
<p class="section-description">
|
|
5
|
+
Explore the comprehensive collection of AI models available through the WebScout API. Each model has unique capabilities and is optimized for different use cases.
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<div class="models-controls">
|
|
9
|
+
<div class="search-container">
|
|
10
|
+
<input type="text" id="model-search" class="search-input" placeholder="🔍 Search models...">
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<div class="filter-container">
|
|
14
|
+
<select id="model-filter" class="filter-select">
|
|
15
|
+
<option value="all">All Models</option>
|
|
16
|
+
<option value="chat">Chat Models</option>
|
|
17
|
+
<option value="image">Image Models</option>
|
|
18
|
+
<option value="embedding">Embedding Models</option>
|
|
19
|
+
</select>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="view-toggle">
|
|
23
|
+
<button class="view-btn active" data-view="grid" title="Grid View">
|
|
24
|
+
<span>⊞</span>
|
|
25
|
+
</button>
|
|
26
|
+
<button class="view-btn" data-view="list" title="List View">
|
|
27
|
+
<span>☰</span>
|
|
28
|
+
</button>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="models-stats">
|
|
33
|
+
<div class="stat-item">
|
|
34
|
+
<span class="stat-number" id="total-models">Loading...</span>
|
|
35
|
+
<span class="stat-text">Total Models</span>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="stat-item">
|
|
38
|
+
<span class="stat-number" id="chat-models">-</span>
|
|
39
|
+
<span class="stat-text">Chat Models</span>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="stat-item">
|
|
42
|
+
<span class="stat-number" id="image-models">-</span>
|
|
43
|
+
<span class="stat-text">Image Models</span>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="stat-item">
|
|
46
|
+
<span class="stat-number" id="providers-count">-</span>
|
|
47
|
+
<span class="stat-text">Providers</span>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<div id="models-loading" class="loading-container">
|
|
52
|
+
<div class="loading-spinner"></div>
|
|
53
|
+
<p>Loading available models...</p>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<div id="models-error" class="error-container" style="display: none;">
|
|
57
|
+
<div class="error-icon">⚠️</div>
|
|
58
|
+
<h3>Failed to Load Models</h3>
|
|
59
|
+
<p>Unable to fetch the list of available models. Please try again.</p>
|
|
60
|
+
<button class="btn btn-primary" onclick="loadModels()">
|
|
61
|
+
<span>🔄</span>
|
|
62
|
+
Retry
|
|
63
|
+
</button>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
<div id="models-container" class="models-grid">
|
|
67
|
+
<!-- Models will be loaded here dynamically -->
|
|
68
|
+
</div>
|
|
69
|
+
|
|
70
|
+
<div id="no-models" class="no-results" style="display: none;">
|
|
71
|
+
<div class="no-results-icon">🔍</div>
|
|
72
|
+
<h3>No Models Found</h3>
|
|
73
|
+
<p>No models match your current search criteria.</p>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
|
|
77
|
+
<div class="endpoint-section">
|
|
78
|
+
<h2 class="section-title">Model Information</h2>
|
|
79
|
+
<p class="section-description">
|
|
80
|
+
Get detailed information about a specific model, including its capabilities, parameters, and usage guidelines.
|
|
81
|
+
</p>
|
|
82
|
+
|
|
83
|
+
<div class="endpoint-card">
|
|
84
|
+
<div class="endpoint-header" onclick="toggleEndpoint(this)">
|
|
85
|
+
<div class="endpoint-method">
|
|
86
|
+
<span class="method-badge method-get">GET</span>
|
|
87
|
+
<span class="endpoint-path">/v1/models/{model_id}</span>
|
|
88
|
+
<span class="endpoint-summary">Get model details</span>
|
|
89
|
+
</div>
|
|
90
|
+
<span class="expand-icon">▼</span>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
<div class="endpoint-body">
|
|
94
|
+
<div class="endpoint-description">
|
|
95
|
+
Retrieve detailed information about a specific model by its ID.
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<div class="parameter-section">
|
|
99
|
+
<h4>Path Parameters</h4>
|
|
100
|
+
<div class="parameter-list">
|
|
101
|
+
<div class="parameter-item">
|
|
102
|
+
<div class="parameter-header">
|
|
103
|
+
<span class="parameter-name">model_id</span>
|
|
104
|
+
<span class="parameter-type">string</span>
|
|
105
|
+
<span class="parameter-required">required</span>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="parameter-description">
|
|
108
|
+
The ID of the model to retrieve information for.
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
|
|
114
|
+
<div class="try-it-section">
|
|
115
|
+
<h4 class="try-it-title">
|
|
116
|
+
<span>🔍</span>
|
|
117
|
+
Get Model Info
|
|
118
|
+
</h4>
|
|
119
|
+
|
|
120
|
+
<div class="form-group">
|
|
121
|
+
<label class="form-label" for="model-id-input">Model ID</label>
|
|
122
|
+
<input type="text" id="model-id-input" class="form-input" placeholder="gpt-3.5-turbo">
|
|
123
|
+
</div>
|
|
124
|
+
|
|
125
|
+
<button class="btn btn-primary" onclick="testGetModel()">
|
|
126
|
+
<span>🔍</span>
|
|
127
|
+
Get Model Info
|
|
128
|
+
</button>
|
|
129
|
+
|
|
130
|
+
<div id="model-info-response" class="response-display"></div>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
<div class="model-categories">
|
|
137
|
+
<h2 class="section-title">Model Categories</h2>
|
|
138
|
+
|
|
139
|
+
<div class="categories-grid">
|
|
140
|
+
<div class="category-card">
|
|
141
|
+
<div class="category-icon">💬</div>
|
|
142
|
+
<h3>Chat Models</h3>
|
|
143
|
+
<p>Conversational AI models optimized for dialogue and text generation.</p>
|
|
144
|
+
<div class="category-examples">
|
|
145
|
+
<span class="example-tag">GPT-4</span>
|
|
146
|
+
<span class="example-tag">Claude-3</span>
|
|
147
|
+
<span class="example-tag">Gemini</span>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
|
|
151
|
+
<div class="category-card">
|
|
152
|
+
<div class="category-icon">🎨</div>
|
|
153
|
+
<h3>Image Generation</h3>
|
|
154
|
+
<p>AI models specialized in creating images from text descriptions.</p>
|
|
155
|
+
<div class="category-examples">
|
|
156
|
+
<span class="example-tag">DALL-E</span>
|
|
157
|
+
<span class="example-tag">Midjourney</span>
|
|
158
|
+
<span class="example-tag">Stable Diffusion</span>
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
|
|
162
|
+
<div class="category-card">
|
|
163
|
+
<div class="category-icon">🔤</div>
|
|
164
|
+
<h3>Text Embedding</h3>
|
|
165
|
+
<p>Models that convert text into numerical vectors for similarity and search.</p>
|
|
166
|
+
<div class="category-examples">
|
|
167
|
+
<span class="example-tag">text-embedding-ada-002</span>
|
|
168
|
+
<span class="example-tag">sentence-transformers</span>
|
|
169
|
+
</div>
|
|
170
|
+
</div>
|
|
171
|
+
|
|
172
|
+
<div class="category-card">
|
|
173
|
+
<div class="category-icon">🔧</div>
|
|
174
|
+
<h3>Specialized</h3>
|
|
175
|
+
<p>Task-specific models for code generation, translation, and analysis.</p>
|
|
176
|
+
<div class="category-examples">
|
|
177
|
+
<span class="example-tag">Codex</span>
|
|
178
|
+
<span class="example-tag">Whisper</span>
|
|
179
|
+
<span class="example-tag">GPT-3.5-Instruct</span>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
</div>
|
|
183
|
+
</div>
|
|
184
|
+
|
|
185
|
+
<div class="model-comparison">
|
|
186
|
+
<h2 class="section-title">Model Comparison</h2>
|
|
187
|
+
<p class="section-description">
|
|
188
|
+
Compare different models to choose the best one for your specific use case.
|
|
189
|
+
</p>
|
|
190
|
+
|
|
191
|
+
<div class="comparison-table">
|
|
192
|
+
<div class="table-header">
|
|
193
|
+
<div class="table-cell">Model</div>
|
|
194
|
+
<div class="table-cell">Type</div>
|
|
195
|
+
<div class="table-cell">Max Tokens</div>
|
|
196
|
+
<div class="table-cell">Speed</div>
|
|
197
|
+
<div class="table-cell">Quality</div>
|
|
198
|
+
<div class="table-cell">Cost</div>
|
|
199
|
+
</div>
|
|
200
|
+
|
|
201
|
+
<div class="table-row">
|
|
202
|
+
<div class="table-cell">
|
|
203
|
+
<strong>GPT-4</strong>
|
|
204
|
+
<small>OpenAI</small>
|
|
205
|
+
</div>
|
|
206
|
+
<div class="table-cell">Chat</div>
|
|
207
|
+
<div class="table-cell">8,192</div>
|
|
208
|
+
<div class="table-cell">
|
|
209
|
+
<div class="rating">
|
|
210
|
+
<span class="star">★</span>
|
|
211
|
+
<span class="star">★</span>
|
|
212
|
+
<span class="star">★</span>
|
|
213
|
+
<span class="star">☆</span>
|
|
214
|
+
<span class="star">☆</span>
|
|
215
|
+
</div>
|
|
216
|
+
</div>
|
|
217
|
+
<div class="table-cell">
|
|
218
|
+
<div class="rating">
|
|
219
|
+
<span class="star">★</span>
|
|
220
|
+
<span class="star">★</span>
|
|
221
|
+
<span class="star">★</span>
|
|
222
|
+
<span class="star">★</span>
|
|
223
|
+
<span class="star">★</span>
|
|
224
|
+
</div>
|
|
225
|
+
</div>
|
|
226
|
+
<div class="table-cell">High</div>
|
|
227
|
+
</div>
|
|
228
|
+
|
|
229
|
+
<div class="table-row">
|
|
230
|
+
<div class="table-cell">
|
|
231
|
+
<strong>GPT-3.5-Turbo</strong>
|
|
232
|
+
<small>OpenAI</small>
|
|
233
|
+
</div>
|
|
234
|
+
<div class="table-cell">Chat</div>
|
|
235
|
+
<div class="table-cell">4,096</div>
|
|
236
|
+
<div class="table-cell">
|
|
237
|
+
<div class="rating">
|
|
238
|
+
<span class="star">★</span>
|
|
239
|
+
<span class="star">★</span>
|
|
240
|
+
<span class="star">★</span>
|
|
241
|
+
<span class="star">★</span>
|
|
242
|
+
<span class="star">★</span>
|
|
243
|
+
</div>
|
|
244
|
+
</div>
|
|
245
|
+
<div class="table-cell">
|
|
246
|
+
<div class="rating">
|
|
247
|
+
<span class="star">★</span>
|
|
248
|
+
<span class="star">★</span>
|
|
249
|
+
<span class="star">★</span>
|
|
250
|
+
<span class="star">★</span>
|
|
251
|
+
<span class="star">☆</span>
|
|
252
|
+
</div>
|
|
253
|
+
</div>
|
|
254
|
+
<div class="table-cell">Medium</div>
|
|
255
|
+
</div>
|
|
256
|
+
|
|
257
|
+
<div class="table-row">
|
|
258
|
+
<div class="table-cell">
|
|
259
|
+
<strong>Claude-3-Sonnet</strong>
|
|
260
|
+
<small>Anthropic</small>
|
|
261
|
+
</div>
|
|
262
|
+
<div class="table-cell">Chat</div>
|
|
263
|
+
<div class="table-cell">200,000</div>
|
|
264
|
+
<div class="table-cell">
|
|
265
|
+
<div class="rating">
|
|
266
|
+
<span class="star">★</span>
|
|
267
|
+
<span class="star">★</span>
|
|
268
|
+
<span class="star">★</span>
|
|
269
|
+
<span class="star">★</span>
|
|
270
|
+
<span class="star">☆</span>
|
|
271
|
+
</div>
|
|
272
|
+
</div>
|
|
273
|
+
<div class="table-cell">
|
|
274
|
+
<div class="rating">
|
|
275
|
+
<span class="star">★</span>
|
|
276
|
+
<span class="star">★</span>
|
|
277
|
+
<span class="star">★</span>
|
|
278
|
+
<span class="star">★</span>
|
|
279
|
+
<span class="star">★</span>
|
|
280
|
+
</div>
|
|
281
|
+
</div>
|
|
282
|
+
<div class="table-cell">High</div>
|
|
283
|
+
</div>
|
|
284
|
+
</div>
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<nav class="nav-tabs glass-effect animate-slideInFromLeft" role="tablist">
|
|
2
|
+
<button
|
|
3
|
+
class="nav-tab active hover-lift"
|
|
4
|
+
role="tab"
|
|
5
|
+
aria-selected="true"
|
|
6
|
+
aria-controls="endpoints-panel"
|
|
7
|
+
data-tab="endpoints"
|
|
8
|
+
id="endpoints-tab"
|
|
9
|
+
>
|
|
10
|
+
<span class="nav-tab-icon">
|
|
11
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
12
|
+
<path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/>
|
|
13
|
+
</svg>
|
|
14
|
+
</span>
|
|
15
|
+
<span class="nav-tab-text">API Endpoints</span>
|
|
16
|
+
</button>
|
|
17
|
+
|
|
18
|
+
<button
|
|
19
|
+
class="nav-tab hover-lift"
|
|
20
|
+
role="tab"
|
|
21
|
+
aria-selected="false"
|
|
22
|
+
aria-controls="authentication-panel"
|
|
23
|
+
data-tab="authentication"
|
|
24
|
+
id="authentication-tab"
|
|
25
|
+
>
|
|
26
|
+
<span class="nav-tab-icon">
|
|
27
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
28
|
+
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
|
|
29
|
+
</svg>
|
|
30
|
+
</span>
|
|
31
|
+
<span class="nav-tab-text">Authentication</span>
|
|
32
|
+
</button>
|
|
33
|
+
|
|
34
|
+
<button
|
|
35
|
+
class="nav-tab hover-lift"
|
|
36
|
+
role="tab"
|
|
37
|
+
aria-selected="false"
|
|
38
|
+
aria-controls="models-panel"
|
|
39
|
+
data-tab="models"
|
|
40
|
+
id="models-tab"
|
|
41
|
+
>
|
|
42
|
+
<span class="nav-tab-icon">
|
|
43
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
44
|
+
<rect x="3" y="11" width="18" height="10" rx="2" ry="2"/>
|
|
45
|
+
<circle cx="12" cy="5" r="2"/>
|
|
46
|
+
<path d="M12 7v4"/>
|
|
47
|
+
<line x1="8" y1="16" x2="8" y2="16"/>
|
|
48
|
+
<line x1="16" y1="16" x2="16" y2="16"/>
|
|
49
|
+
</svg>
|
|
50
|
+
</span>
|
|
51
|
+
<span class="nav-tab-text">Models</span>
|
|
52
|
+
</button>
|
|
53
|
+
|
|
54
|
+
<button
|
|
55
|
+
class="nav-tab hover-lift"
|
|
56
|
+
role="tab"
|
|
57
|
+
aria-selected="false"
|
|
58
|
+
aria-controls="examples-panel"
|
|
59
|
+
data-tab="examples"
|
|
60
|
+
id="examples-tab"
|
|
61
|
+
>
|
|
62
|
+
<span class="nav-tab-icon">
|
|
63
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
64
|
+
<polyline points="16,18 22,12 16,6"/>
|
|
65
|
+
<polyline points="8,6 2,12 8,18"/>
|
|
66
|
+
</svg>
|
|
67
|
+
</span>
|
|
68
|
+
<span class="nav-tab-text">Examples</span>
|
|
69
|
+
</button>
|
|
70
|
+
</nav>
|