IntelCS-AI

Low-cost inference for open-weight models. We serve open models on efficient GPU capacity at some of the lowest per-token prices on the platform — with no compromise on features.

Why IntelCS-AI

Pricing

Model Input (per 1M tokens) Output (per 1M tokens) Context
google/gemma-3-4b-it $0.05 $0.10 131K

Our lineup rotates as we add capacity — check back for new models.

Usage

OpenAI-compatible, through the standard Hugging Face clients:

from huggingface_hub import InferenceClient

client = InferenceClient(
    model="google/gemma-3-4b-it",
    provider="intelcs-ai-iaas",
)

# Chat with tool calling
response = client.chat.completions.create(
    messages=[{"role": "user", "content": "What's the weather in Berlin?"}],
    tools=[{
        "type": "function",
        "function": {
            "name": "get_weather",
            "parameters": {"type": "object", "properties": {"location": {"type": "string"}}},
        },
    }],
)
print(response.choices[0].message.tool_calls)

# Structured output
response = client.chat.completions.create(
    messages=[{"role": "user", "content": "Extract the city: 'Flight to Berlin delayed'"}],
    response_format={"type": "json_schema", "json_schema": {"name": "city", "schema": {
        "type": "object", "properties": {"city": {"type": "string"}}, "required": ["city"],
    }}},
)
print(response.choices[0].message.content)  # {"city": "Berlin"}

Streaming (stream=True) is fully supported and metered per token.

Resources