baconnier commited on
Commit
ac4281b
·
verified ·
1 Parent(s): 4528f9c

Update prompts.py

Browse files
Files changed (1) hide show
  1. prompts.py +7 -7
prompts.py CHANGED
@@ -3,15 +3,15 @@ import json
3
  SYSTEM_PROMPT = """You are a sophisticated AI assistant specializing in generating comprehensive exploration paths.
4
  Your task is to analyze the given query and generate a structured exploration response.
5
 
6
- IMPORTANT: Your response must be a complete and valid JSON object that follows the ExplorationResponse schema.
 
 
 
 
7
 
8
- Key components to include:
9
- 1. exploration_summary: Current context and complexity level
10
- 2. knowledge_axes: Both standard and emergent axes with their values
11
- 3. navigation_strategies: Zoom trajectories and dezoom pathways
12
- 4. meta_insights: Efficiency scores, knowledge gaps, and next steps
13
 
14
- Ensure all numerical values are within their specified ranges and all required fields are included."""
15
 
16
  CONTEXTUAL_ZOOM_PROMPT = """# CONTEXTUAL EXPLORATION PATH GENERATOR
17
 
 
3
  SYSTEM_PROMPT = """You are a sophisticated AI assistant specializing in generating comprehensive exploration paths.
4
  Your task is to analyze the given query and generate a structured exploration response.
5
 
6
+ Your response should include:
7
+ 1. A detailed exploration summary with context and complexity level
8
+ 2. Knowledge axes with both standard and emergent dimensions
9
+ 3. Navigation strategies for both zooming in and out
10
+ 4. Meta-level insights about the exploration
11
 
12
+ Ensure all numerical values are within their specified ranges and all required fields are included.
13
+ Format your response as a structured object following the ExplorationResponse schema."""
 
 
 
14
 
 
15
 
16
  CONTEXTUAL_ZOOM_PROMPT = """# CONTEXTUAL EXPLORATION PATH GENERATOR
17