Keiven Chang commited on
Commit
b9d7200
·
verified ·
1 Parent(s): 1b41995

docs: replace default organization card page

Browse files
Files changed (1) hide show
  1. index.html +35 -17
index.html CHANGED
@@ -1,19 +1,37 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
  <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <meta name="description" content="NVIDIA Dynamo open-source distributed inference framework.">
7
+ <title>NVIDIA Dynamo</title>
8
+ <link rel="stylesheet" href="style.css">
9
+ </head>
10
+ <body>
11
+ <main class="card">
12
+ <div class="brand">NVIDIA <span>DYNAMO</span></div>
13
+ <p class="eyebrow">OPEN-SOURCE INFERENCE FRAMEWORK</p>
14
+ <h1>Serve generative AI at scale.</h1>
15
+ <p class="summary">NVIDIA Dynamo is a low-latency, modular inference framework for serving generative AI models in distributed environments. It scales workloads across GPU fleets with intelligent scheduling, request routing, optimized memory management, and data transfer.</p>
16
+ <div class="actions">
17
+ <a class="button primary" href="https://github.com/ai-dynamo/dynamo" target="_blank" rel="noopener noreferrer">View on GitHub</a>
18
+ <a class="button secondary" href="https://docs.nvidia.com/dynamo/latest/" target="_blank" rel="noopener noreferrer">Documentation</a>
19
+ </div>
20
+ <section class="capabilities" aria-label="Dynamo capabilities">
21
+ <div>
22
+ <h2>Distributed serving</h2>
23
+ <p>Deploy and scale inference across GPU fleets.</p>
24
+ </div>
25
+ <div>
26
+ <h2>Disaggregated inference</h2>
27
+ <p>Independently optimize prefill and decode workloads.</p>
28
+ </div>
29
+ <div>
30
+ <h2>Open ecosystem</h2>
31
+ <p>Works with SGLang, TensorRT-LLM, and vLLM.</p>
32
+ </div>
33
+ </section>
34
+ <p class="footer">Source code, examples, and project updates: <a href="https://github.com/ai-dynamo" target="_blank" rel="noopener noreferrer">github.com/ai-dynamo</a></p>
35
+ </main>
36
+ </body>
37
  </html>