+ System Prompt Variables +
++ System prompt variables are used to store configuration values + that can be referenced in your system prompt to enable dynamic + content in your prompts. +
++ Key + | ++ Value + | ++ Description + | ++ Type + | +
---|
{t("chat.prompt.description")}
++ You can insert{" "} + + prompt variables + {" "} + like:{" "} + {availableVariables.slice(0, 3).map((v, i) => ( + <> + + {`{${v.key}}`} + + {i < availableVariables.length - 1 && ", "} + > + ))} + {availableVariables.length > 3 && ( + + +{availableVariables.length - 3} more... + + )} +
+