Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / Aleph Alpha PhariaAI API
Aleph Alpha PhariaAI API logo

Aelph Alpha Aleph Alpha PhariaAI API

Agent-ready OpenAPI document · curated by JenticAI/MLLanguage Modelsbearer11 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Run text completion, chat, embeddings, summarisation, Q&A, and tokenisation against Aleph Alpha's Luminous LLMs from a single European-hosted inference API.

Use for: Generate a text completion with a Luminous model, Get a chat completion for a conversation history, Create dense embeddings for a list of documents, Compute semantic embeddings for a search index

Not supported: Does not handle model fine-tuning, training data uploads, or non-text modalities - use for inference against pre-trained Luminous models only.

PhariaAI is the inference platform behind Aleph Alpha's Luminous family of large language models, exposing endpoints for text completion, chat, embeddings, semantic similarity, evaluation, question answering, summarisation, and tokenisation. The API is European-hosted and aimed at enterprise teams that need sovereign LLM infrastructure for retrieval, classification, and generation workloads. Authentication uses a bearer token issued from the Aleph Alpha account portal.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Aleph Alpha PhariaAI API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Aleph Alpha PhariaAI API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faelph-alpha.com%2Faleph-alpha" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faelph-alpha.com%2Faleph-alpha" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Aleph Alpha PhariaAI API.

Generate text completions and chat responses with Luminous-family models

Produce dense and semantic embeddings for retrieval and similarity workflows

Run reference-based answer evaluation for grading and guardrails

Answer questions over supplied context documents

Summarise long documents into structured outputs

Tokenise and detokenise text to manage prompt budgets and audit token usage

Use Cases

Patterns agents use Aleph Alpha PhariaAI API for, with concrete tasks.

★ Sovereign Enterprise RAG Pipeline

Build retrieval-augmented generation on infrastructure that stays inside the EU. PhariaAI's /semantic_embed endpoint produces embeddings for indexing, /qa answers questions with supplied context, and /complete or /chat/completions handle final generation. Suitable for regulated industries that need an LLM stack outside US-controlled clouds while still operating in English, German, French, Spanish, and Italian.

Call POST /semantic_embed for 500 policy documents, store the vectors in pgvector, then call POST /qa with the top-k passages to answer a user question

Document Summarisation at Scale

Summarise contracts, research papers, or customer transcripts using the dedicated /summarize endpoint. The endpoint accepts a document and returns a structured summary, removing the need to hand-craft summarisation prompts for the /complete endpoint. Pair with /tokenize to split documents that exceed the model context window before summarising chunk-by-chunk.

Call POST /tokenize to chunk a 50-page report, then call POST /summarize on each chunk and concatenate the bullet outputs

Classification and Grading with Evaluate

Use /evaluate to score how well a candidate completion matches a reference, which is the basis for classification, grading, and answer-verification workflows. Combined with /qa for retrieval and /complete for free-form generation, this covers the core enterprise NLP loop on a single European inference platform.

Call POST /evaluate with a candidate answer and a list of reference answers and return the log-probability score for each reference

AI Agent with Sovereign LLM Backend

Route an AI agent's reasoning through Luminous instead of a US-hosted model when data residency matters. Through Jentic, the agent searches by intent for the right PhariaAI operation, loads its schema, and executes with the bearer token isolated in the vault. The Jentic value chain stays the same - search, load, execute - but the model call lands on European infrastructure.

Search Jentic for 'generate a chat completion with luminous', load the /chat/completions schema, and execute with the user's messages and model=luminous-supreme-control

Key Endpoints

11 endpoints — phariaai is the inference platform behind aleph alpha's luminous family of large language models, exposing endpoints for text completion, chat, embeddings, semantic similarity, evaluation, question answering, summarisation, and tokenisation.

METHOD

PATH

DESCRIPTION

POST

/complete

Generate a text completion

POST

/chat/completions

Generate a chat completion from a message history

POST

/embed

Create dense embeddings for one or more texts

POST

/semantic_embed

Create semantic embeddings tuned for similarity search

POST

/qa

Answer a question using supplied context

POST

/summarize

Summarise a document

POST

/evaluate

Score a completion against reference answers

GET

/models_available

List Luminous models available to the account

POST

/complete

Generate a text completion

POST

/chat/completions

Generate a chat completion from a message history

POST

/embed

Create dense embeddings for one or more texts

POST

/semantic_embed

Create semantic embeddings tuned for similarity search

POST

/qa

Answer a question using supplied context

POST

/summarize

Summarise a document

POST

/evaluate

Score a completion against reference answers

GET

/models_available

List Luminous models available to the account

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Aleph Alpha PhariaAI API by hand means learning its bearer auth and coding calls against several inference endpoints. Through Jentic you install once, import the PhariaAI API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

PhariaAI takes the model and prompt in the request body across inference operations, so limit the agent to the operations it needs, such as summarize or embed. You choose which operations are in the allowed set, so completion or evaluation is not reachable unless you add it.

Credential management

Credential isolation

Your Aleph Alpha bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'summarise a long document with Luminous', and Jentic returns the matching PhariaAI operation with its input schema so the agent picks summarize over complete without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

OpenAI API

→

Largest commercial LLM provider with GPT models hosted in the US

Choose OpenAI for the broadest tool ecosystem and largest model selection; choose Aleph Alpha when European data residency or sovereign hosting is required

Alternative

Cohere

→

Enterprise LLM provider with strong embedding and rerank endpoints

Pick Cohere for first-class rerank and multilingual embeddings; pick Aleph Alpha for European-hosted Luminous models with summarise and evaluate endpoints

Alternative

Mistral AI

→

European LLM provider with open-weight and hosted Mistral models

Pick Mistral for open-weight models you can self-host; pick Aleph Alpha for purpose-built /qa, /summarize, and /evaluate endpoints on Luminous

Complementary

Hugging Face

→

Model hub and inference API across thousands of models

Use Hugging Face to host or run open models alongside PhariaAI when a single workflow needs both Luminous and an open-source model

FAQs

Specific to using Aleph Alpha PhariaAI API through Jentic.

Does Aleph Alpha publish an official OpenAPI spec for Aleph Alpha PhariaAI API?

Yes. Aleph Alpha publishes a machine-readable OpenAPI 3.0.3 document for PhariaInference (info.title Aleph Alpha API, info.version 4.7.0, 27 paths and 28 operations) at `https://docs.aleph-alpha.com/COMMON/_attachments/openapi/pharia-inference/v4.7.0.json`, and separate documents for other PhariaAI components including PhariaData and PhariaStudio. The specification on this page is written and maintained by Jentic from the vendor's documentation and covers 11 inference operations; it records `https://api.aleph-alpha.com` as the base URL, where the vendor's own document ships a templated placeholder host instead. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Aleph Alpha PhariaAI API use?

PhariaAI uses HTTP bearer authentication; pass an Authorization: Bearer <token> header with a token created in the Aleph Alpha account portal. Through Jentic the token is stored in the vault and applied at execution time.

Which models are available through the PhariaAI API?

Call GET /models_available to list the Luminous variants - base, extended, supreme, supreme-control, and any newer models - provisioned for your account. The same model identifier is then passed in the body of /complete, /chat/completions, /embed, and other endpoints.

Can I generate embeddings for semantic search with PhariaAI?

Yes. POST /embed returns dense embeddings suitable for general use, and POST /semantic_embed returns embeddings tuned for semantic similarity. Both accept arrays of texts and return float vectors that can be stored in any vector database.

What are the rate limits for the PhariaAI API?

Rate limits are tied to account tier and are not declared in the spec. Check your Aleph Alpha account dashboard or call GET /users/me/tokens to see remaining credit; HTTP 429 responses are surfaced through Jentic so agents can back off.

How do I run a chat completion through Jentic?

Run pip install jentic, search Jentic with 'generate a chat completion with luminous', load the /chat/completions schema, and execute with model and messages in the request body. Jentic injects the bearer token at execution time.

Can I limit what my agent is allowed to do with the Aleph Alpha PhariaAI API?

Yes. Because Jentic One is self-hosted, you decide which PhariaAI operations sit in the allowed set, so you can restrict an agent to just /summarize and /embed while leaving /complete, /chat/completions, and /evaluate unreachable. Every inference call takes the model and prompt in the request body, so scoping happens at the operation level: an operation the agent cannot reach cannot be invoked no matter what prompt it receives. Your bearer token is applied only for the operations you permit, keeping the agent inside the boundary you set.

GET STARTED

Start building with Aleph Alpha PhariaAI API

Explore with Jentic One
View OpenAPI Document