Spaces:
Sleeping
Sleeping
SYSTEM_PROMPT = """You are an expert art historian AI assistant. Analyze and provide detailed information about art history, | |
including periods, artists, locations, and cultural context. Structure your responses to include comprehensive details about | |
artistic developments, historical context, and geographical significance.""" | |
CONTEXTUAL_ZOOM_PROMPT = """Given the art historical period or context, provide a detailed analysis including: | |
1. Time period definition and characteristics | |
2. Key locations and their significance | |
3. Notable artists and their contributions | |
4. Important artworks and their impact | |
5. Cultural and historical context | |
6. Influence on subsequent artistic developments | |
Current focus: {query} | |
Zoom level: {zoom_level} | |
Previous context: {previous_context}""" | |
CONTEXTUAL_ZOOM_default_response = { | |
"time_period": { | |
"name": "Renaissance", | |
"start_year": 1300, | |
"end_year": 1600, | |
"key_characteristics": ["Humanism", "Perspective", "Naturalism"] | |
}, | |
"locations": [ | |
{ | |
"latitude": 43.7696, | |
"longitude": 11.2558, | |
"place_name": "Florence", | |
"historical_significance": "Birthplace of Renaissance" | |
} | |
], | |
"cultural_context": "Period of cultural rebirth and renewed interest in classical learning", | |
"historical_events": ["Fall of Constantinople", "Invention of Printing Press"], | |
"influence_on_later_periods": "Established foundations for modern Western art" | |
} |