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

# Update LLM settings

> Update existing LLM settings information



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml patch /llm-settings/{id}
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /llm-settings/{id}:
    patch:
      tags:
        - llm-settings
      summary: Update LLM settings
      description: Update existing LLM settings information
      parameters:
        - name: id
          in: path
          description: LLM Settings ID
          required: true
          schema:
            type: integer
      requestBody:
        description: Updated LLM settings information
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.LLMSettingsInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.LLMSettingsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api.LLMSettingsInput:
      type: object
      properties:
        data:
          type: object
          properties:
            attributes:
              type: object
              properties:
                max_length:
                  type: integer
                max_tokens:
                  type: integer
                metadata:
                  type: object
                  additionalProperties: true
                min_length:
                  type: integer
                model_name:
                  type: string
                repetition_penalty:
                  type: number
                seed:
                  type: integer
                stop_words:
                  type: array
                  items:
                    type: string
                system_prompt:
                  type: string
                temperature:
                  type: number
                top_k:
                  type: integer
                top_p:
                  type: number
            type:
              type: string
      description: LLM settings input model
    api.LLMSettingsResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            max_length:
              type: integer
            max_tokens:
              type: integer
            metadata:
              type: object
              additionalProperties: true
            min_length:
              type: integer
            model_name:
              type: string
            repetition_penalty:
              type: number
            seed:
              type: integer
            stop_words:
              type: array
              items:
                type: string
            system_prompt:
              type: string
            temperature:
              type: number
            top_k:
              type: integer
            top_p:
              type: number
        id:
          type: string
        type:
          type: string
      description: LLM settings response model
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
  securitySchemes:
    BearerAuth:
      type: apiKey
      name: Authorization
      in: header

````