-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
997 lines (891 loc) · 36.8 KB
/
Copy pathindex.html
File metadata and controls
997 lines (891 loc) · 36.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
<!DOCTYPE html>
<html lang="en" data-wf-domain="www.light-ai.top" data-wf-page="light-ai-home">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Light AI · Light-speed Large Model Systems</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Light AI provides end-to-end toolkit for model compression, inference, and video generation. Explore LightCompress, LightLLM, and LightX2V for efficient large model deployment.">
<meta name="keywords" content="large language models, model compression, inference acceleration, video generation, LLM, VLM, quantization, token pruning, LightCompress, LightLLM, LightX2V, AI optimization">
<meta name="author" content="Light AI Team">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://light-ai.top/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://light-ai.top/">
<meta property="og:title" content="Light AI · Light-speed Large Model Systems">
<meta property="og:description" content="End-to-end toolkit for model compression, inference, and video generation. Explore LightCompress, LightLLM, and LightX2V.">
<meta property="og:site_name" content="Light AI">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Light AI · Light-speed Large Model Systems">
<meta name="twitter:description" content="End-to-end toolkit for model compression, inference, and video generation.">
<!-- Language Alternates -->
<link rel="alternate" hreflang="en" href="https://light-ai.top/">
<link rel="alternate" hreflang="zh" href="https://light-ai.top/">
<link rel="alternate" hreflang="x-default" href="https://light-ai.top/">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>✨</text></svg>">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@0.2.28/bundled/lenis.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/ScrollTrigger.min.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:root {
--primary-bg: #0f172a;
--secondary-bg: #1e293b;
--accent-blue: #38bdf8;
--accent-cyan: #22d3ee;
--text-primary: #f8fafc;
--text-secondary: #cbd5e1;
--text-muted: #64748b;
}
body {
font-family: 'Lato', sans-serif;
background: #020617;
color: var(--text-primary);
overflow-x: hidden;
position: relative;
}
/* Animated Background */
.animated-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.gradient-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.5;
animation: float 20s ease-in-out infinite;
}
.gradient-orb:nth-child(1) {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
top: -200px;
left: -200px;
animation-delay: 0s;
}
.gradient-orb:nth-child(2) {
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
bottom: -300px;
right: -200px;
animation-delay: 5s;
}
.gradient-orb:nth-child(3) {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}
@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
}
33% {
transform: translate(30px, -30px) scale(1.1);
}
66% {
transform: translate(-20px, 20px) scale(0.9);
}
}
#particles-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.6;
}
/* Navbar */
.navbar-black {
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.container-47 {
max-width: 1400px;
margin: 0 auto;
padding: 1.2rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-menu-5 {
display: flex;
gap: 2rem;
align-items: center;
}
.navlink {
color: var(--text-secondary);
text-decoration: none;
font-size: 1rem;
font-weight: 400;
transition: color 0.3s ease;
}
.navlink:hover {
color: var(--accent-blue);
}
.lang-toggle {
display: flex;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.3rem;
border-radius: 20px;
}
.lang-toggle button {
background: transparent;
border: none;
color: var(--text-secondary);
padding: 0.4rem 1rem;
border-radius: 15px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.9rem;
}
.lang-toggle button.active {
background: var(--accent-blue);
color: var(--primary-bg);
}
/* Hero Section */
.homepage-hero-video {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
padding-top: 80px;
}
.container-medium {
max-width: 900px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.heading-style-h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.sub-header {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
line-height: 1.6;
}
.button {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
color: var(--primary-bg);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 10px 40px rgba(56, 189, 248, 0.3);
}
.button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 50px rgba(56, 189, 248, 0.5);
}
/* Intro Section */
.ama-scrolling-words-section {
padding: 8rem 2rem;
background: var(--primary-bg);
}
.ama-container {
max-width: 1000px;
margin: 0 auto;
}
.ama_scrolling-words-para-2 {
font-size: 1.5rem;
line-height: 1.8;
color: var(--text-secondary);
text-align: center;
}
/* Projects Section */
.background-color-secondary {
background: var(--secondary-bg);
padding: 6rem 2rem;
}
.container-large {
max-width: 1200px;
margin: 0 auto;
}
.h2-section-text {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
text-align: center;
margin-bottom: 4rem;
opacity: 0;
}
.container-xlarge {
max-width: 1400px;
margin: 0 auto;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin-top: 2rem;
}
.project-card {
background: rgba(30, 41, 59, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 2.5rem;
backdrop-filter: blur(10px);
transition: all 0.4s ease;
opacity: 0;
display: flex;
flex-direction: column;
}
.project-card:hover {
transform: translateY(-8px);
border-color: var(--accent-blue);
box-shadow: 0 20px 60px rgba(56, 189, 248, 0.2);
}
.heading-style-h3 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--accent-blue);
}
.heading-style-h6 {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-secondary);
font-weight: 300;
flex: 1;
}
.project-links {
display: flex;
gap: 1rem;
margin-top: auto;
padding-top: 1.5rem;
flex-wrap: wrap;
}
.project-link {
padding: 0.7rem 1.5rem;
background: rgba(56, 189, 248, 0.1);
color: var(--accent-blue);
text-decoration: none;
border-radius: 25px;
font-size: 0.95rem;
font-weight: 500;
border: 1px solid rgba(56, 189, 248, 0.3);
transition: all 0.3s ease;
}
.project-link:hover {
background: var(--accent-blue);
color: var(--primary-bg);
transform: translateY(-2px);
}
/* Updates Section */
.update-feed {
max-width: 1200px;
margin: 4rem auto;
padding: 0 2rem;
}
.update-item {
background: rgba(30, 41, 59, 0.4);
border-left: 4px solid var(--accent-cyan);
padding: 1.5rem 2rem;
margin-bottom: 1.5rem;
border-radius: 12px;
transition: all 0.3s ease;
}
.update-item:hover {
background: rgba(30, 41, 59, 0.6);
transform: translateX(8px);
}
.update-item strong {
color: var(--accent-cyan);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.update-item span {
display: block;
margin-top: 0.5rem;
color: var(--text-secondary);
line-height: 1.6;
}
.update-item a {
color: var(--accent-cyan);
text-decoration: none;
transition: color 0.3s ease;
}
.update-item a:hover {
color: var(--accent-blue);
text-decoration: underline;
}
/* Footer */
.footer-block {
background: var(--primary-bg);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 4rem 2rem 2rem;
}
.main-wrapper {
max-width: 1400px;
margin: 0 auto;
}
.footer-link {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-link:hover {
color: var(--accent-blue);
}
.copy-wrap {
text-align: center;
padding-top: 2rem;
color: var(--text-muted);
font-size: 0.9rem;
}
/* Mobile Menu */
.menubutton {
display: none;
background: none;
border: none;
cursor: pointer;
}
.projects-preview {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 3rem;
flex-wrap: wrap;
}
.project-preview-item {
color: var(--text-secondary);
font-size: 1.1rem;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}
.project-preview-item:hover {
color: var(--accent-blue);
}
@media (max-width: 991px) {
.nav-menu-5 {
display: none;
}
.menubutton {
display: block;
}
.heading-style-h1 {
font-size: 2.5rem;
}
.project-card {
padding: 1.5rem;
}
.projects-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.projects-preview {
gap: 1rem;
}
}
@media (max-width: 600px) {
.projects-grid {
grid-template-columns: 1fr;
}
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeInUp 0.8s ease forwards;
}
</style>
</head>
<body>
<!-- Animated Background -->
<div class="animated-bg">
<canvas id="particles-canvas"></canvas>
<div class="gradient-orb"></div>
<div class="gradient-orb"></div>
<div class="gradient-orb"></div>
</div>
<!-- Navigation -->
<div class="navbar-black w-nav">
<div class="container-47">
<a href="#" class="logo-text">
<span>⚡</span>
<span>Light AI</span>
</a>
<nav class="nav-menu-5">
<a href="#projects" class="navlink" data-i18n="nav.projects">Projects</a>
<a href="#updates" class="navlink" data-i18n="nav.updates">Updates</a>
<a href="https://github.com/ModelTC" target="_blank" class="navlink">GitHub</a>
<div class="lang-toggle">
<button type="button" data-lang="en">EN</button>
<button type="button" data-lang="zh">中文</button>
</div>
</nav>
<div class="menubutton w-nav-button">
<div>☰</div>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="homepage-hero-video">
<div class="container-medium">
<h1 class="heading-style-h1 fade-in" data-i18n="hero.title">Light-speed Large Model Systems</h1>
<div class="sub-header fade-in" data-i18n="hero.subtitle" style="animation-delay: 0.2s">
End-to-end toolkit for model compression, inference, and video generation
</div>
<a href="#projects" class="button fade-in" data-i18n="hero.cta" style="animation-delay: 0.4s">
Explore Platforms
</a>
<div class="projects-preview fade-in" style="animation-delay: 0.6s">
<a href="#projects" class="project-preview-item">LightCompress</a>
<a href="#projects" class="project-preview-item">LightLLM</a>
<a href="#projects" class="project-preview-item">LightX2V</a>
<a href="#projects" class="project-preview-item">X2V Studio</a>
</div>
</div>
</section>
<!-- Intro Section -->
<section class="ama-scrolling-words-section">
<div class="ama-container">
<p class="ama_scrolling-words-para-2" data-i18n="intro.text">
We believe the future of AI is fast, efficient, and accessible. Light AI delivers cutting-edge compression and inference technology to accelerate every step from research to production, empowering teams to deploy large models at lightning speed.
</p>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="background-color-secondary">
<div class="container-large">
<h2 class="h2-section-text" data-i18n="projects.title">Core Platforms</h2>
</div>
<!-- Projects Grid -->
<div class="container-xlarge">
<div class="projects-grid">
<div class="project-card" data-project="lightcompress">
<h3 class="heading-style-h3">LightCompress</h3>
<p class="heading-style-h6" data-i18n="projects.lightcompress.description">
Compression toolkit for LLM, VLM, and video generation models with structured sparsity, quantization, and token pruning to deliver faster inference at lower cost.
</p>
<div class="project-links">
<a href="https://github.com/ModelTC/LightCompress" target="_blank" class="project-link">
<span data-i18n="common.github">GitHub</span>
</a>
<a href="https://llmc-en.readthedocs.io/en/latest/" target="_blank" class="project-link" data-i18n-href="projects.lightcompress.doc">
<span data-i18n="common.blog">Blog</span>
</a>
</div>
</div>
<!-- LightLLM -->
<div class="project-card" data-project="lightllm">
<h3 class="heading-style-h3">LightLLM</h3>
<p class="heading-style-h6" data-i18n="projects.lightllm.description">
Lightweight inference stack for large language and multimodal models, covering batched, streaming, and multi-GPU workloads with continuous performance tuning.
</p>
<div class="project-links">
<a href="https://github.com/ModelTC/LightLLM" target="_blank" class="project-link">
<span data-i18n="common.github">GitHub</span>
</a>
<a href="https://www.light-ai.top/lightllm-blog/" target="_blank" class="project-link">
<span data-i18n="common.blog">Blog</span>
</a>
</div>
</div>
<!-- LightX2V -->
<div class="project-card" data-project="lightx2v">
<h3 class="heading-style-h3">LightX2V</h3>
<p class="heading-style-h6" data-i18n="projects.lightx2v.description">
Video generation inference engine focused on high-fidelity outputs from text and multimodal prompts for creative and virtual avatar scenarios.
</p>
<div class="project-links">
<a href="https://github.com/ModelTC/LightX2V" target="_blank" class="project-link">
<span data-i18n="common.github">GitHub</span>
</a>
<a href="https://lightx2v-en.readthedocs.io/en/latest/" target="_blank" class="project-link" data-i18n-href="projects.lightx2v.doc">
<span data-i18n="common.blog">Blog</span>
</a>
</div>
</div>
<!-- X2V Studio -->
<div class="project-card" data-project="x2vstudio">
<h3 class="heading-style-h3">X2V Studio</h3>
<p class="heading-style-h6" data-i18n="projects.x2vstudio.description">
Live experience site supporting lip-sync driving and multi-style generation to explore LightX2V in production environments.
</p>
<div class="project-links">
<a href="https://x2v.light-ai.top" target="_blank" class="project-link">
<span data-i18n="projects.x2vstudio.cta">Open Studio</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Updates Section -->
<section id="updates" class="ama-scrolling-words-section">
<div class="container-large">
<h2 class="h2-section-text" data-i18n="updates.title">Latest Updates</h2>
</div>
<div class="update-feed">
<div class="update-item">
<strong data-i18n="updates.nov.label"></strong>
<span data-i18n="updates.nov.content"></span>
</div>
<div class="update-item">
<strong data-i18n="updates.oct.label"></strong>
<span data-i18n="updates.oct.content"></span>
</div>
<div class="update-item">
<strong data-i18n="updates.sep.label"></strong>
<span data-i18n="updates.sep.content"></span>
</div>
</div>
</section>
<!-- Structured Data (JSON-LD) for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Light AI",
"url": "https://light-ai.top/",
"logo": "https://light-ai.top/",
"description": "End-to-end toolkit for model compression, inference, and video generation",
"sameAs": [
"https://github.com/ModelTC"
],
"contactPoint": {
"@type": "ContactPoint",
"email": "contact@light-ai.top"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Light AI",
"url": "https://light-ai.top/",
"description": "Light-speed Large Model Systems - End-to-end toolkit for model compression, inference, and video generation",
"potentialAction": {
"@type": "SearchAction",
"target": "https://light-ai.top/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "LightCompress",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Linux, Windows, macOS",
"description": "Compression toolkit for LLM, VLM, and video generation models with structured sparsity, quantization, and token pruning",
"url": "https://github.com/ModelTC/LightCompress",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "LightLLM",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Linux, Windows, macOS",
"description": "Lightweight inference stack for large language and multimodal models",
"url": "https://github.com/ModelTC/LightLLM",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "LightX2V",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Linux, Windows, macOS",
"description": "Video generation inference engine focused on high-fidelity outputs from text and multimodal prompts",
"url": "https://github.com/ModelTC/LightX2V",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<!-- Footer -->
<footer class="footer-block">
<div class="main-wrapper">
<div style="text-align: center; margin-bottom: 2rem;">
<p style="font-size: 1.2rem; color: var(--text-secondary);" data-i18n="footer.tagline">
Bridging the gap between imagination and creation.
</p>
</div>
<div class="copy-wrap">
<p data-i18n="footer.copyright">© 2025 Light AI · Model Toolchain</p>
<p style="margin-top: 0.5rem;">
<a href="mailto:contact@light-ai.top" class="footer-link">contact@light-ai.top</a>
<span style="margin: 0 0.5rem; color: var(--text-muted);">·</span>
<a href="https://github.com/ModelTC" target="_blank" class="footer-link">GitHub</a>
<span style="margin: 0 0.5rem; color: var(--text-muted);">·</span>
<a href="https://beian.miit.gov.cn" target="_blank" class="footer-link" data-i18n="footer.icp">京ICP备2021026391号-2</a>
</p>
</div>
</div>
</footer>
<script>
// Translations
const translations = {
en: {
'nav.projects': 'Projects',
'nav.updates': 'Updates',
'hero.title': 'Light-speed Large Model Systems',
'hero.subtitle': 'End-to-end toolkit for model compression, inference, and video generation',
'hero.cta': 'Explore Platforms',
'intro.text': 'We believe the future of AI is fast, efficient, and accessible. Light AI delivers cutting-edge compression and inference technology to accelerate every step from research to production, empowering teams to deploy large models at lightning speed.',
'projects.title': 'Core Platforms',
'projects.lightcompress.description': 'Compression toolkit for LLM, VLM, and video generation models with structured sparsity, quantization, and token pruning to deliver faster inference at lower cost.',
'projects.lightcompress.doc': 'https://llmc-en.readthedocs.io/en/latest/',
'projects.lightllm.description': 'Lightweight inference stack for large language and multimodal models, covering batched, streaming, and multi-GPU workloads with continuous performance tuning.',
'projects.lightx2v.description': 'Video generation inference engine focused on high-fidelity outputs from text and multimodal prompts for creative and virtual avatar scenarios.',
'projects.lightx2v.doc': 'https://lightx2v-en.readthedocs.io/en/latest/',
'projects.x2vstudio.description': 'Live experience site supporting lip-sync driving and multi-style generation to explore LightX2V in production environments.',
'projects.x2vstudio.cta': 'Open Studio',
'updates.title': 'Latest Updates',
'updates.nov.label': 'Nov · 2025',
'updates.nov.content': 'LightX2V experience service launches, enhancing lip-sync stability and opening the experience site at <a href="https://x2v.light-ai.top" target="_blank">x2v.light-ai.top</a>.',
'updates.oct.label': 'Oct · 2025',
'updates.oct.content': 'LightCompress introduces Token Pruning solution for inference deployment, <a href="https://arxiv.org/abs/2508.09981" target="_blank">benchmark paper</a> accepted by AAAI.',
'updates.sep.label': 'Sep · 2025',
'updates.sep.content': 'LightLLM original <a href="https://www.light-ai.top/lightllm-blog/2025/09/04/mtp.html" target="_blank">MTP acceleration solution</a> achieves over 2x performance improvement.',
'footer.tagline': 'Bridging the gap between imagination and creation.',
'footer.copyright': '© 2025 Light AI · Model Toolchain',
'footer.icp': 'ICP No. 京ICP备2021026391号-2',
'common.github': 'GitHub',
'common.blog': 'Blog'
},
zh: {
'nav.projects': '开源项目',
'nav.updates': '最新动态',
'hero.title': '高效大模型系统',
'hero.subtitle': '模型压缩、推理与视频生成的端到端工具链',
'hero.cta': '探索平台',
'intro.text': '我们相信 AI 的未来是快速、高效且易用的。Light AI 提供前沿的压缩与推理技术,加速从研究到生产的每个环节,助力团队以光速部署大模型。',
'projects.title': '核心平台',
'projects.lightcompress.description': '面向 LLM / VLM 与视频生成模型的压缩工具链,提供结构化稀疏、量化与 token pruning,显著降低推理成本。',
'projects.lightcompress.doc': 'https://llmc-zhcn.readthedocs.io/en/latest/',
'projects.lightllm.description': '轻量级大语言模型与多模态推理框架,覆盖批量、流式和多 GPU 场景,持续输出性能调优最佳实践。',
'projects.lightx2v.description': '视频生成推理引擎,专注文本与多模态提示到视频的高保真输出,面向创意生产和虚拟人场景。',
'projects.lightx2v.doc': 'https://lightx2v-zhcn.readthedocs.io/zh-cn/latest/',
'projects.x2vstudio.description': '上线体验站点,支持口型驱动和多风格生成,实时探索 LightX2V 模型在生产环境中的表现。',
'projects.x2vstudio.cta': '立即体验',
'updates.title': '最新动态',
'updates.nov.label': '2025 · 11',
'updates.nov.content': 'LightX2V 体验服务上线,强化口型驱动稳定性,开放体验站 <a href="https://x2v.light-ai.top" target="_blank">x2v.light-ai.top</a>。',
'updates.oct.label': '2025 · 10',
'updates.oct.content': 'LightCompress 推出面向推理部署的 Token Pruning 方案, <a href="https://arxiv.org/abs/2508.09981" target="_blank">benchmark论文</a>被AAAI录用。',
'updates.sep.label': '2025 · 09',
'updates.sep.content': 'LightLLM 原创<a href="https://www.light-ai.top/lightllm-blog/2025/09/04/mtp.html" target="_blank">MTP加速方案</a>,实现2倍以上性能提升。',
'footer.tagline': '连接想象与创造。',
'footer.copyright': '© 2025 Light AI · 模型工具链',
'footer.icp': '京ICP备2021026391号-2',
'common.github': 'GitHub',
'common.blog': '博客'
}
};
// Language switching
function updateLanguage(lang) {
const messages = translations[lang] || translations.en;
document.querySelectorAll('[data-i18n]').forEach(el => {
const key = el.getAttribute('data-i18n');
if (messages[key]) {
// Use innerHTML for content that may contain HTML links
if (key.includes('updates.') && key.includes('.content')) {
el.innerHTML = messages[key];
} else {
el.textContent = messages[key];
}
}
});
// Update href attributes for links with data-i18n-href
document.querySelectorAll('[data-i18n-href]').forEach(el => {
const key = el.getAttribute('data-i18n-href');
if (messages[key]) {
el.href = messages[key];
}
});
document.querySelectorAll('.lang-toggle button').forEach(btn => {
btn.classList.toggle('active', btn.dataset.lang === lang);
});
document.documentElement.setAttribute('lang', lang === 'zh' ? 'zh-CN' : 'en');
localStorage.setItem('lightai-lang', lang);
}
document.querySelectorAll('.lang-toggle button').forEach(btn => {
btn.addEventListener('click', () => updateLanguage(btn.dataset.lang));
});
// Initialize language - default to English, unless user has explicitly chosen Chinese
const savedLang = localStorage.getItem('lightai-lang') || 'en';
updateLanguage(savedLang);
// GSAP Animations
gsap.registerPlugin(ScrollTrigger);
// Animate heading
gsap.to('.h2-section-text', {
opacity: 1,
y: 0,
duration: 1,
scrollTrigger: {
trigger: '.h2-section-text',
start: 'top 80%'
}
});
// Animate project cards
gsap.utils.toArray('.project-card').forEach((card, index) => {
gsap.to(card, {
opacity: 1,
y: 0,
duration: 0.8,
delay: index * 0.2,
scrollTrigger: {
trigger: card,
start: 'top 85%'
}
});
});
// Smooth scrolling
const lenis = new Lenis({
duration: 1.2,
easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t))
});
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
// Particle Animation Background
const canvas = document.getElementById('particles-canvas');
const ctx = canvas.getContext('2d');
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
class Particle {
constructor() {
this.reset();
this.y = Math.random() * canvas.height;
}
reset() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 2 + 0.5;
this.speedX = (Math.random() - 0.5) * 0.5;
this.speedY = (Math.random() - 0.5) * 0.5;
this.opacity = Math.random() * 0.5 + 0.2;
}
update() {
this.x += this.speedX;
this.y += this.speedY;
if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;
if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;
}
draw() {
ctx.fillStyle = `rgba(56, 189, 248, ${this.opacity})`;
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
}
}
const particles = [];
const particleCount = 80;
for (let i = 0; i < particleCount; i++) {
particles.push(new Particle());
}
function connectParticles() {
for (let i = 0; i < particles.length; i++) {
for (let j = i + 1; j < particles.length; j++) {
const dx = particles[i].x - particles[j].x;
const dy = particles[i].y - particles[j].y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < 150) {
ctx.strokeStyle = `rgba(56, 189, 248, ${0.2 * (1 - distance / 150)})`;
ctx.lineWidth = 0.5;
ctx.beginPath();
ctx.moveTo(particles[i].x, particles[i].y);
ctx.lineTo(particles[j].x, particles[j].y);
ctx.stroke();
}
}
}
}
function animateParticles() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach(particle => {
particle.update();
particle.draw();
});
connectParticles();
requestAnimationFrame(animateParticles);
}
animateParticles();
</script>
</body>
</html>