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

# List Llm Models

> List the managed LLM models selectable per provider.

These are the `llm_settings` choices accepted on a `liveavatar_agent`'s
configuration and on a session's `avatar_persona` — a static catalog, not
space-scoped data. Custom LLM endpoints (`/v1/llm-configurations`) are a
separate concept and are not listed here.



## OpenAPI

````yaml /openapi.json get /v1/llm-models
openapi: 3.1.0
info:
  title: Live avatar API
  version: 0.1.0
servers:
  - url: https://api.liveavatar.com
security: []
paths:
  /v1/llm-models:
    get:
      tags:
        - LLM Models
      summary: List Llm Models
      description: >-
        List the managed LLM models selectable per provider.


        These are the `llm_settings` choices accepted on a `liveavatar_agent`'s

        configuration and on a session's `avatar_persona` — a static catalog,
        not

        space-scoped data. Custom LLM endpoints (`/v1/llm-configurations`) are a

        separate concept and are not listed here.
      operationId: list_llm_models_v1_llm_models_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Response_dict_LLMProviderEnum__list_str___
components:
  schemas:
    Response_dict_LLMProviderEnum__list_str___:
      properties:
        code:
          type: integer
          title: Code
          default: 100
        data:
          title: Data
          additionalProperties:
            items:
              type: string
            type: array
          propertyNames:
            $ref: '#/components/schemas/LLMProviderEnum'
          type: object
        message:
          title: Message
          type: string
      type: object
      title: Response[dict[LLMProviderEnum, list[str]]]

````