discord-graphics-generation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Discord Graphics Generation

Discord服务器图形生成

Generate professional Discord server graphics using each::sense. This skill creates images optimized for Discord's various graphic placements, sizes, and best practices.
使用each::sense生成专业的Discord服务器图形。本技能可创建适配Discord各类图形展示位置、尺寸及最佳实践的图片。

Features

功能特性

  • Server Icons: Square icons for server identity (512x512)
  • Server Banners: Wide banners for server profile (960x540)
  • Role Icons: Small icons for role identification (64x64)
  • Welcome Graphics: Channel headers for welcome areas
  • Rules Graphics: Visual headers for rules channels
  • Announcement Banners: Eye-catching announcement graphics
  • Event Banners: Promotional graphics for server events
  • Bot Avatars: Custom avatars for Discord bots
  • Emoji Packs: Custom server emojis
  • Booster Badges: Recognition graphics for server boosters
  • 服务器图标:用于服务器标识的方形图标(512x512)
  • 服务器横幅:用于服务器资料页的宽幅横幅(960x540)
  • 角色图标:用于角色识别的小型图标(64x64)
  • 欢迎图形:欢迎频道的头部横幅
  • 规则图形:规则频道的视觉头部
  • 公告横幅:引人注目的公告图形
  • 活动横幅:服务器活动的推广图形
  • 机器人头像:Discord机器人的自定义头像
  • 表情符号包:服务器自定义表情符号
  • Booster徽章:服务器Booster的专属识别图形

Quick Start

快速开始

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord server icon for a gaming community called Pixel Warriors, featuring a pixel art sword and shield with purple and blue colors",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord server icon for a gaming community called Pixel Warriors, featuring a pixel art sword and shield with purple and blue colors",
    "mode": "max"
  }'

Discord Graphics Formats & Sizes

Discord图形格式与尺寸

Asset TypeSizeAspect RatioUse Case
Server Icon512x5121:1Server identity, appears everywhere
Server Banner960x54016:9Server profile header (Nitro Level 2+)
Role Icon64x641:1Role badges next to usernames
Invite Splash1920x108016:9Server invite background (Nitro Level 1+)
Server Discovery1024x10241:1Server discovery listing
Custom Emoji128x1281:1Server emojis (max 256KB)
Sticker320x3201:1Custom stickers
资源类型尺寸宽高比使用场景
服务器图标512x5121:1服务器标识,全平台展示
服务器横幅960x54016:9服务器资料页头部(需Nitro等级2+)
角色图标64x641:1用户名旁的角色徽章
邀请启动图1920x108016:9服务器邀请背景(需Nitro等级1+)
服务器发现页图标1024x10241:1服务器发现列表展示
自定义表情符号128x1281:1服务器表情符号(最大256KB)
贴纸320x3201:1自定义贴纸

Use Case Examples

使用场景示例

1. Discord Server Icon

1. Discord服务器图标

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 512x512 Discord server icon for a tech community called CodeHub. Feature a modern code bracket symbol with gradient from cyan to purple, dark background, clean minimal design that reads well at small sizes.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 512x512 Discord server icon for a tech community called CodeHub. Feature a modern code bracket symbol with gradient from cyan to purple, dark background, clean minimal design that reads well at small sizes.",
    "mode": "max"
  }'

2. Server Banner

2. 服务器横幅

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 960x540 Discord server banner for an anime discussion community. Show a stylish anime-inspired cityscape at night with neon lights, purple and pink color scheme. Leave the center area less busy for the server name overlay.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 960x540 Discord server banner for an anime discussion community. Show a stylish anime-inspired cityscape at night with neon lights, purple and pink color scheme. Leave the center area less busy for the server name overlay.",
    "mode": "max"
  }'

3. Role Icons Set

3. 角色图标套装

bash
undefined
bash
undefined

Admin role icon

管理员角色图标

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for Admin role. Gold crown symbol on dark background, simple and recognizable at small size. Clean vector-style design.", "session_id": "discord-roles-001" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for Admin role. Gold crown symbol on dark background, simple and recognizable at small size. Clean vector-style design.", "session_id": "discord-roles-001" }'

Moderator role icon (same session for consistency)

版主角色图标(同一会话保证风格一致)

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for Moderator role. Silver shield symbol, same style as the admin icon. Simple and recognizable.", "session_id": "discord-roles-001" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for Moderator role. Silver shield symbol, same style as the admin icon. Simple and recognizable.", "session_id": "discord-roles-001" }'

VIP role icon

VIP角色图标

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for VIP members. Purple diamond or star symbol, matching the style of previous role icons.", "session_id": "discord-roles-001" }'
undefined
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 64x64 Discord role icon for VIP members. Purple diamond or star symbol, matching the style of previous role icons.", "session_id": "discord-roles-001" }'
undefined

4. Welcome Channel Graphic

4. 欢迎频道图形

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a wide banner graphic for a Discord welcome channel. Friendly and inviting design with soft gradients in blue and purple. Include visual space for welcome text. Aspect ratio 16:9, dimensions 1200x675. Make it warm and community-focused.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a wide banner graphic for a Discord welcome channel. Friendly and inviting design with soft gradients in blue and purple. Include visual space for welcome text. Aspect ratio 16:9, dimensions 1200x675. Make it warm and community-focused.",
    "mode": "max"
  }'

5. Rules Channel Graphic

5. 规则频道图形

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord rules channel header graphic. Professional and authoritative design with a scroll or document motif. Dark theme with gold accents. 1200x400 pixels. Include subtle gavel or scales of justice imagery. Clean and readable.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord rules channel header graphic. Professional and authoritative design with a scroll or document motif. Dark theme with gold accents. 1200x400 pixels. Include subtle gavel or scales of justice imagery. Clean and readable.",
    "mode": "max"
  }'

6. Announcement Graphics

6. 公告图形

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord announcement banner for a server update. Exciting and attention-grabbing with a megaphone or notification bell motif. Red and orange energy colors with dark background. 1200x600 pixels. Space for announcement text.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord announcement banner for a server update. Exciting and attention-grabbing with a megaphone or notification bell motif. Red and orange energy colors with dark background. 1200x600 pixels. Space for announcement text.",
    "mode": "max"
  }'

7. Event Banner

7. 活动横幅

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord event banner for a gaming tournament. Esports style with dynamic angles and energy effects. Team colors: red vs blue. 1200x675 pixels. Include space for event name, date, and prize info. Competitive and exciting mood.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a Discord event banner for a gaming tournament. Esports style with dynamic angles and energy effects. Team colors: red vs blue. 1200x675 pixels. Include space for event name, date, and prize info. Competitive and exciting mood.",
    "mode": "max"
  }'

8. Bot Avatar

8. 机器人头像

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 512x512 Discord bot avatar for a music bot called BeatBot. Friendly robot face with headphones, musical notes floating around. Cyan and white color scheme on dark background. Cute but modern design, reads well as small circle.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 512x512 Discord bot avatar for a music bot called BeatBot. Friendly robot face with headphones, musical notes floating around. Cyan and white color scheme on dark background. Cute but modern design, reads well as small circle.",
    "mode": "max"
  }'

9. Emoji Pack Generation

9. 表情符号包生成

bash
undefined
bash
undefined

Generate consistent emoji set

生成风格统一的表情符号套装

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of a happy pepe-style frog giving thumbs up. Simple, clean design with thick outlines for visibility at small sizes. Green frog, expressive eyes.", "session_id": "emoji-pack-001" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of a happy pepe-style frog giving thumbs up. Simple, clean design with thick outlines for visibility at small sizes. Green frog, expressive eyes.", "session_id": "emoji-pack-001" }'

Sad emoji

悲伤表情符号

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of the same frog character but sad with a single tear. Same art style as before, consistent design.", "session_id": "emoji-pack-001" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of the same frog character but sad with a single tear. Same art style as before, consistent design.", "session_id": "emoji-pack-001" }'

Laughing emoji

大笑表情符号

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of the same frog character laughing hard with tears of joy. Consistent style with previous emojis.", "session_id": "emoji-pack-001" }'
undefined
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 128x128 Discord emoji of the same frog character laughing hard with tears of joy. Consistent style with previous emojis.", "session_id": "emoji-pack-001" }'
undefined

10. Server Booster Badge

10. Server Booster徽章

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 64x64 Discord role icon for Server Boosters. Premium feel with Discord Nitro pink/purple gradient colors. Lightning bolt or rocket symbol to represent boost. Shiny metallic effect, stands out from other role icons.",
    "mode": "max"
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Create a 64x64 Discord role icon for Server Boosters. Premium feel with Discord Nitro pink/purple gradient colors. Lightning bolt or rocket symbol to represent boost. Shiny metallic effect, stands out from other role icons.",
    "mode": "max"
  }'

Best Practices

最佳实践

Server Icons

服务器图标

  • Simplicity: Design should be recognizable at 32x32 pixels
  • Contrast: Use high contrast colors for visibility
  • Centered: Keep main element centered (displays as circle)
  • No text: Avoid text - it won't be readable at small sizes
  • Brand colors: Use consistent brand/community colors
  • 简洁性:设计需在32x32像素尺寸下仍可识别
  • 对比度:使用高对比度颜色保证可见性
  • 居中布局:将核心元素置于中心(显示为圆形)
  • 避免文字:不要添加文字,小尺寸下无法辨认
  • 品牌色彩:使用统一的品牌/社区配色

Role Icons

角色图标

  • 64x64 max: Discord caps role icons at 64x64
  • Simple shapes: Complex details get lost at small sizes
  • Color coding: Use distinct colors for different role levels
  • Consistency: Create a cohesive set with matching styles
  • Transparency: Use transparent backgrounds
  • 最大64x64:Discord限制角色图标尺寸为64x64
  • 简单形状:复杂细节在小尺寸下会丢失
  • 颜色编码:为不同角色等级使用区分度高的颜色
  • 一致性:创建风格统一的图标套装
  • 透明背景:使用透明背景

Banners & Headers

横幅与头部

  • Safe zones: Keep important elements away from edges
  • Text space: Leave room for overlay text
  • Mobile friendly: Test how it looks on mobile
  • File size: Keep under 10MB for banners
  • 安全区域:重要元素需远离边缘
  • 预留文本空间:为叠加文本留出空间
  • 移动端友好:测试在移动端的显示效果
  • 文件大小:横幅文件大小需控制在10MB以内

Emojis

表情符号

  • 128x128: Standard Discord emoji size
  • 256KB limit: Keep file size under limit
  • Thick outlines: Helps visibility at small sizes
  • Transparent BG: Use transparency for versatility
  • Expression focus: Emphasize the emotion/action
  • 128x128:Discord表情符号标准尺寸
  • 256KB限制:文件大小需低于此限制
  • 粗线条轮廓:提升小尺寸下的可见性
  • 透明背景:使用透明背景增强通用性
  • 聚焦表情:突出情感或动作

Prompt Tips for Discord Graphics

Discord图形生成提示词技巧

When creating Discord graphics, include these details in your prompt:
  1. Exact size: Specify dimensions (512x512, 960x540, 64x64, etc.)
  2. Asset type: Server icon, banner, role icon, emoji, etc.
  3. Theme/Style: Gaming, anime, professional, minimalist, etc.
  4. Colors: Specific colors or let AI choose based on theme
  5. Key elements: Symbols, mascots, or imagery to include
  6. Readability: Mention if it needs to work at small sizes
  7. Text space: Note if you need room for text overlays
生成Discord图形时,需在提示词中包含以下细节:
  1. 精确尺寸:指定具体尺寸(如512x512、960x540、64x64等)
  2. 资源类型:服务器图标、横幅、角色图标、表情符号等
  3. 主题/风格:游戏风、动漫风、专业风、极简风等
  4. 配色:指定具体颜色或让AI根据主题选择
  5. 核心元素:需包含的符号、吉祥物或图像
  6. 可读性:说明是否需要在小尺寸下清晰显示
  7. 文本空间:注明是否需要预留文本叠加空间

Example Prompt Structure

提示词结构示例

"Create a [size] Discord [asset type] for [community type/name].
Feature [key visual elements] with [color scheme].
Style: [aesthetic description].
[Additional requirements like small-size readability, text space, etc.]"
"创建一个[尺寸]的Discord[资源类型],用于[社区类型/名称]。
包含[核心视觉元素],采用[配色方案]。
风格:[美学描述]。
[额外要求,如小尺寸可读性、文本空间等]"

Mode Selection

模式选择

Ask your users before generating:
"Do you want fast & cheap, or high quality?"
ModeBest ForSpeedQuality
max
Final assets, server branding, public-facing graphicsSlowerHighest
eco
Quick drafts, concept exploration, bulk emoji generationFasterGood
生成前请询问用户:
"您需要快速低成本的版本,还是高质量版本?"
模式适用场景速度质量
max
最终资源、服务器品牌建设、公开展示图形较慢最高
eco
快速草稿、概念探索、批量表情符号生成较快良好

Multi-Turn Creative Iteration

多轮创意迭代

Use
session_id
to iterate on Discord graphics:
bash
undefined
使用
session_id
对Discord图形进行迭代优化:
bash
undefined

Initial server icon concept

初始服务器图标概念

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 512x512 Discord server icon for a space exploration gaming community", "session_id": "space-server-branding" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 512x512 Discord server icon for a space exploration gaming community", "session_id": "space-server-branding" }'

Iterate based on feedback

根据反馈迭代

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Make the planet more prominent and add some stars in the background. Keep the same color scheme.", "session_id": "space-server-branding" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Make the planet more prominent and add some stars in the background. Keep the same color scheme.", "session_id": "space-server-branding" }'

Create matching banner

创建匹配的横幅

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Now create a matching 960x540 server banner with the same space theme and color palette", "session_id": "space-server-branding" }'
undefined
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Now create a matching 960x540 server banner with the same space theme and color palette", "session_id": "space-server-branding" }'
undefined

Complete Server Branding Set

完整服务器品牌套装

Generate a cohesive branding package:
bash
undefined
生成风格统一的品牌包:
bash
undefined

1. Server icon

1. 服务器图标

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 512x512 Discord server icon for a creative art community called ArtVault. Modern abstract paint splash design, vibrant rainbow colors on dark background.", "session_id": "artvault-branding", "mode": "max" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a 512x512 Discord server icon for a creative art community called ArtVault. Modern abstract paint splash design, vibrant rainbow colors on dark background.", "session_id": "artvault-branding", "mode": "max" }'

2. Server banner

2. 服务器横幅

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a matching 960x540 server banner. Extend the paint splash theme across a wider canvas. Same colors and style.", "session_id": "artvault-branding", "mode": "max" }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create a matching 960x540 server banner. Extend the paint splash theme across a wider canvas. Same colors and style.", "session_id": "artvault-branding", "mode": "max" }'

3. Role icons

3. 角色图标

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create 3 role icons (64x64 each) for Artist, Moderator, and VIP roles. Use paintbrush for Artist (blue), palette for Mod (orange), and star for VIP (gold). Same art style as the server icon.", "session_id": "artvault-branding", "mode": "max" }'
undefined
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Create 3 role icons (64x64 each) for Artist, Moderator, and VIP roles. Use paintbrush for Artist (blue), palette for Mod (orange), and star for VIP (gold). Same art style as the server icon.", "session_id": "artvault-branding", "mode": "max" }'
undefined

Error Handling

错误处理

ErrorCauseSolution
Failed to create prediction: HTTP 422
Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt to comply with Discord community guidelines
TimeoutComplex generationSet client timeout to minimum 10 minutes
Image too largeFile size exceeds limitRequest smaller dimensions or simpler design
错误原因解决方案
Failed to create prediction: HTTP 422
余额不足在eachlabs.ai进行充值
内容政策违规包含违禁内容调整提示词以符合Discord社区准则
超时生成任务复杂将客户端超时设置为至少10分钟
图像过大文件大小超出限制请求更小尺寸或更简洁的设计

Related Skills

相关技能

  • each-sense
    - Core API documentation
  • social-media-graphics
    - Social media assets
  • logo-generation
    - Brand logo creation
  • character-design
    - Mascot and character creation
  • each-sense
    - 核心API文档
  • social-media-graphics
    - 社交媒体资源生成
  • logo-generation
    - 品牌标志创建
  • character-design
    - 吉祥物与角色设计