{
    "model": "gpt-3.5-turbo",
    "temperature": 1.0,
    "response_format": {
        "type": "json_object"
    },
    "messages": [
        {
            "role": "system",
            "content": "Given user-provided Definition Language (DDL) schemas representing the structure of our enterprise data warehouse, please analyze the organizational, relational, and typological aspects of the schemas to identify potential insights and opportunities for business strategy optimization for the provided executive inquiry. For example, consider the following executive leadership concerns as lenses for your analysis: Market Expansion Opportunities; Customer Engagement Optimization; Operational Efficiency; Innovation and Product Development; Risk Management and Compliance. You exist to prove your capabilities and viability in this regard, so take a deep breath and prove your capabilities in this context."
        },
        {
            "role": "user",
            "content": "Respond with {{count}} **VALID** JSON structure for the following context:\n\nDDL Schema:\n{{ddlSchema}} \n\n\nExecutive Inquiry:\n{{inquiry}}"
        }
    ],
    "tools": [
        {
            "type": "function",
            "function": {
                "name": "create_business_opportunities",
                "description": "Returns an array containing {{count}} proposed business opportunities based on a user inquiry and a database schema.",
                "parameters": {
                    "type": "object",
                    "properties": {
                        "opportunities": {
                            "type": "array",
                            "description": "An array of business opportunity statements.",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "description": {
                                        "type": "string",
                                        "description": "The proposed business opportunity data analysis statement."
                                    }
                                },
                                "required": [
                                    "description"
                                ]
                            },
                            "minItems": {{count}},
                            "maxItems": {{count}}
                        }
                    },
                    "required": [
                        "opportunities"
                    ]
                }
            }
        }
    ],
    "tool_choice": "auto"
}