Skip to main content

Get Started

Deploy your AI Application using Inceptron

Deploy your first AI application in minutes. Leverage our serverless platform to scale effortlessly.

Here’s a quick example of how to create a chat completion using the Inceptron API with different programming languages:

Stream
import os
from openai import OpenAI

client = OpenAI(
base_url="https://api.inceptron.io/v1",
api_key=os.environ["INCEPTRON_API_KEY"],
)

completion = client.chat.completions.create(
model="meta-llama/Llama-3.3-70B-Instruct",
messages=[
{
"role": "user",
"content": "How many moons are there in the Solar System?"
}
],
)

print(completion.choices[0].message)