Skip to main content
WEC Docs

The only AI-first
Edge Cloud

Everything you need to deploy and manage AI workloads at the edge — accounts, compute, storage, networking, and billing, documented here.

# pip install openai
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://inference.wiline.com/v1",
    api_key=os.environ["WEC_API_KEY"],
)

resp = client.chat.completions.create(
    model="deepseek-v3.1",
    messages=[{"role": "user", "content": "Hello"}],
)

print(resp.choices[0].message.content)
Featured models+ more
Browse the Inference API

01Documentation

Browse the docs

Pick a topic and dive in — compute, storage, networking, billing, and the concepts behind the platform.

02Get started

New to WiLine Edge Cloud?

Learn what sets WEC apart — its edge-native architecture, built-in data sovereignty, and AI-first design.

What is Edge Cloud?Understand the platform, the edge-native architecture, instance tiers, and how WEC compares to hyperscale edge.
Deploy your first workloadStep-by-step guide to launching an instance and configuring networking on WEC.