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

# Create Documentation Agent



## OpenAPI

````yaml post /v3/semantic_model/documentation_agents
openapi: 3.0.3
info:
  title: Create Documentation Agent
  version: 1.0.0
servers:
  - url: https://agent-prod.studio.lyzr.ai
security:
  - ApiKeyAuth: []
paths:
  /v3/semantic_model/documentation_agents:
    post:
      summary: Create Documentation Agent
      description: Initializes a documentation agent.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                llm_credential_id:
                  type: string
                provider_id:
                  type: string
                model_id:
                  type: string
                top_p:
                  type: number
                temperature:
                  type: number
              required:
                - name
                - provider_id
                - model_id
                - top_p
                - temperature
      responses:
        '200':
          description: Agent created
          content:
            application/json:
              schema:
                type: object
                properties:
                  created_agent_id:
                    type: string
        '400':
          description: Bad Request
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````