View as Markdown
Runware icon

Runware ACTION

Prompt Enhance

Request a prompt enhance task to be processed by the Runware API. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Runware account once, then configure and run Prompt Enhance from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "runware-prompt-enhance",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    runware: { authProvisionId: "apn_xxxxxxx" },
    prompt: "Prompt",
    promptMaxLength: 10,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Prompt Enhance inputs
Property Type Description
prompt Prompt string
The prompt that you intend to enhance.
Required
promptMaxLength Prompt Max Length integer
Represents the maximum length of the enhanced prompt that you intend to receive. Min 12, Max 400.
Required
promptVersions Prompt Versions integer
The number of prompt versions that will be received. Min 1, Max 5.
Required
includeCost Include Cost boolean
If set to true, the cost to perform the task will be included in the response object. Defaults to false.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
runware-prompt-enhance
Version
0.0.2
App
Runware
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes