<!-- LLM_VERSION_INFO
FORMAT: text/markdown
CONTENT_TYPE: article
ORIGINAL_URL: https://www.clarifai.com/services/custom-model-building
ALTERNATE_VERSION: services/custom-model-building/index.html (text/html)
EXTRACTION_DATE: 2026-04-17T03:54:20.045Z

This is the markdown version with text-only content (images converted to alt-text).
For rich formatting with images, request the HTML version at: services/custom-model-building/index.html
-->

# Custom AI Model Building Services

### Build cutting edge AI products faster with our all-inclusive model building and maintenance services.

1,000 free operations per month.

## Need custom AI models? We're here to partner with you.

We can help you build custom models to solve your business problems, no matter how complex. We offer a world-leading team of scientists and engineers, plus years of experience building practical AI solutions in the real world. Our team is armed with our powerful, end-to-end AI platform so that POCs can be immediately passed to production and transitioned to you. Enlight AI model building services extends your team and helps you deploy solutions quickly.

#### Why Clarifai

## Grow your business with Enlight

Clarifai is one of the longest-standing AI companies in the world. We offer unmatched practical experience building AI models for businesses just like yours. Our data scientists offer unique insights into cutting edge machine learning research, and advanced expertise in the use of the Clarifai platform. Our data sourcing and preparation tools, training architecture and model deployment technology will get you up and running fast, and push the performance of your models to the limit.

### On-demand access to machine learning experts

Leverage a data strategy and engineering team with over 170k+ citations in published academic papers.

### Tailored services to your business use case

We'll help you define what you need for your use case to accelerate the AI model building process.

### Prototype to production-ready models

We'll help you accelerate your time-to-value by getting your models into production faster.

## Built for developers from the ground up

Get started with 1,000 free operations each month. Request a free API key and start building AI models today.

[Start for free](/content/cs/c/?cta_guid=9d6a991f-3120-494a-90e1-3a886b49f1f1&signature=AAH58kGqbuSOK4rVmHguPjdekNP8fgJtgA&portal_id=4505120&pageId=32592927188&placement_guid=6e598b12-ee20-4580-a864-412754d33071&click=921f817f-14b8-4a97-9f0b-7a44a4239f82&redirect_url=APefjpGolpvRkdb0ceFmKElXTYzyI6uf3iMvy8-x-Zri3NZZBCaD444pDkpN5qF7POMadM8riUWwtf-WKZwn_xIPHJmS1GYd8JXEcZ9WTNdB5_ypownMWaUJLYMD9f4Ff28G6T8kBBONW1ykclk4sXVfnwD3nh1rWbHb6V7cRjmXs6duJ7uJSJI&hsutk=&canon=https%3A%2F%2Fwww.clarifai.com%2Fservices%2Fcustom-model-building&ts=1776398033850/index.html)

### Sample Code in Various Languages

#### Python
```python
response = stub.PostModelOutputs(
    service_pb2.PostModelOutputsRequest(
        model_id="{THE_MODEL_ID}",
        inputs=[
            resources_pb2.Input(
                data=resources_pb2.Data(
                    image=resources_pb2.Image(
                        url="https://samples.clarifai.com/metro-north.jpg"
                    )
                )
            )
        ]
    ),
    metadata=metadata
)
print("Predicted concepts:")
for concept in response.outputs[0].data.concepts:
    print(concept.name + " " + str(concept.value))
```

#### JavaScript
```javascript
stub.PostModelOutputs(
    {
        model_id: "{THE_MODEL_ID}",
        inputs: [
            {data: {image: {url: "https://samples.clarifai.com/metro-north.jpg"}}}
        ]
    },
    metadata,
    (err, response) => {
        console.log("Predicted concepts:");
        for (const concept of response.outputs[0].data.concepts) {
            console.log(concept.name + " " + concept.value);
        }
    }
);
```

#### Java
```java
MultiOutputResponse response = stub.postModelOutputs(
    PostModelOutputsRequest.newBuilder()
        .setModelId("{THE_MODEL_ID}")
        .addInputs(
            Input.newBuilder().setData(
                Data.newBuilder().setImage(
                    Image.newBuilder().setUrl("https://samples.clarifai.com/metro-north.jpg")
                )
            )
        )
        .build()
);
System.out.println("Predicted concepts:");
for (Concept concept : response.getOutputs(0).getData().getConceptsList()) {
    System.out.printf("%s %.2f%n", concept.getName(), concept.getValue());
}
```

#### Curl
```bash
curl -X POST
    -H 'Authorization: Key {YOUR_API_KEY}'
    -H "Content-Type: application/json"
    -d '
    {
      "inputs": [
        {
          "data": {
            "image": {
              "url": "https://samples.clarifai.com/metro-north.jpg"
            }
          }
        }
      ]
    }'
    https://api.clarifai.com/v2/models/{THE_MODEL_ID}/outputs
```

#### Pricing
## Pricing that scales as your models do.

Clarifai’s team of experts are here to help you every step of the way as you integrate Computer Vision and AI into your technology stack.  
Please contact us below for a detailed Statement of Work and level of effort.

---

### Ready to get started?
#### Whether you're a start-up or a Fortune 500, we'd like to discuss a personalized plan that fits your business use cases.
