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

# Create a new LLM

> Create a new LLM with the provided information



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /llms
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:
  /llms:
    post:
      tags:
        - llms
      summary: Create a new LLM
      description: Create a new LLM with the provided information
      requestBody:
        description: LLM information
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.LLMInput'
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.LLMResponse'
        '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.LLMInput:
      type: object
      properties:
        data:
          type: object
          properties:
            attributes:
              type: object
              properties:
                active:
                  type: boolean
                allowed_models:
                  type: array
                  items:
                    type: string
                api_endpoint:
                  type: string
                api_key:
                  type: string
                budget_start_date:
                  type: string
                default_model:
                  type: string
                filters:
                  type: array
                  items:
                    type: integer
                logo_url:
                  type: string
                long_description:
                  type: string
                monthly_budget:
                  type: number
                name:
                  type: string
                namespace:
                  type: string
                privacy_score:
                  type: integer
                short_description:
                  type: string
                vendor:
                  type: string
            type:
              type: string
      description: LLM input model
    api.LLMResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            active:
              type: boolean
            allowed_models:
              type: array
              items:
                type: string
            api_endpoint:
              type: string
            api_key:
              type: string
            budget_start_date:
              type: string
            default_model:
              type: string
            filters:
              type: array
              items:
                $ref: '#/components/schemas/api.FilterResponse'
            has_api_key:
              type: boolean
            logo_url:
              type: string
            long_description:
              type: string
            monthly_budget:
              type: number
            name:
              type: string
            namespace:
              type: string
            plugins:
              type: array
              items:
                $ref: '#/components/schemas/api.PluginResponse'
            privacy_score:
              type: integer
            short_description:
              type: string
            vendor:
              type: string
        id:
          type: string
        type:
          type: string
      description: LLM response model
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
    api.FilterResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            description:
              type: string
            name:
              type: string
            namespace:
              type: string
            response_filter:
              type: boolean
            script:
              type: array
              items:
                type: integer
        id:
          type: string
        type:
          type: string
      description: Filter response model
    api.PluginResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            checksum:
              type: string
            command:
              type: string
            config:
              type: object
              additionalProperties: true
            created_at:
              type: string
            description:
              type: string
            hook_type:
              type: string
            is_active:
              type: boolean
            manifest:
              type: object
              additionalProperties: true
              description: Plugin manifest for UI extensions
            name:
              type: string
            namespace:
              type: string
            oci_reference:
              type: string
              description: OCI artifact reference (for OCI plugins)
            plugin_type:
              type: string
              description: '"gateway" or "ai_studio"'
            updated_at:
              type: string
        id:
          type: string
        relationships:
          type: object
          properties:
            llms:
              type: object
              properties:
                data:
                  type: array
                  items:
                    type: object
                    properties:
                      attributes:
                        type: object
                        properties:
                          active:
                            type: boolean
                          name:
                            type: string
                          vendor:
                            type: string
                      id:
                        type: string
                      type:
                        type: string
        type:
          type: string
  securitySchemes:
    BearerAuth:
      type: apiKey
      name: Authorization
      in: header

````