infographic-generation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Infographic 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

信息图类型与最佳实践

TypeBest ForKey Elements
StatisticalData presentation, research findingsCharts, graphs, percentages, icons
ProcessTutorials, workflows, instructionsNumbered steps, arrows, icons
ComparisonProduct comparisons, decision guidesSide-by-side layout, checkmarks, ratings
TimelineHistory, roadmaps, project plansLinear flow, dates, milestones
ListTips, features, rankingsNumbers, bullet points, icons
GeographicRegional data, market analysisMaps, location markers, regional stats
HierarchicalOrg charts, taxonomies, structuresTree diagrams, boxes, connectors
ResumeJob applications, portfoliosSkills bars, timeline, icons
ReportBusiness summaries, analyticsMultiple sections, KPIs, graphs
Social MediaEngagement, sharingPlatform 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
session_id
to iterate on infographic designs:
bash
undefined
使用
session_id
对信息图设计进行迭代优化:
bash
undefined

Initial 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" }'
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 }'

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" }'
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 }'

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" }'
undefined
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 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 }'
undefined

Batch Generation for A/B Testing

A/B测试批量生成

Generate multiple infographic variations:
bash
undefined
生成多个信息图变体:
bash
undefined

Variation 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" }'
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 }'

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" }'
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 }'

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" }'
undefined
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 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 }'
undefined

Best 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

平台优化

PlatformRecommended SizeNotes
Pinterest1000x1500 (2:3)Tall format performs best
Instagram Feed1080x1080 (1:1)Square for feed
Instagram Stories1080x1920 (9:16)Full screen vertical
LinkedIn1200x627 (1.91:1)Horizontal for feed
Twitter/X1200x675 (16:9)Horizontal format
Blog/Web800x2000+Long-form vertical
Presentation1920x1080 (16:9)Slide format
平台推荐尺寸注意事项
Pinterest1000x1500 (2:3)竖版格式表现最佳
Instagram Feed1080x1080 (1:1)正方形适配动态 feed
Instagram Stories1080x1920 (9:16)全屏竖版
LinkedIn1200x627 (1.91:1)横版适配动态 feed
Twitter/X1200x675 (16:9)横版格式
博客/网页800x2000+长竖版
演示文稿1920x1080 (16:9)幻灯片格式

Prompt Tips for Infographics

信息图提示词技巧

When creating infographics, include these details in your prompt:
  1. Type: Specify infographic type (statistical, process, timeline, etc.)
  2. Topic: Clearly describe the subject matter
  3. Data Points: Provide specific numbers, statistics, or content items
  4. Layout: Mention orientation (portrait/landscape) and structure
  5. Style: Describe desired aesthetic (minimal, bold, corporate, playful)
  6. Colors: Specify color palette or brand colors
  7. Platform: Mention intended use (social media, presentation, print)
创建信息图时,请在提示词中包含以下细节:
  1. 类型:指定信息图类型(统计类、流程类、时间线类等)
  2. 主题:清晰描述主题内容
  3. 数据点:提供具体数字、统计数据或内容条目
  4. 布局:提及方向(竖版/横版)及结构
  5. 风格:描述期望的美学风格(极简风、醒目风、商务风、活泼风)
  6. 颜色:指定配色方案或品牌色
  7. 平台:提及预期使用场景(社交媒体、演示文稿、印刷品)

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?"
ModeBest ForSpeedQuality
max
Final designs, client presentations, print materialsSlowerHighest
eco
Quick drafts, concept exploration, A/B testingFasterGood
生成前请询问用户:
"您需要快速低成本的版本,还是高品质版本?"
模式适用场景速度质量
max
最终设计、客户演示、印刷物料较慢最高
eco
快速草稿、概念探索、A/B测试较快良好

Error Handling

错误处理

ErrorCauseSolution
Failed to create prediction: HTTP 422
Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt content
TimeoutComplex generationSet client timeout to minimum 10 minutes
错误原因解决方案
Failed to create prediction: HTTP 422
余额不足在eachlabs.ai进行充值
内容政策违规包含违禁内容调整提示词内容
超时生成任务复杂将客户端超时设置为至少10分钟

Related Skills

相关技能

  • each-sense
    - Core API documentation
  • data-visualization
    - Charts and graphs
  • presentation-design
    - Slide decks and pitch materials
  • social-media-graphics
    - Platform-optimized visuals
  • each-sense
    - 核心API文档
  • data-visualization
    - 图表与图形
  • presentation-design
    - 幻灯片与推介物料
  • social-media-graphics
    - 平台优化视觉内容