kobold_txt2img
Convert text prompts into images with customizable dimensions, sampling methods, and precision settings for creative or practical visual generation.
Instructions
Generate image from text prompt
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| apiUrl | No | http://localhost:5001 | |
| cfg_scale | No | ||
| height | No | ||
| negative_prompt | No | ||
| prompt | Yes | ||
| sampler_name | No | ||
| seed | No | ||
| steps | No | ||
| width | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "apiUrl": {
      "default": "http://localhost:5001",
      "type": "string"
    },
    "cfg_scale": {
      "type": "number"
    },
    "height": {
      "type": "number"
    },
    "negative_prompt": {
      "type": "string"
    },
    "prompt": {
      "type": "string"
    },
    "sampler_name": {
      "type": "string"
    },
    "seed": {
      "type": "number"
    },
    "steps": {
      "type": "number"
    },
    "width": {
      "type": "number"
    }
  },
  "required": [
    "prompt"
  ],
  "type": "object"
}