Powered by Omneity Labs

Sovereign AI Models, One API

OpenAI-compatible inference platform featuring Sawalni — the first LLM for Moroccan Arabic and Amazigh — plus embedding and language identification models.

Our Models

Purpose-built for Arabic-first applications and multilingual workloads

Sawalni

Chat LLM

The first large language model for Moroccan Arabic (Darija) and Amazigh. Advanced reasoning, function calling, and JSON mode.

Madmon

Embeddings

High-quality text embeddings for semantic search, clustering, and classification across Arabic varieties.

Gherbal

Language ID

Identify 200+ languages including Arabic dialects with script detection and batch processing.

Drop-in Compatible

Use the OpenAI SDK you already know. Just change the base URL and API key — your existing code works out of the box.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.sawalni.com/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="sawalni-beta",
    messages=[{"role": "user",
               "content": "كيفاش نقدر نخدم API؟"}]
)