Spaces:
Sleeping
Sleeping
Update prompts.py
Browse files- prompts.py +25 -3
prompts.py
CHANGED
@@ -139,7 +139,16 @@ Input is a JSON object containing:
|
|
139 |
- `navigation_strategies`:
|
140 |
- `zoom_trajectories`: Depth-increasing exploration paths
|
141 |
- `dezoom_pathways`: Breadth-expanding exploration options
|
142 |
-
- `meta_insights`: Performance and discovery potential metrics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
DEFAULT_RESPONSE = {
|
145 |
"exploration_summary": {
|
@@ -164,8 +173,21 @@ DEFAULT_RESPONSE = {
|
|
164 |
"emergent_axes": []
|
165 |
},
|
166 |
"navigation_strategies": {
|
167 |
-
"zoom_trajectories": [
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
},
|
170 |
"meta_insights": {
|
171 |
"exploration_efficiency": 50,
|
|
|
139 |
- `navigation_strategies`:
|
140 |
- `zoom_trajectories`: Depth-increasing exploration paths
|
141 |
- `dezoom_pathways`: Breadth-expanding exploration options
|
142 |
+
- `meta_insights`: Performance and discovery potential metrics
|
143 |
+
|
144 |
+
|
145 |
+
## RESPONSE FORMAT
|
146 |
+
Response must be a valid JSON object matching the ExplorationResponse model with:
|
147 |
+
- exploration_summary: Contains current_context and complexity_level (0-10)
|
148 |
+
- knowledge_axes: Contains standard_axes and emergent_axes
|
149 |
+
- navigation_strategies: Contains zoom_trajectories and dezoom_pathways
|
150 |
+
- meta_insights: Contains efficiency score, gaps, and next steps
|
151 |
+
"""
|
152 |
|
153 |
DEFAULT_RESPONSE = {
|
154 |
"exploration_summary": {
|
|
|
173 |
"emergent_axes": []
|
174 |
},
|
175 |
"navigation_strategies": {
|
176 |
+
"zoom_trajectories": [
|
177 |
+
{
|
178 |
+
"target_axis": "temporal",
|
179 |
+
"zoom_value": "present",
|
180 |
+
"unlocked_dimensions": ["basic"],
|
181 |
+
"depth_increment": 1
|
182 |
+
}
|
183 |
+
],
|
184 |
+
"dezoom_pathways": [
|
185 |
+
{
|
186 |
+
"removal_tuple": {"axis": "temporal", "value": "present"},
|
187 |
+
"contextual_expansion": "Initial state",
|
188 |
+
"new_possibility_vectors": ["begin"]
|
189 |
+
}
|
190 |
+
]
|
191 |
},
|
192 |
"meta_insights": {
|
193 |
"exploration_efficiency": 50,
|