"LLM queries"

queries = [
    {
        "category": "Products",
        "header": "Products and Services",
        "Order": 20,
        "vector_db_query": "What are the products and services the company provides?",
        "LLM_query": "Provide short descriptions the products and services the company provides?",
        "check_domain": True,
        "search": "(products | services | solutions)",
    },
    {
        "category": "Leadership",
        "header": "Management",
        "Order": 30,
        "vector_db_query": "Names of the founders, executives, management or leadership team and their roles.",
        "LLM_query": "Give back a list of names of the founders, executives, management or leadership team split by executive team and board members and their roles in the format of <name> : <role>. If you can't find it in the text, return an empty string.",
        "allow_empty": True,
        "check_domain": False,
        "search": "(leadership | management | team | board members)",
    },
    {
        "category": "Customers",
        "header": "Customers",
        "Order": 40,
        "vector_db_query": "What organizations or companies are customers?",
        "LLM_query": "What organizations or companies are customers?",
        "check_domain": True,
        "search": "(Customers | clients | partners)",
    },
    {
        "category": "Overview_Stats",
        "header": "Overview",
        "Order": 15,
        "vector_db_query": "What are some remarkable statistics about the company and overview?",
        "LLM_query": "What are some remarkable statistics about the company and overview?",
        "check_domain": True,
        "search": "about",
    },
    {
        "category": "Overview",
        "header": "Overview",
        "Order": 10,
        "vector_db_query": "Give me some company facts, tell me about the company?",
        "LLM_query": "Provide a 20 word overview of the company",
        "check_domain": True,
        "search": "about",
    },
    {
        "category": "HQ_Founded",
        "header": "HQ and Founded",
        "Order": 19,
        "vector_db_query": "Where is the company headquartered (HQ) and what year it was founded?",
        "LLM_query": "Return the completed the sentences: Company headquarter: <location>; Founded: <founded year>?",
        "allow_empty": True,
        "check_domain": False,
        "search": "(HQ | headquarters | founded)",
    },
]
