awacke1 commited on
Commit
dc74f0c
·
1 Parent(s): aebecba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -281,7 +281,8 @@ def display_homunculus_parts():
281
  }
282
 
283
  for part, description in brain_parts.items():
284
- prompt = f"Learn about the {part} and its role: {description}"
 
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