We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909dd36 commit 2505b55Copy full SHA for 2505b55
server/genai/service/prompt_builder.py
@@ -9,10 +9,7 @@ def build_conversation_starter_prompt(users: List[User]) -> str:
9
10
user_descriptions = []
11
for user in users:
12
- interests_str = (
13
- ", ".join(interest.name for interest in user.interests)
14
- if user.interests else "no interests listed"
15
- )
+ interests_str = ", ".join(user.interests) if user.interests else "no interests listed"
16
desc = (
17
f"{user.firstname} {user.lastname} "
18
f"({user.gender}, born {user.birthday.isoformat()}), "
0 commit comments