Vageesh1 commited on
Commit
6d44eff
·
1 Parent(s): f831dc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -19,11 +19,13 @@ trait_content_df['Title'].fillna(method='ffill',inplace=True)
19
  trait_content_df['Question'].fillna(method='ffill',inplace=True)
20
 
21
  template = """
22
- Imagine you are a person that is looking for making a cool personalized bio. Craft distinctive responses for each user based on traits extracted and refer from the content provided.Make a single Bio for all traits at once, no need to make different for each trait. Always Respond in 2nd person view, no need to include any names. Avoid using the same sentences for different users . Conclude the response within 150 words and 2-3 paragraphs.
23
- {history}
24
- Me:{human_input}
25
- Bot:
26
- """
 
 
27
  prompt = PromptTemplate(
28
  input_variables=["history", "human_input"],
29
  template=template
 
19
  trait_content_df['Question'].fillna(method='ffill',inplace=True)
20
 
21
  template = """
22
+ Imagine you're someone looking to create a unique personalized bio based on your traits and experiences. You've shared some details about your background, and now it's time to craft a bio that stands out. Respond in the second person and avoid using the same sentences for different users. Your response should be concise and conclude within 150 words.
23
+
24
+ {history}
25
+ You: {human_input}
26
+ Bot:
27
+ """
28
+
29
  prompt = PromptTemplate(
30
  input_variables=["history", "human_input"],
31
  template=template