19
Nov
create_response = client.create_guardrail( name="math-tutoring-guardrail", description='Prevents the model from providing non-math tutoring, in-person tutoring, or tutoring outside grades 6-12.', topicPolicyConfig={ 'topicsConfig': [ { 'name': 'In-Person Tutoring', 'definition': 'Requests for face-to-face, physical tutoring sessions.', 'examples': [ 'Can you tutor me in person?', 'Do you offer home tutoring visits?', 'I need a tutor to come to my house.' ], 'type': 'DENY' }, { 'name': 'Non-Math Tutoring', 'definition': 'Requests for tutoring in subjects other than mathematics.', 'examples': [ 'Can you help me with my English homework?', 'I need a science tutor.', 'Do you offer history tutoring?' ], 'type': 'DENY' }, { 'name': 'Non-6-12 Grade…