Exactly Ai · Arazzo Workflow

Exactly.ai — generate and post-process an image

Version 1.0.0

Generate an image from an existing style model, then upscale, vectorize, and remove its background.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceImage GenerationGenerative AICreative ToolsBrandMachine LearningMediaArazzoWorkflows

Provider

exactly-ai

Workflows

generate-and-postprocess
Generate from a ready model, then upscale to 4K, vectorize to SVG, and remove background.
4 steps inputs: model_uid, prompt, scale outputs: image_uid
1
generate
durer_backend_public_api_api_routes_images_generate_images
2
upscale
durer_backend_public_api_api_routes_images_upscale_image
3
vectorize
durer_backend_public_api_api_routes_images_vectorize_image
4
remove-bg
durer_backend_public_api_api_routes_images_remove_bg_image

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: "Exactly.ai \u2014 generate and post-process an image"
  version: 1.0.0
  summary: Generate an image from an existing style model, then upscale, vectorize, and remove its background.
sourceDescriptions:
- name: exactlyPublic
  url: ../openapi/exactly-ai-public-openapi-original.json
  type: openapi
workflows:
- workflowId: generate-and-postprocess
  summary: Generate from a ready model, then upscale to 4K, vectorize to SVG, and remove background.
  inputs:
    type: object
    properties:
      model_uid:
        type: string
      prompt:
        type: string
      scale:
        type: string
        default: 4k
  steps:
  - stepId: generate
    operationId: durer_backend_public_api_api_routes_images_generate_images
    requestBody:
      contentType: application/json
      payload:
        prompt: $inputs.prompt
        model_uid: $inputs.model_uid
    outputs:
      image_uid: $response.body#/uid
  - stepId: upscale
    operationId: durer_backend_public_api_api_routes_images_upscale_image
    parameters:
    - name: uid
      in: path
      value: $steps.generate.outputs.image_uid
  - stepId: vectorize
    operationId: durer_backend_public_api_api_routes_images_vectorize_image
    parameters:
    - name: uid
      in: path
      value: $steps.generate.outputs.image_uid
  - stepId: remove-bg
    operationId: durer_backend_public_api_api_routes_images_remove_bg_image
    parameters:
    - name: uid
      in: path
      value: $steps.generate.outputs.image_uid
  outputs:
    image_uid: $steps.generate.outputs.image_uid