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

# Form Review Suggestion 

> Generate a review suggestion for a form using title, context, and desired tone.



## OpenAPI

````yaml POST /features/form-review-suggestion
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.hobbo.ai
    description: Main API server
  - url: https://py-api.hobbo.ai
    description: Python API server for scraper endpoints
security:
  - ApiKeyAuth: []
paths:
  /features/form-review-suggestion:
    post:
      description: >-
        Generate a review suggestion for a form using title, context, and
        desired tone.
      requestBody:
        description: Form review suggestion parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FormReviewSuggestionRequest'
        required: true
      responses:
        '200':
          description: Review suggestion generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormReviewSuggestionResponse'
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    error: <string>
      servers:
        - url: https://py-api.hobbo.ai
components:
  schemas:
    FormReviewSuggestionRequest:
      type: object
      required:
        - form_title
      properties:
        form_id:
          type:
            - string
            - 'null'
          description: Identifier
        form_title:
          type: string
          description: Title of the review
        form_description:
          type:
            - string
            - 'null'
          description: Details about the review author
        user_instruction:
          type:
            - string
            - 'null'
          description: User guidelines
        tone:
          type:
            - string
            - 'null'
          description: Tone to apply
          enum:
            - professional
            - friendly
            - enthusiastic
            - balanced
            - casual
    FormReviewSuggestionResponse:
      type: object
      properties:
        review_text:
          type: string
          description: Content of the review
    Error:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Empty object or additional error data
        success:
          type: boolean
          description: Indicates operation failed
          example: false
        message:
          type: string
          description: Error message describing what went wrong

````