| { |
| "name": "determine_perspective", |
| "description": "Determines the appropriate perspective based on the nature of the problem.", |
| "strict": false, |
| "parameters": { |
| "type": "object", |
| "required": [ |
| "is_creative_or_innovative", |
| "is_scientific_or_technical", |
| "does_involve_physical_forces_or_motion", |
| "does_involve_quantum_mechanics", |
| "is_data_driven", |
| "is_human_centric", |
| "does_involve_empathy_or_resilience", |
| "is_ethical_or_philosophical" |
| ], |
| "properties": { |
| "is_data_driven": { |
| "type": "boolean", |
| "description": "Indicates if the problem is data-driven" |
| }, |
| "is_human_centric": { |
| "type": "boolean", |
| "description": "Indicates if the problem is human-centric" |
| }, |
| "is_creative_or_innovative": { |
| "type": "boolean", |
| "description": "Indicates if the problem is creative or innovative" |
| }, |
| "is_scientific_or_technical": { |
| "type": "boolean", |
| "description": "Indicates if the problem is scientific or technical" |
| }, |
| "is_ethical_or_philosophical": { |
| "type": "boolean", |
| "description": "Indicates if the problem is ethical or philosophical" |
| }, |
| "does_involve_quantum_mechanics": { |
| "type": "boolean", |
| "description": "Indicates if the problem involves quantum mechanics" |
| }, |
| "does_involve_empathy_or_resilience": { |
| "type": "boolean", |
| "description": "Indicates if the problem involves empathy or resilience" |
| }, |
| "does_involve_physical_forces_or_motion": { |
| "type": "boolean", |
| "description": "Indicates if the problem involves physical forces or motion" |
| } |
| }, |
| "additionalProperties": false |
| } |
| } |
|
|