File size: 1,455 Bytes
c382a81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
}