Skip to content

Commit c21e6c3

Browse files
committed
updated the preface
1 parent f8384a4 commit c21e6c3

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

docs/preface.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ But decentralizing AI is no small feat. AI workflows are inherently complex, inv
2828

2929
Today's blockchain infrastructure falls short in meeting the needs of real-world AI applications due to limited throughput: Ethereum processes 10-20 TPS, Solana less than 4,000 TPS, and Layer 2s less than 400 TPS. This equates to data throughput of approximately 1.5 mbps on average, which is 33,333x lower than the 50 gbps that's needed to fuel AI applications. Large-scale models like Open AI's GPT-4 require even more throughput as they must handle massive amounts of data and interactions.
3030

31-
**Zero Gravity (0G)** is addressing these challenges by providing a decentralized AI operating system (dAIOS) with a modular and layered architecture design.
31+
**Zero Gravity (0G)** is addressing these challenges by providing a decentralized AI operating system (dAIOS) with a modular and layered architecture design.
32+
<div style={{textAlign: 'center'}}>
33+
<img src="/img/democratized-ai.png" alt="Democratized AI" style={{maxWidth: '100%'}} />
34+
</div>
3235

3336
## Introducing 0G
3437

docs/src/components/CenteredImage.tsx

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from 'react';
2+
3+
interface CenteredImageProps {
4+
src: string;
5+
alt: string;
6+
maxWidth?: string;
7+
}
8+
9+
const CenteredImage: React.FC<CenteredImageProps> = ({ src, alt, maxWidth = '100%' }) => {
10+
return (
11+
<img
12+
src={src}
13+
alt={alt}
14+
style={{
15+
display: 'block',
16+
margin: 'auto',
17+
maxWidth: maxWidth,
18+
}}
19+
/>
20+
);
21+
};
22+
23+
export default CenteredImage;

static/img/democratized-ai.png

393 KB
Loading

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"jsx": "react",
77
"esModuleInterop": true,
88
"allowSyntheticDefaultImports": true
9-
}
9+
},
1010
}

0 commit comments

Comments
 (0)