# Infographic
**Repository Path**: antv/Infographic
## Basic Information
- **Project Name**: Infographic
- **Description**: 🦋 An Infographic Generation and Rendering Framework, bring words to life with AI!
- **Primary Language**: TypeScript
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2026-01-04
- **Last Updated**: 2026-01-08
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
简体中文 | [English](/README.md)
## 流式渲染
[](https://infographic.antv.vision/learn/infographic-syntax)
使用具有高容错性的信息图语法能够实时接收 AI 流式输出并逐步渲染信息图。
```ts
let buffer = '';
for (const chunk of chunks) {
buffer += chunk;
infographic.render(buffer);
}
```