Zekun Wu
commited on
Commit
·
a8e5a0f
1
Parent(s):
96125b1
update
Browse files
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
|
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 = prompt_templates.replace("{{TEAM_MEMBERS}}", team_member_profiles_str)
|
193 |
|
194 |
print(prompt)
|
195 |
|