Develop with AI

AI Developer Portal

Access comprehensive tools, APIs, SDKs, and documentation to integrate our AI capabilities into your applications. Build smarter solutions with our developer-optimized workflows.

Available SDKs & APIs

REST API

Integrate with our AI services through RESTful APIs enabling text generation, computer vision, and data analysis directly into your applications.

View API Docs

ML SDK

Leverage local machine learning models with our SDK for custom AI model training, inference, and deployment within your infrastructure.

Download SDK

Developer Resources

Code Samples

Access pre-configured code templates in Python, JavaScript, and other languages to quickly integrate our AI models.

View Examples

CLI Tools

Use our command-line interface tools to manage AI model deployment, versioning, and testing workflows in your development pipeline.

Download CLI

SDK Templates

Start with pre-built project templates for various development frameworks including Node.js, Flask, and .NET.

View Templates

Tutorial

Getting Started with the ML SDK

{| language: 'shell|
npm install -g @my-ai-sdk|
my-ai init|
cd my-ai-project|
my-ai run model --input data.csv --output predictions.csv|
                            

API Reference

Auth Endpoint

                                  {| language: 'http|
 POST /api/v1/get-token|
 Headers|
 Authorization: Basic $API_KEY|
 Content-Type: application/json|
|
 Body|
 {|
  "access_token": "abc123",|
  "token_type": "Bearer",|
 }
                            

Data Inference Endpoint

{| language: 'http|
POST /model/infer|
 Headers|
 Authorization: Bearer $ACCESS_TOKEN|
 Content-Type: application/json|
|
 Body|
 {|
  "data": {"text": "Hello world!"},|
 }