Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -281,7 +281,8 @@ def display_homunculus_parts():
|
|
281 |
}
|
282 |
|
283 |
for part, description in brain_parts.items():
|
284 |
-
|
|
|
285 |
if st.button(f"Explore {part} 🧠", key=part):
|
286 |
response = chat_with_model(prompt, part)
|
287 |
|
|
|
281 |
}
|
282 |
|
283 |
for part, description in brain_parts.items():
|
284 |
+
# Formatting the prompt in markdown style for enhanced learning
|
285 |
+
prompt = f"Create a markdown outline with emojis to explain the {part} and its role in the brain: {description}"
|
286 |
if st.button(f"Explore {part} 🧠", key=part):
|
287 |
response = chat_with_model(prompt, part)
|
288 |
|