import patronusfrom patronus.prompts import Prompt, push_promptpatronus.init()prompt = Prompt( name="support/troubleshooting/login-issues", body="You are a support specialist for {product_name}. Solve this {issue_type} issue: {issue_description}", description="Support prompt for login issues", metadata={"temperature": 0.7})# Push to Patronusloaded_prompt = push_prompt(prompt)# Render with variablesrendered = prompt.render( product_name="CloudWorks", issue_type="authentication", issue_description="Cannot log in with correct credentials")