Aleph Alpha Steering API

The steering API from Aleph Alpha — 1 operation(s) for steering.

Operations 1

POST /steering_concepts Create a steering concept (BETA) #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aleph-alpha-steering-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aleph-alpha-steering-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aleph Alpha Steering API
  version: 4.7.0
  description: Access and interact with Aleph Alpha models and functionality over HTTP endpoints.
  contact:
    email: support@aleph-alpha.com
servers:
- url: '{host}/v1'
  variables:
    host:
      default: https://api.pharia.example.com
tags:
- name: steering
paths:
  /steering_concepts:
    post:
      summary: Create a steering concept (BETA)
      description: 'Upload a description of a new steering concept, i.e. a list of negative

        and positive examples. This steering concept can then be used in

        completion and chat requests to steer the model''s answers.


        This request is idempotent. Sending the same steering concept twice will

        return the same ID.


        Note: This is a BETA feature and might not be available in your

        installation of PhariaAI.

        '
      operationId: create_steering_concept
      tags:
      - steering
      security:
      - token: []
      requestBody:
        required: 'true'
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSteeringConceptRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSteeringConceptResponse'
components:
  schemas:
    CreateSteeringConceptResponse:
      type: object
      example:
        id: c925b346425c37c380920df3c5f542000d4b54ed3f183313e274328c921879e0
      properties:
        id:
          type: string
    CreateSteeringConceptRequest:
      type: object
      example:
        examples:
        - negative: I appreciate your valuable feedback on this matter.
          positive: Thanks for the real talk, fam.
        - negative: Please ensure all documentation is submitted by the deadline.
          positive: Get those papers in ASAP or it's gonna be big yikes.
      properties:
        examples:
          type: array
          items:
            type: object
            properties:
              negative:
                type: string
              positive:
                type: string
      required:
      - examples
  securitySchemes:
    token:
      type: http
      scheme: bearer
      description: Can be generated in your [Aleph Alpha profile](https://app.aleph-alpha.com/profile)