P-Image

Model Information

Display Name: P-Image

API Model ID: prunaai/p-image

Category: Text To Image

Description: P-Image is PrunaAI's state-of-the-art real-time image generation model, delivering high-fidelity images in under one second with exceptional text rendering and prompt adherence. **Key Features:** - Sub-second image generation optimized for production - Exceptional text rendering accuracy within images - Fine-detail precision and rock-solid prompt adherence - Multiple aspect ratio support **Capabilities:** - High-fidelity image generation from text descriptions - Accurate rendering of complex scenes and compositions - Consistent quality across different aspect ratios - Built for real-time creative workflows **Output Options:** - **Aspect Ratios:** 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3 - **Format:** PNG - **Custom sizes:** 256-1440px (multiples of 16) **Use Cases:** - Real-time content creation - Marketing and social media visuals - Rapid prototyping and iteration - Production applications requiring speed **Performance:** Optimized for speed without sacrificing quality, generating images in approximately 1 second.

How to Use This Model

To use P-Image via the HInow.ai API, use the model ID: prunaai/p-image

API Request Example (Chat/Text)


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

{
  "model": "prunaai/p-image",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


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

{
  "model": "prunaai/p-image",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.01

Available Parameters

  • aspect_ratio: Output image aspect ratio (default: 16:9) (Options: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3)
  • output_format: Output image format (Options: png)

Quick Reference

To use this model, set: "model": "prunaai/p-image"

Featured: No

Documentation: https://hinow.ai/models/prunaai/p-image

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

Back to Models
P-Image

P-Image

prunaai/p-image

$0.010
per image

About

P-Image is PrunaAI's state-of-the-art real-time image generation model, delivering high-fidelity images in under one second with exceptional text rendering and prompt adherence.

Key Features:

  • Sub-second image generation optimized for production
  • Exceptional text rendering accuracy within images
  • Fine-detail precision and rock-solid prompt adherence
  • Multiple aspect ratio support

Capabilities:

  • High-fidelity image generation from text descriptions
  • Accurate rendering of complex scenes and compositions
  • Consistent quality across different aspect ratios
  • Built for real-time creative workflows

Output Options:

  • Aspect Ratios: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3
  • Format: PNG
  • Custom sizes: 256-1440px (multiples of 16)

Use Cases:

  • Real-time content creation
  • Marketing and social media visuals
  • Rapid prototyping and iteration
  • Production applications requiring speed

Performance:

Optimized for speed without sacrificing quality, generating images in approximately 1 second.

Capabilities

Text To Image

Parameters

aspect_ratio

Output image aspect ratio (default: 16:9)

1:116:99:164:33:43:22:3
output_format

Output image format

png

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "prunaai/p-image",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "output_format": "png"
    }
  }'