Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
    "person": {
        "firstName": "p_Alex",
        "lastName": "p_Johnson",
        "age": 48
    }
}

...

Prompt variables

...

You can make prompts more dynamically by using prompt variables.

Inside a prompt you can specify a {{variable}}. This variable will be replaced by its value before it gets sent to the AI. Here is an example:

Code Block
languageyaml
pipeline:
  - ai.agent.call:
      prompt: "Translate this text to {{language}}: {{text}}"
      variables:
        language: "German"
        text: "Hello world!"
Info

Prompt variables and Pipeline Expressions (PEL)

Do not mix-up prompt variables like {{myvar}}with Pipeline Expressions (PEL) like ${vars.anotherVar}. By default, the pipeline expressions will be executed first, when the pipeline gets loaded. The prompt variables will be interpolated when the agent is executed, so after the pipeline expressions have been executed.

Verifying / testing a prompt result

...