> ## Documentation Index
> Fetch the complete documentation index at: https://docs.locusmedical.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# Le prompt système de rédaction servi par défaut

> Le texte que `answer_system_prompt` remplace — le point de départ d'une variante. **N'existe que hors du canal `prod`** (cf. `LOCUS_CHANNEL`) : ailleurs, 404, parce qu'il n'y a rien à faire de ce texte sur un serveur qui refuse de le remplacer.



## OpenAPI

````yaml /openapi.json get /v2/answer-prompt
openapi: 3.1.0
info:
  title: Locus API
  description: >-
    Locus knowledge layer — REST over a clinical knowledge graph.


    Two categories of surface:

    - **query** (read) — `/v2/retrieve` and `/v2/retrieve/stream`
    (knowledge-graph retrieval, MKF 0.1.3), `/v2/drugs/*` (the full text of an
    SmPC section a retrieval truncated) and `/v2/feedback` (a thumb on a traced
    answer);

    - **ops** — `/health`.


    The write plane (PDF → Neo4j graph: ingest, summarize, MKU extraction) is
    NOT exposed over HTTP — it is a batch pipeline driven by the `locus` CLI,
    which runs where the source PDFs are.
  version: 0.5.0
servers:
  - url: https://core.locusmedical.fr
    description: Production
security: []
paths:
  /v2/answer-prompt:
    get:
      tags:
        - query
      summary: Le prompt système de rédaction servi par défaut
      description: >-
        Le texte que `answer_system_prompt` remplace — le point de départ d'une
        variante. **N'existe que hors du canal `prod`** (cf. `LOCUS_CHANNEL`) :
        ailleurs, 404, parce qu'il n'y a rien à faire de ce texte sur un serveur
        qui refuse de le remplacer.
      operationId: answer_prompt_v2_answer_prompt_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Answer Prompt V2 Answer Prompt Get
        '404':
          description: 'Canal de production : le laboratoire de prompt n''y existe pas.'
      security:
        - lsk: []
components:
  securitySchemes:
    lsk:
      type: http
      description: Locus API key — paste the raw `lsk_…` value (no 'Bearer ' prefix).
      scheme: bearer

````