made an adjustment to the adjust code instructions

This commit is contained in:
rob 2025-12-07 05:34:24 -04:00
parent 35835f8254
commit 7e9bd0d533
1 changed files with 1 additions and 4 deletions

View File

@ -1836,10 +1836,7 @@ class SmartToolsUI:
The code runs directly with variable substitution. Assign any "Available Variables" used to a new standard variable first, then use that variable in the code. Use triple quotes and curly braces since the substituted content may contain quotes/newlines. The code runs directly with variable substitution. Assign any "Available Variables" used to a new standard variable first, then use that variable in the code. Use triple quotes and curly braces since the substituted content may contain quotes/newlines.
Example: Example:
my_var = \"\"\"{{response}}\"\"\" my_var = \"\"\"{{variable}}\"\"\"
filename = \"\"\"{{outputfile}}\"\"\"
with open(filename, 'w') as f:
f.write(my_var)
INSTRUCTION: [Describe what you want] INSTRUCTION: [Describe what you want]