Zekun Wu commited on
Commit
80c5685
·
1 Parent(s): a8e5a0f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -189,7 +189,7 @@ def generate_prompt_from_profile(profile, version="TeamSummary"):
189
  # Join the team member profiles into a single string
190
  team_member_profiles_str = "\n".join(team_member_profiles)
191
 
192
- prompt = prompt_templates.replace("{{TEAM_MEMBERS}}", team_member_profiles_str)
193
 
194
  print(prompt)
195
 
 
189
  # Join the team member profiles into a single string
190
  team_member_profiles_str = "\n".join(team_member_profiles)
191
 
192
+ prompt = "\n".join(prompt_templates).replace("{{TEAM_MEMBERS}}", team_member_profiles_str)
193
 
194
  print(prompt)
195