HiMegia

Model Information

Display Name: HiMegia

API Model ID: hinow/himegia

Category: Text To Image

Description: HiMegia is HiNow's smart image router: one model name that automatically selects the best underlying image model for each request (generation and editing). **Key Features:** - Automatic model selection per prompt - Text-to-image and image editing (img2img) - Aspect ratios from 1:1 to 21:9

How to Use This Model

To use HiMegia via the HInow.ai API, use the model ID: hinow/himegia

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "hinow/himegia",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "hinow/himegia",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.082

Available Parameters

  • aspect_ratio: Output aspect ratio. Default: 1:1 (Options: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 21:9, 9:21)
  • num_inference_steps: Inference steps. Default: 28 (Options: 20, 25, 28, 30, 35, 40)
  • guidance_scale: Guidance scale. Default: 2.5 (Options: 1.5, 2.0, 2.5, 3.0, 3.5)
  • output_format: Output format. Default: jpeg (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "hinow/himegia"

Featured: Yes

Documentation: https://hinow.ai/models/hinow/himegia

API Endpoint: https://api.hinow.ai/v1

Back to Models
HiMegia

HiMegia

Featured

hinow/himegia

$0.082
per image

About

HiMegia is HiNow's smart image router: one model name that automatically selects the best underlying image model for each request (generation and editing).

Key Features:

  • Automatic model selection per prompt
  • Text-to-image and image editing (img2img)
  • Aspect ratios from 1:1 to 21:9

Capabilities

Text To ImageImage To Image

Parameters

aspect_ratio

Output aspect ratio. Default: 1:1

1:116:99:164:33:43:22:321:99:21
num_inference_steps

Inference steps. Default: 28

202528303540
guidance_scale

Guidance scale. Default: 2.5

1.52.02.53.03.5
output_format

Output format. Default: jpeg

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "hinow/himegia",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "aspect_ratio": "1:1",
      "num_inference_steps": "20",
      "guidance_scale": "1.5",
      "output_format": "jpeg"
    }
  }'