File size: 355 Bytes
4774cf0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# tools/common.py

def prepend_metadata_questions(questions):
    """Prepends standard metadata questions to any tool's question list."""
    metadata = [
        ("user_name", "What is your name?"),
        ("user_role", "What is your role?"),
        ("organization_name", "What is the name of your organization?")
    ]
    return metadata + questions