...
Code Block | ||
---|---|---|
| ||
{ "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 | ||
---|---|---|
| ||
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 |
Verifying / testing a prompt result
...