> ## 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 Configurations

> List all LLM configurations for the authenticated user's space.

This endpoint:
- Requires API key or session authentication
- Returns all LLM configurations for the user's space
- Results are ordered by creation date (newest first)

Args:
    service: Injected LLM configuration service

Returns:
    Response with list of LLM configurations

Raises:
    400 Bad Request: If user doesn't have an associated space



## OpenAPI

````yaml /openapi.json get /v1/llm-configurations
openapi: 3.1.0
info:
  title: Live avatar API
  version: 0.1.0
servers:
  - url: https://api.liveavatar.com
security: []
paths:
  /v1/llm-configurations:
    get:
      tags:
        - LLM Configurations
      summary: List Llm Configurations
      description: |-
        List all LLM configurations for the authenticated user's space.

        This endpoint:
        - Requires API key or session authentication
        - Returns all LLM configurations for the user's space
        - Results are ordered by creation date (newest first)

        Args:
            service: Injected LLM configuration service

        Returns:
            Response with list of LLM configurations

        Raises:
            400 Bad Request: If user doesn't have an associated space
      operationId: list_llm_configurations_v1_llm_configurations_get
      parameters:
        - name: la_session
          in: cookie
          required: false
          schema:
            title: La Session
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Response_list_LLMConfigurationListItemSchema__
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    Response_list_LLMConfigurationListItemSchema__:
      properties:
        code:
          type: integer
          title: Code
          default: 100
        data:
          title: Data
          items:
            $ref: '#/components/schemas/LLMConfigurationListItemSchema'
          type: array
        message:
          title: Message
          type: string
      type: object
      title: Response[list[LLMConfigurationListItemSchema]]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LLMConfigurationListItemSchema:
      properties:
        id:
          type: string
          title: Id
        display_name:
          type: string
          title: Display Name
        model_name:
          type: string
          title: Model Name
        secret_id:
          type: string
          title: Secret Id
      type: object
      required:
        - id
        - display_name
        - model_name
        - secret_id
      title: LLMConfigurationListItemSchema
      description: Schema for an LLM configuration item in list response
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          title: Message
          type: string
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-KEY

````