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

# LFM2.5-1.2B-Instruct

> Model details for LFM2.5-1.2B-Instruct.

> Liquid AI's LFM2.5-1.2B-Instruct is a hybrid architecture model purpose-built for on-device deployment, trained on 28 trillion tokens with multi-stage reinforcement learning. It delivers best-in-class instruction following and native tool-calling at the 1B scale — something very few models this size can do reliably. Its hybrid design gives it significantly faster inference with lower memory usage compared to transformer-only models of the same size. If you need a conversational model that can actually run on real devices without a GPU, this is it. Supports 8 languages including English, Chinese, Japanese, and Spanish.

**References:** [Model docs](https://docs.liquid.ai/deployment/on-device/android/ai-agent-usage-guide#text-models) • [Terms](https://www.liquid.ai/terms-conditions) • [Privacy](https://www.liquid.ai/lfm-license)


## OpenAPI

````yaml api-reference/openapi/playgrounds/LFM2_5-1_2B-Instruct.openapi.json POST /responses
openapi: 3.1.0
info:
  title: LFM2.5-1.2B-Instruct playground
  version: '1.0'
  description: >-
    Interactive playground for **LFM2.5-1.2B-Instruct**.

    Model is always `LFM2.5-1.2B-Instruct` on this page (shown in the form, not
    editable).

    Use the **request example** selector to switch use cases (JSON, NER, PII,
    etc.).

    Authentication: `x-api-key` (required) and `x-project-id` (optional).
servers:
  - url: https://api.zerogpu.ai/v1
    description: Production
security:
  - ApiKey: []
paths:
  /responses:
    post:
      tags:
        - LFM2.5-1.2B-Instruct
      summary: 'LFM2.5-1.2B-Instruct: Responses'
      operationId: createResponse_LFM2_5-1_2B-Instruct
      parameters:
        - name: x-project-id
          in: header
          required: false
          schema:
            type: string
          description: >-
            Optional project identifier. Scopes the request to a specific
            project when provided.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/CreateResponseRequest'
                - type: object
                  properties:
                    model:
                      type: string
                      const: LFM2.5-1.2B-Instruct
                      default: LFM2.5-1.2B-Instruct
                      example: LFM2.5-1.2B-Instruct
                      description: >-
                        Model identifier (fixed for this playground). Use
                        request examples to change use cases.
            examples:
              default:
                summary: Default
                value:
                  input: >-
                    I just completed a 5K run in 28 minutes. Give me a short
                    motivational follow-up message.
                  model: LFM2.5-1.2B-Instruct
                  instructions: You are a friendly in-app assistant for a fitness app.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
              examples:
                default:
                  summary: Default
                  value: >-
                    That's an amazing accomplishment! Keep up the great work,
                    each step brings you closer to your goals. You're stronger
                    than you think!


                    Would you like tips to help you keep improving?
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '420':
          description: Insufficient quota
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
components:
  schemas:
    CreateResponseRequest:
      type: object
      required:
        - model
        - input
      properties:
        model:
          type: string
          const: LFM2.5-1.2B-Instruct
          default: LFM2.5-1.2B-Instruct
          example: LFM2.5-1.2B-Instruct
          description: >-
            Model identifier (fixed for this playground). Use request examples
            to change use cases.
        input:
          type: string
          minLength: 1
          format: textarea
          maxLength: 131072
          description: Multi-line text or document content to send to the model.
        instructions:
          type: string
        metadata:
          type: object
          additionalProperties: true
    Response:
      type: object
      additionalProperties: true
    ErrorResponse:
      type: object
      additionalProperties: true
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key

````