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

# Produce Now

> Immediately produce video draft(s) for all (or one) platform loops.

Routes through the VPT supervisor — the same path a scheduled cycle uses.
Reuses the cycle scheduler's brief composition (``dispatch_team_now``) to
create ``draft-production-video`` TeamTask(s), then fires an orchestrator
cycle so the supervisor picks them up. The ``draft-*`` task type makes the
VPT supervisor stop at synthesis and land each task at ``needs_approval``.



## OpenAPI

````yaml /openapi.json post /api/v1/teams/{team_id}/produce-now
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/produce-now:
    post:
      tags:
        - Teams
      summary: Produce Now
      description: >-
        Immediately produce video draft(s) for all (or one) platform loops.


        Routes through the VPT supervisor — the same path a scheduled cycle
        uses.

        Reuses the cycle scheduler's brief composition (``dispatch_team_now``)
        to

        create ``draft-production-video`` TeamTask(s), then fires an
        orchestrator

        cycle so the supervisor picks them up. The ``draft-*`` task type makes
        the

        VPT supervisor stop at synthesis and land each task at
        ``needs_approval``.
      operationId: produce_now_api_v1_teams__team_id__produce_now_post
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
        - name: platform
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                maxLength: 32
                pattern: ^[A-Za-z0-9_-]+$
              - type: 'null'
            description: Specific platform, or all if omitted
            title: Platform
          description: Specific platform, or all if omitted
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````