infographic-generation
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseInfographic Generation
信息图生成
Generate professional, visually compelling infographics using each::sense. This skill creates data-driven visual content optimized for presentations, reports, social media, and marketing materials.
借助each::sense生成专业且视觉吸引力强的信息图。该技能可创建针对演示文稿、报告、社交媒体及营销物料优化的数据驱动型视觉内容。
Features
功能特性
- Statistical Infographics: Data visualizations with charts, graphs, and key metrics
- Process/How-To Infographics: Step-by-step visual guides and tutorials
- Comparison Infographics: Side-by-side product, service, or concept comparisons
- Timeline Infographics: Historical events, project milestones, company history
- List Infographics: Top 10 lists, tips, features, and curated content
- Geographic/Map Infographics: Location-based data and regional statistics
- Hierarchical Infographics: Organizational charts, taxonomies, flowcharts
- Resume Infographics: Visual CVs and professional profiles
- Report Infographics: Annual reports, quarterly summaries, research findings
- Social Media Infographics: Platform-optimized visual content for engagement
- 统计类信息图:包含图表、图形及关键指标的数据可视化内容
- 流程/操作指南类信息图:分步式视觉指南与教程
- 对比类信息图:产品、服务或概念的并排对比
- 时间线类信息图:历史事件、项目里程碑、企业发展历程
- 列表类信息图:Top 10榜单、小贴士、功能特性及精选内容
- 地理/地图类信息图:基于位置的数据及区域统计
- 层级类信息图:组织结构图、分类体系、流程图
- 简历类信息图:可视化简历及专业个人档案
- 报告类信息图:年度报告、季度总结、研究成果
- 社交媒体类信息图:针对平台优化的高互动视觉内容
Quick Start
快速开始
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a statistical infographic showing global renewable energy adoption rates with bar charts and key statistics"}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a statistical infographic showing global renewable energy adoption rates with bar charts and key statistics\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'Infographic Types & Best Practices
信息图类型与最佳实践
| Type | Best For | Key Elements |
|---|---|---|
| Statistical | Data presentation, research findings | Charts, graphs, percentages, icons |
| Process | Tutorials, workflows, instructions | Numbered steps, arrows, icons |
| Comparison | Product comparisons, decision guides | Side-by-side layout, checkmarks, ratings |
| Timeline | History, roadmaps, project plans | Linear flow, dates, milestones |
| List | Tips, features, rankings | Numbers, bullet points, icons |
| Geographic | Regional data, market analysis | Maps, location markers, regional stats |
| Hierarchical | Org charts, taxonomies, structures | Tree diagrams, boxes, connectors |
| Resume | Job applications, portfolios | Skills bars, timeline, icons |
| Report | Business summaries, analytics | Multiple sections, KPIs, graphs |
| Social Media | Engagement, sharing | Platform dimensions, bold text, simple graphics |
| 类型 | 适用场景 | 核心元素 |
|---|---|---|
| 统计类 | 数据展示、研究成果 | 图表、图形、百分比、图标 |
| 流程类 | 教程、工作流、操作说明 | 编号步骤、箭头、图标 |
| 对比类 | 产品对比、决策指南 | 并排布局、勾选标记、评分 |
| 时间线类 | 历史记录、路线图、项目计划 | 线性流程、日期、里程碑 |
| 列表类 | 小贴士、功能特性、排名 | 数字、项目符号、图标 |
| 地理类 | 区域数据、市场分析 | 地图、位置标记、区域统计数据 |
| 层级类 | 组织结构图、分类体系、结构框架 | 树形图、方框、连接线 |
| 简历类 | 求职申请、作品集 | 技能进度条、时间线、图标 |
| 报告类 | 业务总结、数据分析 | 多板块、关键绩效指标(KPI)、图表 |
| 社交媒体类 | 互动传播、内容分享 | 平台适配尺寸、醒目文字、简洁图形 |
Use Case Examples
用例示例
1. Statistical Infographic
1. 统计类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a statistical infographic about global coffee consumption. Include: bar chart showing top 5 consuming countries, pie chart of coffee types (espresso, latte, cappuccino, etc.), key stats like 2.25 billion cups consumed daily, and icons representing coffee culture. Modern minimal design with warm brown and cream color palette. Portrait orientation."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a statistical infographic about global coffee consumption. Include: bar chart showing top 5 consuming countries, pie chart of coffee types (espresso, latte, cappuccino, etc.), key stats like 2.25 billion cups consumed daily, and icons representing coffee culture. Modern minimal design with warm brown and cream color palette. Portrait orientation.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'2. Process/How-To Infographic
2. 流程/操作指南类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a how-to infographic for making sourdough bread. Show 8 steps: 1) Create starter, 2) Feed starter, 3) Mix dough, 4) Autolyse, 5) Stretch and fold, 6) Bulk ferment, 7) Shape and proof, 8) Bake. Use illustrated icons for each step, numbered circles, arrows showing flow. Rustic warm color scheme. Vertical layout."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a how-to infographic for making sourdough bread. Show 8 steps: 1) Create starter, 2) Feed starter, 3) Mix dough, 4) Autolyse, 5) Stretch and fold, 6) Bulk ferment, 7) Shape and proof, 8) Bake. Use illustrated icons for each step, numbered circles, arrows showing flow. Rustic warm color scheme. Vertical layout.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'3. Comparison Infographic
3. 对比类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a comparison infographic: Electric Cars vs Gas Cars. Compare: Initial cost, Fuel/charging costs, Maintenance costs, Environmental impact, Range, Charging/refueling time. Use side-by-side layout with green for electric and gray for gas. Include icons for each category, checkmarks for advantages. Clean modern design."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a comparison infographic: Electric Cars vs Gas Cars. Compare: Initial cost, Fuel/charging costs, Maintenance costs, Environmental impact, Range, Charging/refueling time. Use side-by-side layout with green for electric and gray for gas. Include icons for each category, checkmarks for advantages. Clean modern design.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'4. Timeline Infographic
4. 时间线类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a timeline infographic showing the history of artificial intelligence. Key milestones: 1950 Turing Test proposed, 1956 Dartmouth Conference (AI term coined), 1966 ELIZA chatbot, 1997 Deep Blue beats Kasparov, 2011 IBM Watson wins Jeopardy, 2012 Deep Learning breakthrough, 2016 AlphaGo beats Lee Sedol, 2022 ChatGPT released. Horizontal timeline with alternating above/below entries, tech-inspired blue color scheme, circuit board design elements."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a timeline infographic showing the history of artificial intelligence. Key milestones: 1950 Turing Test proposed, 1956 Dartmouth Conference (AI term coined), 1966 ELIZA chatbot, 1997 Deep Blue beats Kasparov, 2011 IBM Watson wins Jeopardy, 2012 Deep Learning breakthrough, 2016 AlphaGo beats Lee Sedol, 2022 ChatGPT released. Horizontal timeline with alternating above/below entries, tech-inspired blue color scheme, circuit board design elements.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'5. List Infographic
5. 列表类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a list infographic: Top 10 Productivity Tips for Remote Workers. Include: 1) Create dedicated workspace, 2) Set regular hours, 3) Take scheduled breaks, 4) Use time-blocking, 5) Minimize distractions, 6) Dress for work, 7) Stay connected with team, 8) Set boundaries, 9) Exercise daily, 10) End work ritual. Use numbered list format with icons for each tip, modern gradient purple and blue color scheme, clean typography."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a list infographic: Top 10 Productivity Tips for Remote Workers. Include: 1) Create dedicated workspace, 2) Set regular hours, 3) Take scheduled breaks, 4) Use time-blocking, 5) Minimize distractions, 6) Dress for work, 7) Stay connected with team, 8) Set boundaries, 9) Exercise daily, 10) End work ritual. Use numbered list format with icons for each tip, modern gradient purple and blue color scheme, clean typography.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'6. Geographic/Map Infographic
6. 地理/地图类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a geographic infographic showing internet penetration rates across continents. Include a world map with color-coded regions: North America 93%, Europe 89%, South America 75%, Asia 64%, Africa 43%. Add data callouts for top 5 countries by users. Use a tech-inspired blue gradient for high penetration to gray for low. Include legend and source citation area."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a geographic infographic showing internet penetration rates across continents. Include a world map with color-coded regions: North America 93%, Europe 89%, South America 75%, Asia 64%, Africa 43%. Add data callouts for top 5 countries by users. Use a tech-inspired blue gradient for high penetration to gray for low. Include legend and source citation area.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'7. Hierarchical Infographic
7. 层级类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a hierarchical infographic showing a typical tech startup organizational structure. CEO at top, branching to: CTO (with Engineering Manager, then Frontend/Backend/DevOps teams), CPO (with Product Managers, UX Designers), CFO (with Finance, HR), CMO (with Marketing, Sales). Use tree diagram format with connecting lines, professional corporate blue and gray colors, rounded rectangles for each role, icons representing each department."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a hierarchical infographic showing a typical tech startup organizational structure. CEO at top, branching to: CTO (with Engineering Manager, then Frontend/Backend/DevOps teams), CPO (with Product Managers, UX Designers), CFO (with Finance, HR), CMO (with Marketing, Sales). Use tree diagram format with connecting lines, professional corporate blue and gray colors, rounded rectangles for each role, icons representing each department.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'8. Resume Infographic
8. 简历类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a visual resume infographic for a UX Designer. Include sections: Profile summary with placeholder for photo, Skills with horizontal progress bars (Figma 95%, User Research 90%, Prototyping 85%, HTML/CSS 70%), Work experience as vertical timeline (2020-2023 Senior UX at TechCorp, 2017-2020 UX Designer at StartupXYZ), Education icons, Contact info with icons. Modern minimalist design, teal and dark gray color scheme, A4 portrait."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a visual resume infographic for a UX Designer. Include sections: Profile summary with placeholder for photo, Skills with horizontal progress bars (Figma 95%, User Research 90%, Prototyping 85%, HTML/CSS 70%), Work experience as vertical timeline (2020-2023 Senior UX at TechCorp, 2017-2020 UX Designer at StartupXYZ), Education icons, Contact info with icons. Modern minimalist design, teal and dark gray color scheme, A4 portrait.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'9. Report Infographic
9. 报告类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create an annual report infographic for a SaaS company. Include: Header with company logo placeholder and year 2024, Key metrics section (Revenue $12M up 45%, Customers 5,000+ up 60%, Team size 85 up 30%, NPS score 72), Revenue growth line chart, Customer acquisition funnel, Geographic expansion map showing presence in 25 countries, Product milestones timeline. Professional corporate design, navy blue and gold accent colors."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create an annual report infographic for a SaaS company. Include: Header with company logo placeholder and year 2024, Key metrics section (Revenue $12M up 45%, Customers 5,000+ up 60%, Team size 85 up 30%, NPS score 72), Revenue growth line chart, Customer acquisition funnel, Geographic expansion map showing presence in 25 countries, Product milestones timeline. Professional corporate design, navy blue and gold accent colors.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'10. Social Media Infographic
10. 社交媒体类信息图
bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{
"messages": [{"role": "user", "content": "Create a square 1:1 social media infographic about benefits of meditation. Title: 5 Science-Backed Benefits of Daily Meditation. Points: 1) Reduces stress hormones by 23%, 2) Improves focus and concentration, 3) Better sleep quality, 4) Lower blood pressure, 5) Increased emotional well-being. Bold readable text, calming purple and teal gradient background, simple icons for each benefit, Instagram-optimized with high contrast for mobile viewing."}],
"model": "eachsense/beta",
"stream": true,
"mode": "max"
}'bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-H "Accept: text/event-stream" \
-d '{\n \"messages\": [{\"role\": \"user\", \"content\": \"Create a square 1:1 social media infographic about benefits of meditation. Title: 5 Science-Backed Benefits of Daily Meditation. Points: 1) Reduces stress hormones by 23%, 2) Improves focus and concentration, 3) Better sleep quality, 4) Lower blood pressure, 5) Increased emotional well-being. Bold readable text, calming purple and teal gradient background, simple icons for each benefit, Instagram-optimized with high contrast for mobile viewing.\"}],\n \"model\": \"eachsense/beta\",\n \"stream\": true,\n \"mode\": \"max\"\n }'Multi-Turn Creative Iteration
多轮创意迭代
Use to iterate on infographic designs:
session_idbash
undefined使用对信息图设计进行迭代优化:
session_idbash
undefinedInitial infographic
Initial infographic
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create an infographic about climate change impacts with key statistics and a world map"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create an infographic about climate change impacts with key statistics and a world map"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create an infographic about climate change impacts with key statistics and a world map"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create an infographic about climate change impacts with key statistics and a world map"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
Iterate based on feedback
Iterate based on feedback
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Add more emphasis on ocean temperature data and include a temperature anomaly chart"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Add more emphasis on ocean temperature data and include a temperature anomaly chart"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Add more emphasis on ocean temperature data and include a temperature anomaly chart"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Add more emphasis on ocean temperature data and include a temperature anomaly chart"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
Request color variation
Request color variation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create an alternate version with a warmer color palette using oranges and reds to emphasize urgency"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create an alternate version with a warmer color palette using oranges and reds to emphasize urgency"}], "model": "eachsense/beta", "stream": true, "session_id": "climate-infographic-001" }'
undefinedcurl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create an alternate version with a warmer color palette using oranges and reds to emphasize urgency"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create an alternate version with a warmer color palette using oranges and reds to emphasize urgency"}],\n "model": "eachsense/beta",\n "stream": true,\n "session_id": "climate-infographic-001"\n }'
undefinedBatch Generation for A/B Testing
A/B测试批量生成
Generate multiple infographic variations:
bash
undefined生成多个信息图变体:
bash
undefinedVariation A - Minimalist style
Variation A - Minimalist style
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a minimalist infographic about healthy eating habits, white background, simple line icons, lots of whitespace"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a minimalist infographic about healthy eating habits, white background, simple line icons, lots of whitespace"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a minimalist infographic about healthy eating habits, white background, simple line icons, lots of whitespace"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a minimalist infographic about healthy eating habits, white background, simple line icons, lots of whitespace"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
Variation B - Bold colorful style
Variation B - Bold colorful style
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a bold colorful infographic about healthy eating habits, vibrant gradients, filled icons, energetic design"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a bold colorful infographic about healthy eating habits, vibrant gradients, filled icons, energetic design"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a bold colorful infographic about healthy eating habits, vibrant gradients, filled icons, energetic design"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a bold colorful infographic about healthy eating habits, vibrant gradients, filled icons, energetic design"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
Variation C - Corporate professional style
Variation C - Corporate professional style
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a corporate professional infographic about healthy eating habits, navy and gray colors, formal typography, business report style"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "messages": [{"role": "user", "content": "Create a corporate professional infographic about healthy eating habits, navy and gray colors, formal typography, business report style"}], "model": "eachsense/beta", "stream": true, "mode": "eco" }'
undefinedcurl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a corporate professional infographic about healthy eating habits, navy and gray colors, formal typography, business report style"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{\n "messages": [{"role": "user", "content": "Create a corporate professional infographic about healthy eating habits, navy and gray colors, formal typography, business report style"}],\n "model": "eachsense/beta",\n "stream": true,\n "mode": "eco"\n }'
undefinedBest Practices
最佳实践
Design Principles
设计原则
- Visual Hierarchy: Use size, color, and positioning to guide the viewer's eye
- Consistency: Maintain consistent icons, colors, and typography throughout
- White Space: Don't overcrowd; let elements breathe
- Data Accuracy: Represent data proportionally and accurately
- Readability: Use sufficient contrast and readable font sizes
- 视觉层级:利用尺寸、颜色及位置引导观众视线
- 一致性:在整个信息图中保持图标、颜色及字体的一致性
- 留白:避免过度拥挤,让元素有呼吸空间
- 数据准确性:按比例准确呈现数据
- 可读性:使用足够的对比度及易读的字体大小
Content Guidelines
内容指南
- One Key Message: Focus on a single main takeaway
- Scannable: Design for quick scanning with clear headers
- Source Citations: Include data sources for credibility
- Call to Action: Include next steps when appropriate
- 单一核心信息:聚焦一个主要要点
- 易扫描:设计清晰的标题,便于快速浏览
- 来源标注:包含数据来源以提升可信度
- 行动号召:适当时机加入下一步行动指引
Platform Optimization
平台优化
| Platform | Recommended Size | Notes |
|---|---|---|
| 1000x1500 (2:3) | Tall format performs best | |
| Instagram Feed | 1080x1080 (1:1) | Square for feed |
| Instagram Stories | 1080x1920 (9:16) | Full screen vertical |
| 1200x627 (1.91:1) | Horizontal for feed | |
| Twitter/X | 1200x675 (16:9) | Horizontal format |
| Blog/Web | 800x2000+ | Long-form vertical |
| Presentation | 1920x1080 (16:9) | Slide format |
| 平台 | 推荐尺寸 | 注意事项 |
|---|---|---|
| 1000x1500 (2:3) | 竖版格式表现最佳 | |
| Instagram Feed | 1080x1080 (1:1) | 正方形适配动态 feed |
| Instagram Stories | 1080x1920 (9:16) | 全屏竖版 |
| 1200x627 (1.91:1) | 横版适配动态 feed | |
| Twitter/X | 1200x675 (16:9) | 横版格式 |
| 博客/网页 | 800x2000+ | 长竖版 |
| 演示文稿 | 1920x1080 (16:9) | 幻灯片格式 |
Prompt Tips for Infographics
信息图提示词技巧
When creating infographics, include these details in your prompt:
- Type: Specify infographic type (statistical, process, timeline, etc.)
- Topic: Clearly describe the subject matter
- Data Points: Provide specific numbers, statistics, or content items
- Layout: Mention orientation (portrait/landscape) and structure
- Style: Describe desired aesthetic (minimal, bold, corporate, playful)
- Colors: Specify color palette or brand colors
- Platform: Mention intended use (social media, presentation, print)
创建信息图时,请在提示词中包含以下细节:
- 类型:指定信息图类型(统计类、流程类、时间线类等)
- 主题:清晰描述主题内容
- 数据点:提供具体数字、统计数据或内容条目
- 布局:提及方向(竖版/横版)及结构
- 风格:描述期望的美学风格(极简风、醒目风、商务风、活泼风)
- 颜色:指定配色方案或品牌色
- 平台:提及预期使用场景(社交媒体、演示文稿、印刷品)
Example Prompt Structure
提示词示例结构
"Create a [type] infographic about [topic].
Include: [specific data points, sections, or elements].
Layout: [orientation and structure].
Style: [aesthetic description].
Colors: [color palette].
For: [intended platform/use].""Create a [type] infographic about [topic].
Include: [specific data points, sections, or elements].
Layout: [orientation and structure].
Style: [aesthetic description].
Colors: [color palette].
For: [intended platform/use]."Mode Selection
模式选择
Ask your users before generating:
"Do you want fast & cheap, or high quality?"
| Mode | Best For | Speed | Quality |
|---|---|---|---|
| Final designs, client presentations, print materials | Slower | Highest |
| Quick drafts, concept exploration, A/B testing | Faster | Good |
生成前请询问用户:
"您需要快速低成本的版本,还是高品质版本?"
| 模式 | 适用场景 | 速度 | 质量 |
|---|---|---|---|
| 最终设计、客户演示、印刷物料 | 较慢 | 最高 |
| 快速草稿、概念探索、A/B测试 | 较快 | 良好 |
Error Handling
错误处理
| Error | Cause | Solution |
|---|---|---|
| Insufficient balance | Top up at eachlabs.ai |
| Content policy violation | Prohibited content | Adjust prompt content |
| Timeout | Complex generation | Set client timeout to minimum 10 minutes |
| 错误 | 原因 | 解决方案 |
|---|---|---|
| 余额不足 | 在eachlabs.ai进行充值 |
| 内容政策违规 | 包含违禁内容 | 调整提示词内容 |
| 超时 | 生成任务复杂 | 将客户端超时设置为至少10分钟 |
Related Skills
相关技能
- - Core API documentation
each-sense - - Charts and graphs
data-visualization - - Slide decks and pitch materials
presentation-design - - Platform-optimized visuals
social-media-graphics
- - 核心API文档
each-sense - - 图表与图形
data-visualization - - 幻灯片与推介物料
presentation-design - - 平台优化视觉内容
social-media-graphics