Empower Your Ideas with AI
Cost-effective, User-Friendly APIs to Elevate Your AI Solutions in Moments,
Seamlessly Scaling with Your Needs.
Start with one line of code:
face ID embedding from a face recognition model instead of CLIP image embed,...Use face ID embedding from a face
Python
TypeScript
cURL

import base64
import os
import requests

api_host = os.getenv('API_HOST', 'https://neura-flux.com')
api_key = os.getenv("NEUROFLUX_API_KEY")

if api_key is None:
    raise Exception("Missing NeuroFlux API key.")

response = requests.post(
    f"{api_host}/v1/ai-service/sdxl",
    headers={
        "Content-Type": "application/json",
        "Accept": "application/json",
        "Authorization": f"Bearer {api_key}"
    },
    json={
        "text_prompts": [
            {
                "text": "A lighthouse on a cliff"
            }
        ],
        "cfg_scale": 7,
        "height": 1024,
        "width": 1024,
        "samples": 1,
        "steps": 30,
    },
)

if response.status_code != 200:
    raise Exception("Non-200 response: " + str(response.text))

data = response.json()

for i, image in enumerate(data):
    with open(f"./out/v1_txt2img_{i}.png", "wb") as f:
        f.write(base64.b64decode(image["base64"]))

Democratize AI Development
face ID embedding from a face recognition model instead of CLIP image embedding,...Use face ID embedding from a face
Democratize
AI Development
Our platform makes AI accessible to everyone by providing an intuitive and budget-friendly environment for training and deploying models, removing technical and financial barriers for innovators and creators.
No Infrastructure
All Innovation
Shift your focus purely to innovation as our platform takes care of the heavy lifting in computing, enabling you to develop groundbreaking AI applications without the infrastructure hassle.
High-Performance
AI at Your Fingertips
Access the capability to train sophisticated models and perform real-time inference on demand, all supported by our scalable infrastructure that grows with your project needs.
Effortless
AI Workflows
Our user-friendly APIs streamline your AI development process, allowing for seamless integration into your projects and accelerating your path from concept to deployment.
Democratize AI Development
face ID embedding from a face recognition model instead of CLIP image embedding,...Use face ID embedding from a face