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

# Stop the auto control by AI

> Stop the auto control by AI.



## OpenAPI

````yaml post /ai-control/stop
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /ai-control/stop:
    post:
      tags:
        - control
      summary: Stop the auto control by AI
      description: Stop the auto control by AI.
      operationId: stop_ai_control_ai_control_stop_post
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
          description: Successful Response
components:
  schemas:
    StatusResponse:
      additionalProperties: true
      description: Default response. May contain other fields.
      properties:
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        status:
          default: ok
          enum:
            - ok
            - error
          title: Status
          type: string
      title: StatusResponse
      type: object

````